aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-time-sel.c
blob: 79acc1887aae4dc8422807faee214a72e8affbcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *      Damon Chaplin <damon@gtk.org>
 *      Rodrigo Moya <rodrigo@novell.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "e-meeting-time-sel.h"

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <glib/gi18n.h>
#include <gdk/gdkkeysyms.h>
#include <libebackend/libebackend.h>
#include <libgnomecanvas/libgnomecanvas.h>

#include "misc/e-canvas.h"
#include "misc/e-canvas-utils.h"
#include "misc/e-dateedit.h"

#include "e-util/e-util.h"
#include "e-util/e-datetime-format.h"

#include "e-meeting-utils.h"
#include "e-meeting-list-view.h"
#include "e-meeting-time-sel-item.h"

#define E_MEETING_TIME_SELECTOR_GET_PRIVATE(obj) \
    (G_TYPE_INSTANCE_GET_PRIVATE \
    ((obj), E_TYPE_MEETING_TIME_SELECTOR, EMeetingTimeSelectorPrivate))

struct _EMeetingTimeSelectorPrivate {
    gint week_start_day;
    guint show_week_numbers  : 1;
    guint use_24_hour_format : 1;
};

/* An array of hour strings for 24 hour time, "0:00" .. "23:00". */
const gchar *EMeetingTimeSelectorHours[24] = {
    "0:00", "1:00", "2:00", "3:00", "4:00", "5:00", "6:00", "7:00",
    "8:00", "9:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00",
    "16:00", "17:00", "18:00", "19:00", "20:00", "21:00", "22:00", "23:00"
};

/* An array of hour strings for 12 hour time, "12:00am" .. "11:00pm". */
const gchar *EMeetingTimeSelectorHours12[24] = {
    "12:00am", "1:00am", "2:00am", "3:00am", "4:00am", "5:00am", "6:00am",
    "7:00am", "8:00am", "9:00am", "10:00am", "11:00am", "12:00pm",
    "1:00pm", "2:00pm", "3:00pm", "4:00pm", "5:00pm", "6:00pm", "7:00pm",
    "8:00pm", "9:00pm", "10:00pm", "11:00pm"
};

/* The number of days shown in the entire canvas. */
#define E_MEETING_TIME_SELECTOR_DAYS_SHOWN      35
#define E_MEETING_TIME_SELECTOR_DAYS_START_BEFORE   7
#define E_MEETING_TIME_SELECTOR_FB_DAYS_BEFORE          7
#define E_MEETING_TIME_SELECTOR_FB_DAYS_AFTER           28

/* This is the number of pixels between the mouse has to move before the
 * scroll speed is incremented. */
#define E_MEETING_TIME_SELECTOR_SCROLL_INCREMENT_WIDTH  10

/* This is the maximum scrolling speed. */
#define E_MEETING_TIME_SELECTOR_MAX_SCROLL_SPEED    4

enum {
    PROP_0,
    PROP_SHOW_WEEK_NUMBERS,
    PROP_USE_24_HOUR_FORMAT,
    PROP_WEEK_START_DAY
};

enum {
    CHANGED,
    LAST_SIGNAL
};

static gint signals[LAST_SIGNAL] = { 0 };

static void e_meeting_time_selector_alloc_named_color (EMeetingTimeSelector * mts,
                               const gchar *name, GdkColor *c);
static void e_meeting_time_selector_add_key_color (EMeetingTimeSelector * mts,
                           GtkWidget *hbox,
                           gchar *label_text,
                           GdkColor *color);
static gint e_meeting_time_selector_draw_key_color (GtkWidget *darea,
                              cairo_t *cr,
                              GdkColor *color);
static void e_meeting_time_selector_options_menu_detacher (GtkWidget *widget,
                               GtkMenu   *menu);
static void e_meeting_time_selector_autopick_menu_detacher (GtkWidget *widget,
                                GtkMenu   *menu);
static void e_meeting_time_selector_realize (GtkWidget *widget);
static void e_meeting_time_selector_unrealize (GtkWidget *widget);
static void e_meeting_time_selector_style_set (GtkWidget *widget,
                           GtkStyle  *previous_style);
static gint e_meeting_time_selector_draw (GtkWidget *widget, cairo_t *cr);
static void e_meeting_time_selector_draw_shadow (EMeetingTimeSelector *mts, cairo_t *cr);
static void e_meeting_time_selector_hadjustment_changed (GtkAdjustment *adjustment,
                             EMeetingTimeSelector *mts);
static void e_meeting_time_selector_vadjustment_changed (GtkAdjustment *adjustment,
                             EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_canvas_realized (GtkWidget *widget,
                            EMeetingTimeSelector *mts);

static void e_meeting_time_selector_on_options_button_clicked (GtkWidget *button,
                                   EMeetingTimeSelector *mts);
static void e_meeting_time_selector_options_menu_position_callback (GtkMenu *menu,
                                    gint *x,
                                    gint *y,
                                    gboolean *push_in,
                                    gpointer user_data);
static void e_meeting_time_selector_on_zoomed_out_toggled (GtkCheckMenuItem *button,
                               EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_working_hours_toggled (GtkCheckMenuItem *menuitem,
                                  EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_invite_others_button_clicked (GtkWidget *button,
                                     EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_update_free_busy (GtkWidget *button,
                             EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_autopick_button_clicked (GtkWidget *button,
                                EMeetingTimeSelector *mts);
static void e_meeting_time_selector_autopick_menu_position_callback (GtkMenu *menu,
                                     gint *x,
                                     gint *y,
                                     gboolean *push_in,
                                     gpointer user_data);
static void e_meeting_time_selector_on_autopick_option_toggled (GtkWidget *button,
                                EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_prev_button_clicked (GtkWidget *button,
                                EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_next_button_clicked (GtkWidget *button,
                                EMeetingTimeSelector *mts);
static void e_meeting_time_selector_autopick (EMeetingTimeSelector *mts,
                          gboolean forward);
static void e_meeting_time_selector_calculate_time_difference (EMeetingTime *start,
                                   EMeetingTime *end,
                                   gint *days,
                                   gint *hours,
                                   gint *minutes);
static void e_meeting_time_selector_find_nearest_interval (EMeetingTimeSelector *mts,
                               EMeetingTime *start_time,
                               EMeetingTime *end_time,
                               gint days, gint hours, gint mins);
static void e_meeting_time_selector_find_nearest_interval_backward (EMeetingTimeSelector *mts,
                                    EMeetingTime *start_time,
                                    EMeetingTime *end_time,
                                    gint days, gint hours, gint mins);
static void e_meeting_time_selector_adjust_time (EMeetingTime *mtstime,
                         gint days, gint hours, gint minutes);
static EMeetingFreeBusyPeriod * e_meeting_time_selector_find_time_clash (EMeetingTimeSelector *mts,
                                    EMeetingAttendee *attendee,
                                    EMeetingTime *start_time,
                                    EMeetingTime *end_time);

static void e_meeting_time_selector_recalc_grid (EMeetingTimeSelector *mts);
static void e_meeting_time_selector_recalc_date_format (EMeetingTimeSelector *mts);
static void e_meeting_time_selector_save_position (EMeetingTimeSelector *mts,
                           EMeetingTime *mtstime);
static void e_meeting_time_selector_restore_position (EMeetingTimeSelector *mts,
                              EMeetingTime *mtstime);
static void e_meeting_time_selector_on_start_time_changed (GtkWidget *widget,
                               EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_end_time_changed (GtkWidget *widget,
                             EMeetingTimeSelector *mts);
static void e_meeting_time_selector_update_date_popup_menus (EMeetingTimeSelector *mts);
static void e_meeting_time_selector_on_canvas_size_allocate (GtkWidget *widget,
                                 GtkAllocation *allocation,
                                 EMeetingTimeSelector *mts);
static void e_meeting_time_selector_update_main_canvas_scroll_region (EMeetingTimeSelector *mts);
static gboolean e_meeting_time_selector_timeout_handler (gpointer data);
static void e_meeting_time_selector_update_start_date_edit (EMeetingTimeSelector *mts);
static void e_meeting_time_selector_update_end_date_edit (EMeetingTimeSelector *mts);
static void e_meeting_time_selector_ensure_meeting_time_shown (EMeetingTimeSelector *mts);
static void e_meeting_time_selector_update_dates_shown (EMeetingTimeSelector *mts);
static gboolean e_meeting_time_selector_on_canvas_scroll_event (GtkWidget *widget, GdkEventScroll *event, EMeetingTimeSelector *mts);

static void row_inserted_cb (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data);
static void row_changed_cb (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data);
static void row_deleted_cb (GtkTreeModel *model, GtkTreePath *path, gpointer data);

static void free_busy_template_changed_cb (EMeetingTimeSelector *mts);

G_DEFINE_TYPE_WITH_CODE (
    EMeetingTimeSelector, e_meeting_time_selector, GTK_TYPE_TABLE,
    G_IMPLEMENT_INTERFACE (E_TYPE_EXTENSIBLE, NULL))

static void
meeting_time_selector_set_property (GObject *object,
                                    guint property_id,
                                    const GValue *value,
                                    GParamSpec *pspec)
{
    switch (property_id) {
        case PROP_SHOW_WEEK_NUMBERS:
            e_meeting_time_selector_set_show_week_numbers (
                E_MEETING_TIME_SELECTOR (object),
                g_value_get_boolean (value));
            return;

        case PROP_USE_24_HOUR_FORMAT:
            e_meeting_time_selector_set_use_24_hour_format (
                E_MEETING_TIME_SELECTOR (object),
                g_value_get_boolean (value));
            return;

        case PROP_WEEK_START_DAY:
            e_meeting_time_selector_set_week_start_day (
                E_MEETING_TIME_SELECTOR (object),
                g_value_get_int (value));
            return;
    }

    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}

static void
meeting_time_selector_get_property (GObject *object,
                                    guint property_id,
                                    GValue *value,
                                    GParamSpec *pspec)
{
    switch (property_id) {
        case PROP_SHOW_WEEK_NUMBERS:
            g_value_set_boolean (
                value,
                e_meeting_time_selector_get_show_week_numbers (
                E_MEETING_TIME_SELECTOR (object)));
            return;

        case PROP_USE_24_HOUR_FORMAT:
            g_value_set_boolean (
                value,
                e_meeting_time_selector_get_use_24_hour_format (
                E_MEETING_TIME_SELECTOR (object)));
            return;

        case PROP_WEEK_START_DAY:
            g_value_set_int (
                value,
                e_meeting_time_selector_get_week_start_day (
                E_MEETING_TIME_SELECTOR (object)));
            return;
    }

    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}

static void
meeting_time_selector_dispose (GObject *object)
{
    EMeetingTimeSelector *mts;

    mts = E_MEETING_TIME_SELECTOR (object);

    e_meeting_time_selector_remove_timeout (mts);

    if (mts->model) {
        g_signal_handlers_disconnect_matched (
            mts->model, G_SIGNAL_MATCH_DATA,
            0, 0, NULL, NULL, mts);
        g_object_unref (mts->model);
        mts->model = NULL;
    }

    mts->display_top = NULL;
    mts->display_main = NULL;

    if (mts->fb_refresh_not != 0) {
        g_source_remove (mts->fb_refresh_not);
        mts->fb_refresh_not = 0;
    }

    if (mts->style_change_idle_id != 0) {
        g_source_remove (mts->style_change_idle_id);
        mts->style_change_idle_id = 0;
    }

    /* Chain up to parent's dispose() method. */
    G_OBJECT_CLASS (e_meeting_time_selector_parent_class)->dispose (object);
}

static void
e_meeting_time_selector_class_init (EMeetingTimeSelectorClass *class)
{
    GObjectClass *object_class;
    GtkWidgetClass *widget_class;

    g_type_class_add_private (class, sizeof (EMeetingTimeSelectorPrivate));

    object_class = G_OBJECT_CLASS (class);
    object_class->set_property = meeting_time_selector_set_property;
    object_class->get_property = meeting_time_selector_get_property;
    object_class->dispose = meeting_time_selector_dispose;

    widget_class = GTK_WIDGET_CLASS (class);
    widget_class->realize = e_meeting_time_selector_realize;
    widget_class->unrealize = e_meeting_time_selector_unrealize;
    widget_class->style_set = e_meeting_time_selector_style_set;
    widget_class->draw = e_meeting_time_selector_draw;

    g_object_class_install_property (
        object_class,
        PROP_SHOW_WEEK_NUMBERS,
        g_param_spec_boolean (
            "show-week-numbers",
            "Show Week Numbers",
            NULL,
            TRUE,
            G_PARAM_READWRITE));

    g_object_class_install_property (
        object_class,
        PROP_USE_24_HOUR_FORMAT,
        g_param_spec_boolean (
            "use-24-hour-format",
            "Use 24-Hour Format",
            NULL,
            TRUE,
            G_PARAM_READWRITE));

    g_object_class_install_property (
        object_class,
        PROP_WEEK_START_DAY,
        g_param_spec_int (
            "week-start-day",
            "Week Start Day",
            NULL,
            0,  /* Monday */
            6,  /* Sunday */
            0,
            G_PARAM_READWRITE));

    signals[CHANGED] = g_signal_new (
        "changed",
        G_TYPE_FROM_CLASS (object_class),
        G_SIGNAL_RUN_FIRST,
        G_STRUCT_OFFSET (EMeetingTimeSelectorClass, changed),
        NULL, NULL,
        g_cclosure_marshal_VOID__VOID,
        G_TYPE_NONE, 0);
}

static void
e_meeting_time_selector_init (EMeetingTimeSelector *mts)
{
    mts->priv = E_MEETING_TIME_SELECTOR_GET_PRIVATE (mts);

    /* The shadow is drawn in the border so it must be >= 2 pixels. */
    gtk_container_set_border_width (GTK_CONTAINER (mts), 2);

    mts->accel_group = gtk_accel_group_new ();

    mts->working_hours_only = TRUE;
    mts->day_start_hour = 9;
    mts->day_start_minute = 0;
    mts->day_end_hour = 18;
    mts->day_end_minute = 0;
    mts->zoomed_out = TRUE;
    mts->dragging_position = E_MEETING_TIME_SELECTOR_POS_NONE;

    mts->list_view = NULL;

    mts->fb_refresh_not = 0;
    mts->style_change_idle_id = 0;

    e_extensible_load_extensions (E_EXTENSIBLE (mts));
}

void
e_meeting_time_selector_construct (EMeetingTimeSelector *mts,
                                   EMeetingStore *ems)
{
    GtkWidget *hbox, *vbox, *separator, *label, *table, *sw;
    GtkWidget *alignment, *child_hbox, *arrow, *menuitem;
    GtkWidget *child;
    GtkAdjustment *adjustment;
    GtkScrollable *scrollable;
    GSList *group;
    guint accel_key;
    time_t meeting_start_time;
    struct tm *meeting_start_tm;
    AtkObject *a11y_label, *a11y_date_edit;

    /* The default meeting time is the nearest half-hour interval in the
     * future, in working hours. */
    meeting_start_time = time (NULL);
    g_date_clear (&mts->meeting_start_time.date, 1);
    g_date_set_time_t (&mts->meeting_start_time.date, meeting_start_time);
    meeting_start_tm = localtime (&meeting_start_time);
    mts->meeting_start_time.hour = meeting_start_tm->tm_hour;
    mts->meeting_start_time.minute = meeting_start_tm->tm_min;

    e_meeting_time_selector_find_nearest_interval (mts, &mts->meeting_start_time,
                               &mts->meeting_end_time,
                               0, 0, 30);

    e_meeting_time_selector_update_dates_shown (mts);

    mts->meeting_positions_valid = FALSE;

    mts->row_height = 17;
    mts->col_width = 55;
    mts->day_width = 55 * 24 + 1;

    mts->auto_scroll_timeout_id = 0;

    vbox = gtk_vbox_new (FALSE, 0);
    gtk_table_attach (GTK_TABLE (mts),
              vbox, 0, 1, 0, 2, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
    gtk_widget_show (vbox);

    mts->attendees_vbox_spacer = gtk_vbox_new (FALSE, 0);
    gtk_box_pack_start (GTK_BOX (vbox), mts->attendees_vbox_spacer, FALSE, FALSE, 0);
    gtk_widget_show (mts->attendees_vbox_spacer);

    mts->attendees_vbox = gtk_vbox_new (FALSE, 0);
    gtk_box_pack_start (GTK_BOX (vbox), mts->attendees_vbox, TRUE, TRUE, 0);
    gtk_widget_show (mts->attendees_vbox);

    /* build the etable */
    mts->model = ems;

    if (mts->model)
        g_object_ref (mts->model);

    g_signal_connect_swapped (
        mts->model, "notify::free-busy-template",
        G_CALLBACK (free_busy_template_changed_cb), mts);

    g_signal_connect (
        mts->model, "row_inserted",
        G_CALLBACK (row_inserted_cb), mts);
    g_signal_connect (
        mts->model, "row_changed",
        G_CALLBACK (row_changed_cb), mts);
    g_signal_connect (
        mts->model, "row_deleted",
        G_CALLBACK (row_deleted_cb), mts);

    mts->list_view = e_meeting_list_view_new (mts->model);
    e_meeting_list_view_column_set_visible (mts->list_view, E_MEETING_STORE_ROLE_COL, FALSE);
    e_meeting_list_view_column_set_visible (mts->list_view, E_MEETING_STORE_RSVP_COL, FALSE);
    e_meeting_list_view_column_set_visible (mts->list_view, E_MEETING_STORE_STATUS_COL, FALSE);
    e_meeting_list_view_column_set_visible (mts->list_view, E_MEETING_STORE_TYPE_COL, FALSE);

    gtk_widget_show (GTK_WIDGET (mts->list_view));

    sw = gtk_scrolled_window_new (NULL, NULL);
    gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
    gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw), GTK_SHADOW_IN);
    gtk_widget_set_child_visible (
        gtk_scrolled_window_get_vscrollbar (
        GTK_SCROLLED_WINDOW (sw)), FALSE);
    gtk_widget_show (sw);
    gtk_container_add (GTK_CONTAINER (sw), GTK_WIDGET (mts->list_view));

#if 0
    /* FIXME: do we need sorting here */
    g_signal_connect (
        real_table->sort_info, "sort_info_changed",
        G_CALLBACK (sort_info_changed_cb), mts);
#endif

    gtk_box_pack_start (GTK_BOX (mts->attendees_vbox), GTK_WIDGET (sw), TRUE, TRUE, 6);

    /* The free/busy information */
    mts->display_top = gnome_canvas_new ();
    gtk_widget_set_size_request (mts->display_top, -1, mts->row_height * 3);
    gnome_canvas_set_scroll_region (GNOME_CANVAS (mts->display_top),
                    0, 0,
                    mts->day_width * E_MEETING_TIME_SELECTOR_DAYS_SHOWN,
                    mts->row_height * 3);
    /* Add some horizontal padding for the shadow around the display. */
    gtk_table_attach (GTK_TABLE (mts), mts->display_top,
              1, 4, 0, 1, GTK_EXPAND | GTK_FILL, 0, 0, 0);
    gtk_widget_show (mts->display_top);
    g_signal_connect (
        mts->display_top, "realize",
        G_CALLBACK (e_meeting_time_selector_on_canvas_realized), mts);

    mts->display_main = gnome_canvas_new ();
    e_meeting_time_selector_update_main_canvas_scroll_region (mts);
    /* Add some horizontal padding for the shadow around the display. */
    gtk_table_attach (GTK_TABLE (mts), mts->display_main,
              1, 4, 1, 2,
              GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
    gtk_widget_show (mts->display_main);
    g_signal_connect (
        mts->display_main, "realize",
        G_CALLBACK (e_meeting_time_selector_on_canvas_realized), mts);
    g_signal_connect (
        mts->display_main, "size_allocate",
        G_CALLBACK (e_meeting_time_selector_on_canvas_size_allocate), mts);
    g_signal_connect (
        mts->display_main, "scroll-event",
        G_CALLBACK (e_meeting_time_selector_on_canvas_scroll_event), mts);

    scrollable = GTK_SCROLLABLE (mts->display_main);

    adjustment = gtk_scrollable_get_vadjustment (scrollable);
    gtk_scrolled_window_set_vadjustment (
        GTK_SCROLLED_WINDOW (sw), adjustment);

    adjustment = gtk_scrollable_get_hadjustment (scrollable);
    mts->hscrollbar = gtk_hscrollbar_new (adjustment);
    gtk_adjustment_set_step_increment (adjustment, mts->day_width);
    gtk_table_attach (
        GTK_TABLE (mts), mts->hscrollbar,
        1, 4, 2, 3, GTK_EXPAND | GTK_FILL, 0, 0, 0);
    gtk_widget_show (mts->hscrollbar);

    adjustment = gtk_scrollable_get_vadjustment (scrollable);
    mts->vscrollbar = gtk_vscrollbar_new (adjustment);
    gtk_adjustment_set_step_increment (adjustment, mts->row_height);
    gtk_table_attach (
        GTK_TABLE (mts), mts->vscrollbar,
        4, 5, 1, 2, 0, GTK_EXPAND | GTK_FILL, 0, 0);
    gtk_widget_show (mts->vscrollbar);

    /* Create the item in the top canvas. */
    mts->item_top = gnome_canvas_item_new (GNOME_CANVAS_GROUP (GNOME_CANVAS (mts->display_top)->root),
                   e_meeting_time_selector_item_get_type (),
                   "EMeetingTimeSelectorItem::meeting_time_selector", mts,
                   NULL);

    /* Create the item in the main canvas. */
    mts->item_main = gnome_canvas_item_new (GNOME_CANVAS_GROUP (GNOME_CANVAS (mts->display_main)->root),
                   e_meeting_time_selector_item_get_type (),
                   "EMeetingTimeSelectorItem::meeting_time_selector", mts,
                   NULL);

    /* Create the hbox containing the color key. */
    hbox = gtk_hbox_new (FALSE, 2);
    gtk_table_attach (GTK_TABLE (mts), hbox,
              1, 4, 3, 4, GTK_FILL, 0, 0, 8);
    gtk_widget_show (hbox);

    e_meeting_time_selector_add_key_color (mts, hbox, _("Tentative"), &mts->busy_colors[E_MEETING_FREE_BUSY_TENTATIVE]);
    e_meeting_time_selector_add_key_color (mts, hbox, _("Busy"), &mts->busy_colors[E_MEETING_FREE_BUSY_BUSY]);
    e_meeting_time_selector_add_key_color (mts, hbox, _("Out of Office"), &mts->busy_colors[E_MEETING_FREE_BUSY_OUT_OF_OFFICE]);
    e_meeting_time_selector_add_key_color (mts, hbox, _("No Information"),
                           NULL);

    separator = gtk_hseparator_new ();
    gtk_table_attach (GTK_TABLE (mts), separator,
              0, 5, 4, 5, GTK_FILL, 0, 6, 6);
    gtk_widget_show (separator);

    /* Create the Invite Others & Options buttons on the left. */
    hbox = gtk_hbox_new (FALSE, 4);
    gtk_table_attach (GTK_TABLE (mts), hbox,
              0, 1, 3, 4, GTK_FILL, 0, 0, 0);
    gtk_widget_show (hbox);

    mts->add_attendees_button =
        gtk_button_new_with_mnemonic (_("Atte_ndees..."));
    gtk_button_set_image (
        GTK_BUTTON (mts->add_attendees_button),
        gtk_image_new_from_stock (
            GTK_STOCK_JUMP_TO, GTK_ICON_SIZE_BUTTON));
    gtk_box_pack_start (GTK_BOX (hbox), mts->add_attendees_button, TRUE, TRUE, 6);
    gtk_widget_show (mts->add_attendees_button);
    g_signal_connect (
        mts->add_attendees_button, "clicked",
        G_CALLBACK (e_meeting_time_selector_on_invite_others_button_clicked), mts);

    mts->options_button = gtk_button_new ();
    gtk_box_pack_start (GTK_BOX (hbox), mts->options_button, TRUE, TRUE, 6);
    gtk_widget_show (mts->options_button);

    g_signal_connect (
        mts->options_button, "clicked",
        G_CALLBACK (e_meeting_time_selector_on_options_button_clicked), mts);

    child_hbox = gtk_hbox_new (FALSE, 2);
    gtk_container_add (GTK_CONTAINER (mts->options_button), child_hbox);
    gtk_widget_show (child_hbox);

    label = gtk_label_new_with_mnemonic (_("O_ptions"));
    accel_key = gtk_label_get_mnemonic_keyval (GTK_LABEL (label));
    gtk_box_pack_start (GTK_BOX (child_hbox), label, TRUE, TRUE, 6);
    gtk_widget_show (label);
    gtk_widget_add_accelerator (mts->options_button, "clicked", mts->accel_group,
                    accel_key, GDK_MOD1_MASK, 0);

    arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE);
    gtk_box_pack_start (GTK_BOX (child_hbox), arrow, FALSE, FALSE, 6);
    gtk_widget_show (arrow);

    /* Create the Options menu. */
    mts->options_menu = gtk_menu_new ();
    gtk_menu_attach_to_widget (GTK_MENU (mts->options_menu), mts->options_button,
                   e_meeting_time_selector_options_menu_detacher);

    menuitem = gtk_check_menu_item_new_with_label ("");
    child = gtk_bin_get_child (GTK_BIN (menuitem));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _("Show _only working hours"));
    gtk_menu_shell_append (GTK_MENU_SHELL (mts->options_menu), menuitem);
    gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (menuitem),
                    mts->working_hours_only);

    g_signal_connect (
        menuitem, "toggled",
        G_CALLBACK (e_meeting_time_selector_on_working_hours_toggled), mts);
    gtk_widget_show (menuitem);

    menuitem = gtk_check_menu_item_new_with_label ("");
    child = gtk_bin_get_child (GTK_BIN (menuitem));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _("Show _zoomed out"));
    gtk_menu_shell_append (GTK_MENU_SHELL (mts->options_menu), menuitem);
    gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (menuitem),
                    mts->zoomed_out);

    g_signal_connect (
        menuitem, "toggled",
        G_CALLBACK (e_meeting_time_selector_on_zoomed_out_toggled), mts);
    gtk_widget_show (menuitem);

    menuitem = gtk_menu_item_new ();
    gtk_menu_shell_append (GTK_MENU_SHELL (mts->options_menu), menuitem);
    gtk_widget_set_sensitive (menuitem, FALSE);
    gtk_widget_show (menuitem);

    menuitem = gtk_menu_item_new_with_label ("");
    child = gtk_bin_get_child (GTK_BIN (menuitem));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _("_Update free/busy"));
    gtk_menu_shell_append (GTK_MENU_SHELL (mts->options_menu), menuitem);

    g_signal_connect (
        menuitem, "activate",
        G_CALLBACK (e_meeting_time_selector_on_update_free_busy), mts);
    gtk_widget_show (menuitem);

    /* Create the 3 AutoPick buttons on the left. */
    hbox = gtk_hbox_new (FALSE, 0);
    gtk_table_attach (GTK_TABLE (mts), hbox,
              0, 1, 5, 6, GTK_FILL, 0, 0, 0);
    gtk_widget_show (hbox);

    mts->autopick_down_button = gtk_button_new_with_label ("");
    child = gtk_bin_get_child (GTK_BIN (mts->autopick_down_button));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _("_<<"));
    accel_key = gtk_label_get_mnemonic_keyval (GTK_LABEL (child));
    gtk_widget_add_accelerator (mts->autopick_down_button, "clicked", mts->accel_group,
                    accel_key, GDK_MOD1_MASK | GDK_SHIFT_MASK, 0);
    gtk_box_pack_start (GTK_BOX (hbox), mts->autopick_down_button, TRUE, TRUE, 6);
    gtk_widget_show (mts->autopick_down_button);
    g_signal_connect (
        mts->autopick_down_button, "clicked",
        G_CALLBACK (e_meeting_time_selector_on_prev_button_clicked), mts);

    mts->autopick_button = gtk_button_new ();
    gtk_box_pack_start (GTK_BOX (hbox), mts->autopick_button, TRUE, TRUE, 6);
    gtk_widget_show (mts->autopick_button);

    child_hbox = gtk_hbox_new (FALSE, 2);
    gtk_container_add (GTK_CONTAINER (mts->autopick_button), child_hbox);
    gtk_widget_show (child_hbox);

    label = gtk_label_new ("");
    gtk_label_set_text_with_mnemonic (GTK_LABEL (label), _("_Autopick"));
    accel_key = gtk_label_get_mnemonic_keyval (GTK_LABEL (label));
    gtk_box_pack_start (GTK_BOX (child_hbox), label, TRUE, TRUE, 6);
    gtk_widget_show (label);
    gtk_widget_add_accelerator (mts->autopick_button, "clicked", mts->accel_group,
                    accel_key, GDK_MOD1_MASK, 0);
    g_signal_connect (
        mts->autopick_button, "clicked",
        G_CALLBACK (e_meeting_time_selector_on_autopick_button_clicked), mts);

    arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE);
    gtk_box_pack_start (GTK_BOX (child_hbox), arrow, FALSE, FALSE, 6);
    gtk_widget_show (arrow);

    mts->autopick_up_button = gtk_button_new_with_label ("");
    child = gtk_bin_get_child (GTK_BIN (mts->autopick_up_button));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _(">_>"));
    accel_key = gtk_label_get_mnemonic_keyval (GTK_LABEL (child));
    gtk_widget_add_accelerator (mts->autopick_up_button, "clicked", mts->accel_group,
                    accel_key, GDK_MOD1_MASK | GDK_SHIFT_MASK, 0);
    gtk_box_pack_start (GTK_BOX (hbox), mts->autopick_up_button, TRUE, TRUE, 6);
    gtk_widget_show (mts->autopick_up_button);
    g_signal_connect (
        mts->autopick_up_button, "clicked",
        G_CALLBACK (e_meeting_time_selector_on_next_button_clicked), mts);

    /* Create the Autopick menu. */
    mts->autopick_menu = gtk_menu_new ();
    gtk_menu_attach_to_widget (GTK_MENU (mts->autopick_menu), mts->autopick_button,
                   e_meeting_time_selector_autopick_menu_detacher);

    menuitem = gtk_radio_menu_item_new_with_label (NULL, "");
    mts->autopick_all_item = menuitem;
    child = gtk_bin_get_child (GTK_BIN (menuitem));
    group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (menuitem));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _("_All people and resources"));
    gtk_menu_shell_append (GTK_MENU_SHELL (mts->autopick_menu), menuitem);
    g_signal_connect (
        menuitem, "toggled",
        G_CALLBACK (e_meeting_time_selector_on_autopick_option_toggled), mts);
    gtk_widget_show (menuitem);

    menuitem = gtk_radio_menu_item_new_with_label (group, "");
    mts->autopick_all_people_one_resource_item = menuitem;
    child = gtk_bin_get_child (GTK_BIN (menuitem));
    group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (menuitem));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _("All _people and one resource"));
    gtk_menu_shell_append (GTK_MENU_SHELL (mts->autopick_menu), menuitem);
    g_signal_connect (
        menuitem, "toggled",
        G_CALLBACK (e_meeting_time_selector_on_autopick_option_toggled), mts);
    gtk_widget_show (menuitem);

    menuitem = gtk_radio_menu_item_new_with_label (group, "");
    mts->autopick_required_people_item = menuitem;
    child = gtk_bin_get_child (GTK_BIN (menuitem));
    group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (menuitem));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _("_Required people"));
    gtk_menu_shell_append (GTK_MENU_SHELL (mts->autopick_menu), menuitem);
    g_signal_connect (
        menuitem, "activate",
        G_CALLBACK (e_meeting_time_selector_on_autopick_option_toggled), mts);
    gtk_widget_show (menuitem);

    menuitem = gtk_radio_menu_item_new_with_label (group, "");
    mts->autopick_required_people_one_resource_item = menuitem;
    child = gtk_bin_get_child (GTK_BIN (menuitem));
    gtk_label_set_text_with_mnemonic (GTK_LABEL (child), _("Required people and _one resource"));
    gtk_menu_shell_append (GTK_MENU_SHELL (mts->autopick_menu), menuitem);
    g_signal_connect (
        menuitem, "activate",
        G_CALLBACK (e_meeting_time_selector_on_autopick_option_toggled), mts);
    gtk_widget_show (menuitem);

    /* Create the date entry fields on the right. */
    alignment = gtk_alignment_new (0.0, 0.5, 0, 0);
    gtk_table_attach (GTK_TABLE (mts), alignment,
              1, 4, 5, 6, GTK_FILL, 0, 0, 0);
    gtk_widget_show (alignment);

    table = gtk_table_new (2, 2, FALSE);
    gtk_table_set_row_spacings (GTK_TABLE (table), 4);
    gtk_container_add (GTK_CONTAINER (alignment), table);
    gtk_widget_show (table);

    mts->start_date_edit = e_date_edit_new ();
    gtk_label_set_mnemonic_widget (GTK_LABEL (label), mts->start_date_edit);
    a11y_label = gtk_widget_get_accessible (label);
    a11y_date_edit = gtk_widget_get_accessible (mts->start_date_edit);
    if (a11y_label != NULL && a11y_date_edit != NULL) {
        atk_object_add_relationship (a11y_date_edit,
                    ATK_RELATION_LABELLED_BY,
                    a11y_label);
    }
    e_date_edit_set_show_time (E_DATE_EDIT (mts->start_date_edit), TRUE);

    g_object_bind_property (
        mts, "show-week-numbers",
        mts->start_date_edit, "show-week-numbers",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        mts, "use-24-hour-format",
        mts->start_date_edit, "use-24-hour-format",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        mts, "week-start-day",
        mts->start_date_edit, "week-start-day",
        G_BINDING_SYNC_CREATE);

    gtk_table_attach (GTK_TABLE (table), mts->start_date_edit,
              1, 2, 0, 1, GTK_FILL, 0, 0, 0);
    gtk_widget_show (mts->start_date_edit);
    g_signal_connect (
        mts->start_date_edit, "changed",
        G_CALLBACK (e_meeting_time_selector_on_start_time_changed), mts);

    label = gtk_label_new_with_mnemonic (_("_Start time:"));
    gtk_label_set_mnemonic_widget (GTK_LABEL (label), (mts->start_date_edit));

    gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
    gtk_table_attach (GTK_TABLE (table), label,
              0, 1, 0, 1, GTK_FILL, 0, 4, 0);
    gtk_widget_show (label);

    mts->end_date_edit = e_date_edit_new ();
    gtk_label_set_mnemonic_widget (GTK_LABEL (label), mts->end_date_edit);
    a11y_label = gtk_widget_get_accessible (label);
    a11y_date_edit = gtk_widget_get_accessible (mts->end_date_edit);
    if (a11y_label != NULL && a11y_date_edit != NULL) {
        atk_object_add_relationship (a11y_date_edit,
                    ATK_RELATION_LABELLED_BY,
                    a11y_label);
    }
    e_date_edit_set_show_time (E_DATE_EDIT (mts->end_date_edit), TRUE);

    g_object_bind_property (
        mts, "show-week-numbers",
        mts->end_date_edit, "show-week-numbers",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        mts, "use-24-hour-format",
        mts->end_date_edit, "use-24-hour-format",
        G_BINDING_SYNC_CREATE);

    g_object_bind_property (
        mts, "week-start-day",
        mts->end_date_edit, "week-start-day",
        G_BINDING_SYNC_CREATE);

    gtk_table_attach (GTK_TABLE (table), mts->end_date_edit,
              1, 2, 1, 2, GTK_FILL, 0, 0, 0);
    gtk_widget_show (mts->end_date_edit);
    g_signal_connect (
        mts->end_date_edit, "changed",
        G_CALLBACK (e_meeting_time_selector_on_end_time_changed), mts);

    label = gtk_label_new_with_mnemonic (_("_End time:"));
    gtk_label_set_mnemonic_widget (GTK_LABEL (label), (mts->end_date_edit));

    gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
    gtk_table_attach (GTK_TABLE (table), label,
              0, 1, 1, 2, GTK_FILL, 0, 4, 0);
    gtk_widget_show (label);

    gtk_table_set_col_spacing (GTK_TABLE (mts), 0, 4);
    gtk_table_set_row_spacing (GTK_TABLE (mts), 4, 12);

    /* Allocate the colors. */
    e_meeting_time_selector_alloc_named_color (mts, "snow", &mts->bg_color);
    e_meeting_time_selector_alloc_named_color (mts, "snow3", &mts->all_attendees_bg_color);
    e_meeting_time_selector_alloc_named_color (mts, "black", &mts->grid_color);
    e_meeting_time_selector_alloc_named_color (mts, "white", &mts->grid_shadow_color);
    e_meeting_time_selector_alloc_named_color (mts, "gray50", &mts->grid_unused_color);
    e_meeting_time_selector_alloc_named_color (mts, "white", &mts->attendee_list_bg_color);

    e_meeting_time_selector_alloc_named_color (mts, "snow4", &mts->meeting_time_bg_color);
    e_meeting_time_selector_alloc_named_color (mts, "snow", &mts->busy_colors[E_MEETING_FREE_BUSY_FREE]);
    e_meeting_time_selector_alloc_named_color (mts, "#a5d3ef", &mts->busy_colors[E_MEETING_FREE_BUSY_TENTATIVE]);
    e_meeting_time_selector_alloc_named_color (mts, "blue", &mts->busy_colors[E_MEETING_FREE_BUSY_BUSY]);
    e_meeting_time_selector_alloc_named_color (mts, "#ce6194", &mts->busy_colors[E_MEETING_FREE_BUSY_OUT_OF_OFFICE]);

    /* Connect handlers to the adjustments  scroll the other items. */
    scrollable = GTK_SCROLLABLE (mts->display_main);
    adjustment = gtk_scrollable_get_hadjustment (scrollable);
    g_signal_connect (
        adjustment, "value_changed",
        G_CALLBACK (e_meeting_time_selector_hadjustment_changed), mts);
    adjustment = gtk_scrollable_get_vadjustment (scrollable);
    g_signal_connect (
        adjustment, "value_changed",
        G_CALLBACK (e_meeting_time_selector_vadjustment_changed), mts);
    g_signal_connect (
        adjustment, "changed",
        G_CALLBACK (e_meeting_time_selector_vadjustment_changed), mts);

    e_meeting_time_selector_recalc_grid (mts);
    e_meeting_time_selector_ensure_meeting_time_shown (mts);
    e_meeting_time_selector_update_start_date_edit (mts);
    e_meeting_time_selector_update_end_date_edit (mts);
    e_meeting_time_selector_update_date_popup_menus (mts);

    g_signal_emit (mts, signals[CHANGED], 0);
}

/* This adds a color to the color key beneath the main display. If color is
 * NULL, it displays the No Info pattern instead. */
static void
e_meeting_time_selector_add_key_color (EMeetingTimeSelector *mts,
                                       GtkWidget *hbox,
                                       gchar *label_text,
                                       GdkColor *color)
{
    GtkWidget *child_hbox, *darea, *label;

    child_hbox = gtk_hbox_new (FALSE, 4);
    gtk_box_pack_start (GTK_BOX (hbox), child_hbox, TRUE, TRUE, 0);
    gtk_widget_show (child_hbox);

    darea = gtk_drawing_area_new ();
    gtk_box_pack_start (GTK_BOX (child_hbox), darea, FALSE, FALSE, 0);
    g_object_set_data (G_OBJECT (darea), "data", mts);
    gtk_widget_set_size_request (darea, 14, 14);
    gtk_widget_show (darea);

    label = gtk_label_new (label_text);
    gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
    gtk_box_pack_start (GTK_BOX (child_hbox), label, TRUE, TRUE, 6);
    gtk_widget_show (label);

    g_signal_connect (
        darea, "draw",
        G_CALLBACK (e_meeting_time_selector_draw_key_color), color);
}

static gint
e_meeting_time_selector_draw_key_color (GtkWidget *darea,
                                        cairo_t *cr,
                                        GdkColor *color)
{
    EMeetingTimeSelector * mts;
    GtkAllocation allocation;
    GtkStyle *style;

    style = gtk_widget_get_style (darea);
    gtk_widget_get_allocation (darea, &allocation);

    mts = g_object_get_data (G_OBJECT (darea), "data");

    gtk_paint_shadow (
        style, cr, GTK_STATE_NORMAL,
        GTK_SHADOW_IN, NULL, NULL, 0, 0,
        allocation.width, allocation.height);

    if (color) {
        gdk_cairo_set_source_color (cr, color);
    } else {
        cairo_set_source (cr, mts->no_info_pattern);
    }
    cairo_rectangle (cr,
             1, 1,
             allocation.width - 2, allocation.height - 2);
    cairo_fill (cr);

    return TRUE;
}

static void
e_meeting_time_selector_alloc_named_color (EMeetingTimeSelector *mts,
                                           const gchar *name,
                                           GdkColor *c)
{
    g_return_if_fail (name != NULL);
    g_return_if_fail (c != NULL);

    if ( !gdk_color_parse (name, c))
        g_warning ("Failed to parse color: %s\n", name);
}

static void
e_meeting_time_selector_options_menu_detacher (GtkWidget *widget,
                                               GtkMenu *menu)
{
    EMeetingTimeSelector *mts;

    g_return_if_fail (widget != NULL);
    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (widget));

    mts = E_MEETING_TIME_SELECTOR (widget);
    g_return_if_fail (mts->options_menu == (GtkWidget *) menu);

    mts->options_menu = NULL;
}

static void
e_meeting_time_selector_autopick_menu_detacher (GtkWidget *widget,
                                                GtkMenu *menu)
{
    EMeetingTimeSelector *mts;

    g_return_if_fail (widget != NULL);
    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (widget));

    mts = E_MEETING_TIME_SELECTOR (widget);
    g_return_if_fail (mts->autopick_menu == (GtkWidget *) menu);

    mts->autopick_menu = NULL;
}

GtkWidget *
e_meeting_time_selector_new (EMeetingStore *ems)
{
    GtkWidget *mts;

    mts = g_object_new (E_TYPE_MEETING_TIME_SELECTOR, NULL);

    e_meeting_time_selector_construct (E_MEETING_TIME_SELECTOR (mts), ems);

    return mts;
}

gboolean
e_meeting_time_selector_get_show_week_numbers (EMeetingTimeSelector *mts)
{
    g_return_val_if_fail (E_IS_MEETING_TIME_SELECTOR (mts), FALSE);

    return mts->priv->show_week_numbers;
}

void
e_meeting_time_selector_set_show_week_numbers (EMeetingTimeSelector *mts,
                                               gboolean show_week_numbers)
{
    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    if ((mts->priv->show_week_numbers ? 1 : 0) == (show_week_numbers ? 1 : 0))
        return;

    mts->priv->show_week_numbers = show_week_numbers;

    g_object_notify (G_OBJECT (mts), "show-week-numbers");
}

gboolean
e_meeting_time_selector_get_use_24_hour_format (EMeetingTimeSelector *mts)
{
    g_return_val_if_fail (E_IS_MEETING_TIME_SELECTOR (mts), FALSE);

    return mts->priv->use_24_hour_format;
}

void
e_meeting_time_selector_set_use_24_hour_format (EMeetingTimeSelector *mts,
                                                gboolean use_24_hour_format)
{
    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    if ((mts->priv->use_24_hour_format ? 1 : 0) == (use_24_hour_format ? 1 : 0))
        return;

    mts->priv->use_24_hour_format = use_24_hour_format;

    g_object_notify (G_OBJECT (mts), "use-24-hour-format");
}

gint
e_meeting_time_selector_get_week_start_day (EMeetingTimeSelector *mts)
{
    g_return_val_if_fail (E_IS_MEETING_TIME_SELECTOR (mts), 0);

    return mts->priv->week_start_day;
}

void
e_meeting_time_selector_set_week_start_day (EMeetingTimeSelector *mts,
                                            gint week_start_day)
{
    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    if (mts->priv->week_start_day == week_start_day)
        return;

    mts->priv->week_start_day = week_start_day;

    g_object_notify (G_OBJECT (mts), "week-start-day");
}

static cairo_pattern_t *
e_meeting_time_selector_create_no_info_pattern (EMeetingTimeSelector *mts)
{
    cairo_surface_t *surface;
    cairo_pattern_t *pattern;
    GdkColor color;
    cairo_t *cr;

    surface = gdk_window_create_similar_surface (gtk_widget_get_window (GTK_WIDGET (mts)),
                             CAIRO_CONTENT_COLOR, 8, 8);
    cr = cairo_create (surface);

    gdk_color_parse ("white", &color);
    gdk_cairo_set_source_color (cr, &color);
    cairo_paint (cr);

    gdk_cairo_set_source_color (cr, &mts->grid_color);
    cairo_set_line_width (cr, 1.0);
    cairo_move_to (cr, -1,  5);
    cairo_line_to (cr,  9, -5);
    cairo_move_to (cr, -1, 13);
    cairo_line_to (cr,  9,  3);
    cairo_stroke (cr);

    cairo_destroy (cr);

    pattern = cairo_pattern_create_for_surface (surface);
    cairo_pattern_set_extend (pattern, CAIRO_EXTEND_REPEAT);

    cairo_surface_destroy (surface);

    return pattern;
}

static void
e_meeting_time_selector_realize (GtkWidget *widget)
{
    EMeetingTimeSelector *mts;

    if (GTK_WIDGET_CLASS (e_meeting_time_selector_parent_class)->realize)
        (*GTK_WIDGET_CLASS (e_meeting_time_selector_parent_class)->realize)(widget);

    mts = E_MEETING_TIME_SELECTOR (widget);

    mts->no_info_pattern = e_meeting_time_selector_create_no_info_pattern (mts);
}

static void
e_meeting_time_selector_unrealize (GtkWidget *widget)
{
    EMeetingTimeSelector *mts;

    mts = E_MEETING_TIME_SELECTOR (widget);

    cairo_pattern_destroy (mts->no_info_pattern);
    mts->no_info_pattern = NULL;

    if (GTK_WIDGET_CLASS (e_meeting_time_selector_parent_class)->unrealize)
        (*GTK_WIDGET_CLASS (e_meeting_time_selector_parent_class)->unrealize)(widget);
}

static gint
get_cell_height (GtkTreeView *tree)
{
    GtkTreeViewColumn *column;
    gint height = -1;

    column = gtk_tree_view_get_column (tree, 0);
    gtk_tree_view_column_cell_get_size (column, NULL,
                        NULL, NULL,
                        NULL, &height);

    return height;
}

static gboolean
style_change_idle_func (EMeetingTimeSelector *mts)
{
    EMeetingTime saved_time;
    GtkAdjustment *adjustment;
    GtkWidget *widget;
    gint hour, max_hour_width;
    /*int maxheight;      */
    PangoFontDescription *font_desc;
    PangoContext *pango_context;
    PangoFontMetrics *font_metrics;
    PangoLayout *layout;

    /* Set up Pango prerequisites */
    widget = GTK_WIDGET (mts);
    font_desc = gtk_widget_get_style (widget)->font_desc;
    pango_context = gtk_widget_get_pango_context (widget);
    font_metrics = pango_context_get_metrics (pango_context, font_desc,
                          pango_context_get_language (pango_context));
    layout = pango_layout_new (pango_context);

    /* Calculate the widths of the hour strings in the style's font. */
    max_hour_width = 0;
    for (hour = 0; hour < 24; hour++) {
        if (e_meeting_time_selector_get_use_24_hour_format (mts))
            pango_layout_set_text (layout, EMeetingTimeSelectorHours[hour], -1);
        else
            pango_layout_set_text (layout, EMeetingTimeSelectorHours12[hour], -1);

        pango_layout_get_pixel_size (layout, &mts->hour_widths[hour], NULL);
        max_hour_width = MAX (max_hour_width, mts->hour_widths[hour]);
    }

    /* add also some padding for lines so it fits better */
    mts->row_height = get_cell_height (GTK_TREE_VIEW (mts->list_view)) + 2;
    mts->col_width = max_hour_width + 6;

    e_meeting_time_selector_save_position (mts, &saved_time);
    e_meeting_time_selector_recalc_grid (mts);
    e_meeting_time_selector_restore_position (mts, &saved_time);

    gtk_widget_set_size_request (mts->display_top, -1, mts->row_height * 3 + 4);

    /*
     * FIXME: I can't find a way to get the treeview header heights
     * other than the below but it isn't nice to realize that widget here
     *
 *
    gtk_widget_realize (mts->list_view);
    gdk_window_get_position (gtk_tree_view_get_bin_window (GTK_TREE_VIEW (mts->list_view)),
                 NULL, &maxheight);
    gtk_widget_set_size_request (mts->attendees_vbox_spacer, 1, mts->row_height * 3 - maxheight);
 *
    */

    gtk_widget_set_size_request (mts->attendees_vbox_spacer, 1, mts->row_height * 2 - 6);

    widget = mts->display_main;

    adjustment = gtk_scrollable_get_hadjustment (GTK_SCROLLABLE (widget));
    gtk_adjustment_set_step_increment (adjustment, mts->day_width);

    adjustment = gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (widget));
    gtk_adjustment_set_step_increment (adjustment, mts->row_height);

    g_object_unref (layout);
    pango_font_metrics_unref (font_metrics);

    mts->style_change_idle_id = 0;

    return FALSE;
}

static void
e_meeting_time_selector_style_set (GtkWidget *widget,
                                   GtkStyle *previous_style)
{
    EMeetingTimeSelector *mts = E_MEETING_TIME_SELECTOR (widget);

    if (GTK_WIDGET_CLASS (e_meeting_time_selector_parent_class)->style_set)
        (*GTK_WIDGET_CLASS (e_meeting_time_selector_parent_class)->style_set)(widget, previous_style);

    if (!mts->style_change_idle_id)
        mts->style_change_idle_id = g_idle_add (
            (GSourceFunc) style_change_idle_func, widget);
}

/* This draws a shadow around the top display and main display. */
static gint
e_meeting_time_selector_draw (GtkWidget *widget,
                              cairo_t *cr)
{
    EMeetingTimeSelector *mts;

    mts = E_MEETING_TIME_SELECTOR (widget);

    e_meeting_time_selector_draw_shadow (mts, cr);

    if (GTK_WIDGET_CLASS (e_meeting_time_selector_parent_class)->draw)
        (*GTK_WIDGET_CLASS (e_meeting_time_selector_parent_class)->draw)(widget, cr);

    return FALSE;
}

static void
e_meeting_time_selector_draw_shadow (EMeetingTimeSelector *mts,
                                     cairo_t *cr)
{
    GtkAllocation allocation;
    GtkStyle *style;
    gint x, y, w, h;

    cairo_save (cr);

    /* Draw the shadow around the graphical displays. */
    gtk_widget_get_allocation (mts->display_top, &allocation);
    x = allocation.x - 2;
    y = allocation.y - 2;
    w = allocation.width + 4;
    h = allocation.height + allocation.height + 4;

    style = gtk_widget_get_style (GTK_WIDGET (mts));

    gtk_paint_shadow (
        style, cr, GTK_STATE_NORMAL,
        GTK_SHADOW_IN, NULL, NULL, x, y, w, h);

    cairo_restore (cr);
}

/* When the main canvas scrolls, we scroll the other canvases. */
static void
e_meeting_time_selector_hadjustment_changed (GtkAdjustment *adjustment,
                                             EMeetingTimeSelector *mts)
{
    GtkAdjustment *hadjustment;
    GtkScrollable *scrollable;
    gdouble value;

    scrollable = GTK_SCROLLABLE (mts->display_top);
    hadjustment = gtk_scrollable_get_hadjustment (scrollable);

    value = gtk_adjustment_get_value (adjustment);
    gtk_adjustment_set_value (hadjustment, value);
}

static void
e_meeting_time_selector_vadjustment_changed (GtkAdjustment *adjustment,
                                             EMeetingTimeSelector *mts)
{
    GtkAdjustment *vadjustment;
    GtkTreeView *tree_view;
    gdouble value;

    tree_view = GTK_TREE_VIEW (mts->list_view);
    vadjustment = gtk_tree_view_get_vadjustment (tree_view);

    value = gtk_adjustment_get_value (adjustment);
    gtk_adjustment_set_value (vadjustment, value);
}

void
e_meeting_time_selector_get_meeting_time (EMeetingTimeSelector *mts,
                                          gint *start_year,
                                          gint *start_month,
                                          gint *start_day,
                                          gint *start_hour,
                                          gint *start_minute,
                                          gint *end_year,
                                          gint *end_month,
                                          gint *end_day,
                                          gint *end_hour,
                                          gint *end_minute)
{
    *start_year = g_date_get_year (&mts->meeting_start_time.date);
    *start_month = g_date_get_month (&mts->meeting_start_time.date);
    *start_day = g_date_get_day (&mts->meeting_start_time.date);
    *start_hour = mts->meeting_start_time.hour;
    *start_minute = mts->meeting_start_time.minute;

    *end_year = g_date_get_year (&mts->meeting_end_time.date);
    *end_month = g_date_get_month (&mts->meeting_end_time.date);
    *end_day = g_date_get_day (&mts->meeting_end_time.date);
    *end_hour = mts->meeting_end_time.hour;
    *end_minute = mts->meeting_end_time.minute;
}

gboolean
e_meeting_time_selector_set_meeting_time (EMeetingTimeSelector *mts,
                                          gint start_year,
                                          gint start_month,
                                          gint start_day,
                                          gint start_hour,
                                          gint start_minute,
                                          gint end_year,
                                          gint end_month,
                                          gint end_day,
                                          gint end_hour,
                                          gint end_minute)
{
    g_return_val_if_fail (E_IS_MEETING_TIME_SELECTOR (mts), FALSE);

    /* Check the dates are valid. */
    if (!g_date_valid_dmy (start_day, start_month, start_year)
        || !g_date_valid_dmy (end_day, end_month, end_year)
        || start_hour < 0 || start_hour > 23
        || end_hour < 0 || end_hour > 23
        || start_minute < 0 || start_minute > 59
        || end_minute < 0 || end_minute > 59)
        return FALSE;

    g_date_set_dmy (&mts->meeting_start_time.date, start_day, start_month,
            start_year);
    mts->meeting_start_time.hour = start_hour;
    mts->meeting_start_time.minute = start_minute;
    g_date_set_dmy (&mts->meeting_end_time.date, end_day, end_month,
            end_year);
    mts->meeting_end_time.hour = end_hour;
    mts->meeting_end_time.minute = end_minute;

    mts->meeting_positions_valid = FALSE;

    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);

    /* Set the times in the EDateEdit widgets. */
    e_meeting_time_selector_update_start_date_edit (mts);
    e_meeting_time_selector_update_end_date_edit (mts);

    g_signal_emit (mts, signals[CHANGED], 0);

    return TRUE;
}

void
e_meeting_time_selector_set_all_day (EMeetingTimeSelector *mts,
                                     gboolean all_day)
{
    EMeetingTime saved_time;

    mts->all_day = all_day;

    e_date_edit_set_show_time (E_DATE_EDIT (mts->start_date_edit),
                   !all_day);
    e_date_edit_set_show_time (E_DATE_EDIT (mts->end_date_edit),
                   !all_day);

    e_meeting_time_selector_save_position (mts, &saved_time);
    e_meeting_time_selector_recalc_grid (mts);
    e_meeting_time_selector_restore_position (mts, &saved_time);

    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);
    e_meeting_time_selector_update_date_popup_menus (mts);
}

void
e_meeting_time_selector_set_working_hours_only (EMeetingTimeSelector *mts,
                                                gboolean working_hours_only)
{
    EMeetingTime saved_time;

    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    if (mts->working_hours_only == working_hours_only)
        return;

    mts->working_hours_only = working_hours_only;

    e_meeting_time_selector_save_position (mts, &saved_time);
    e_meeting_time_selector_recalc_grid (mts);
    e_meeting_time_selector_restore_position (mts, &saved_time);

    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);
    e_meeting_time_selector_update_date_popup_menus (mts);
}

void
e_meeting_time_selector_set_working_hours (EMeetingTimeSelector *mts,
                                           gint day_start_hour,
                                           gint day_start_minute,
                                           gint day_end_hour,
                                           gint day_end_minute)
{
    EMeetingTime saved_time;

    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    if (mts->day_start_hour == day_start_hour
        && mts->day_start_minute == day_start_minute
        && mts->day_end_hour == day_end_hour
        && mts->day_end_minute == day_end_minute)
        return;

    mts->day_start_hour = day_start_hour;
    mts->day_start_minute = day_start_minute;

    /* Make sure we always show atleast an hour */
    if (day_start_hour * 60 + day_start_minute + 60 < day_end_hour * 60 + day_end_minute) {
        mts->day_end_hour = day_end_hour;
        mts->day_end_minute = day_end_minute;
    } else {
        mts->day_end_hour = day_start_hour + 1;
        mts->day_end_minute = day_start_minute;
    }

    e_meeting_time_selector_save_position (mts, &saved_time);
    e_meeting_time_selector_recalc_grid (mts);
    e_meeting_time_selector_restore_position (mts, &saved_time);

    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);
    e_meeting_time_selector_update_date_popup_menus (mts);
}

void
e_meeting_time_selector_set_zoomed_out (EMeetingTimeSelector *mts,
                                        gboolean zoomed_out)
{
    EMeetingTime saved_time;

    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    if (mts->zoomed_out == zoomed_out)
        return;

    mts->zoomed_out = zoomed_out;

    e_meeting_time_selector_save_position (mts, &saved_time);
    e_meeting_time_selector_recalc_grid (mts);
    e_meeting_time_selector_restore_position (mts, &saved_time);

    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);
}

static gboolean
e_meeting_time_selector_refresh_cb (gpointer data)
{
    EMeetingTimeSelector *mts = data;

    if (e_meeting_store_get_num_queries (mts->model) == 0) {
        GdkCursor *cursor;
        GdkWindow *window;

        cursor = gdk_cursor_new (GDK_LEFT_PTR);
        window = gtk_widget_get_window (GTK_WIDGET (mts));
        if (window)
            gdk_window_set_cursor (window, cursor);
        g_object_unref (cursor);

        mts->last_cursor_set = GDK_LEFT_PTR;

        e_meeting_time_selector_item_set_normal_cursor (E_MEETING_TIME_SELECTOR_ITEM (mts->item_top));
        e_meeting_time_selector_item_set_normal_cursor (E_MEETING_TIME_SELECTOR_ITEM (mts->item_main));
    }

    if (mts->display_top != NULL)
        gtk_widget_queue_draw (mts->display_top);
    if (mts->display_main != NULL)
        gtk_widget_queue_draw (mts->display_main);

    g_object_unref (G_OBJECT (mts));

    return FALSE;
}

void
e_meeting_time_selector_refresh_free_busy (EMeetingTimeSelector *mts,
                                           gint row,
                                           gboolean all)
{
    EMeetingTime start, end;

    /* nothing to refresh, lets not leak a busy cursor */
    if (e_meeting_store_count_actual_attendees (mts->model) <= 0)
        return;

    start = mts->meeting_start_time;
    g_date_subtract_days (&start.date, E_MEETING_TIME_SELECTOR_FB_DAYS_BEFORE);
    start.hour = 0;
    start.minute = 0;
    end = mts->meeting_end_time;
    g_date_add_days (&end.date, E_MEETING_TIME_SELECTOR_FB_DAYS_AFTER);
    end.hour = 0;
    end.minute = 0;

    /* XXX This function is called during schedule page initialization
     *     before the meeting time selector is realized, meaning it has
     *     no GdkWindow yet.  This avoids a runtime warning. */
    if (gtk_widget_get_realized (GTK_WIDGET (mts))) {
        GdkCursor *cursor;
        GdkWindow *window;

        /* Set the cursor to Busy.  We need to reset it to
         * normal once the free busy queries are complete. */
        cursor = gdk_cursor_new (GDK_WATCH);
        window = gtk_widget_get_window (GTK_WIDGET (mts));
        gdk_window_set_cursor (window, cursor);
        g_object_unref (cursor);

        mts->last_cursor_set = GDK_WATCH;
    }

    /* Ref ourselves in case we are called back after destruction,
     * we can do this because we will get a call back even after
     * an error */
    /* FIXME We should really have a mechanism to unqueue the
     * notification */
    if (all) {
        gint i;

        for (i = 0; i < e_meeting_store_count_actual_attendees (mts->model); i++)
            g_object_ref (G_OBJECT (mts));
    } else {
        g_object_ref (G_OBJECT (mts));
    }

    if (all)
        e_meeting_store_refresh_all_busy_periods (mts->model, &start, &end,
                              e_meeting_time_selector_refresh_cb, mts);
    else
        e_meeting_store_refresh_busy_periods (mts->model, row, &start, &end,
                              e_meeting_time_selector_refresh_cb, mts);
}

EMeetingTimeSelectorAutopickOption
e_meeting_time_selector_get_autopick_option (EMeetingTimeSelector *mts)
{
    GtkWidget *widget;

    widget = mts->autopick_all_item;
    if (gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (widget)))
        return E_MEETING_TIME_SELECTOR_ALL_PEOPLE_AND_RESOURCES;

    widget = mts->autopick_all_people_one_resource_item;
    if (gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (widget)))
        return E_MEETING_TIME_SELECTOR_ALL_PEOPLE_AND_ONE_RESOURCE;

    widget = mts->autopick_required_people_item;
    if (gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (widget)))
        return E_MEETING_TIME_SELECTOR_REQUIRED_PEOPLE;

    return E_MEETING_TIME_SELECTOR_REQUIRED_PEOPLE_AND_ONE_RESOURCE;
}

void
e_meeting_time_selector_set_autopick_option (EMeetingTimeSelector *mts,
                                             EMeetingTimeSelectorAutopickOption autopick_option)
{
    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    switch (autopick_option) {
    case E_MEETING_TIME_SELECTOR_ALL_PEOPLE_AND_RESOURCES:
        gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (mts->autopick_all_item), TRUE);
        break;
    case E_MEETING_TIME_SELECTOR_ALL_PEOPLE_AND_ONE_RESOURCE:
        gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (mts->autopick_all_people_one_resource_item), TRUE);
        break;
    case E_MEETING_TIME_SELECTOR_REQUIRED_PEOPLE:
        gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (mts->autopick_required_people_item), TRUE);
        break;
    case E_MEETING_TIME_SELECTOR_REQUIRED_PEOPLE_AND_ONE_RESOURCE:
        gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (mts->autopick_required_people_one_resource_item), TRUE);
        break;
    }
}

void
e_meeting_time_selector_set_read_only (EMeetingTimeSelector *mts,
                                       gboolean read_only)
{
    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    gtk_widget_set_sensitive (GTK_WIDGET (mts->list_view), !read_only);
    gtk_widget_set_sensitive (mts->display_main, !read_only);
    gtk_widget_set_sensitive (mts->add_attendees_button, !read_only);
    gtk_widget_set_sensitive (mts->autopick_down_button, !read_only);
    gtk_widget_set_sensitive (mts->autopick_button, !read_only);
    gtk_widget_set_sensitive (mts->autopick_up_button, !read_only);
    gtk_widget_set_sensitive (mts->start_date_edit, !read_only);
    gtk_widget_set_sensitive (mts->end_date_edit, !read_only);
}

/*
 * DEBUGGING ROUTINES - functions to output various bits of data.
 */

#ifdef E_MEETING_TIME_SELECTOR_DEBUG

/* Debugging function to dump information on all attendees. */
void
e_meeting_time_selector_dump (EMeetingTimeSelector *mts)
{
    EMeetingTimeSelectorAttendee *attendee;
    EMeetingTimeSelectorPeriod *period;
    gint row, period_num;
    gchar buffer[128];

    g_return_if_fail (E_IS_MEETING_TIME_SELECTOR (mts));

    g_print ("\n\nAttendee Information:\n");

    for (row = 0; row < mts->attendees->len; row++) {
        attendee = &g_array_index (mts->attendees,
                       EMeetingTimeSelectorAttendee, row);
        g_print ("Attendee: %s\n", attendee->name);
        g_print ("  Longest Busy Period: %i days\n",
             attendee->longest_period_in_days);

        e_meeting_time_selector_attendee_ensure_periods_sorted (mts, attendee);
#if 1
        for (period_num = 0;
             period_num < attendee->busy_periods->len;
             period_num++) {
            period = &g_array_index (attendee->busy_periods,
                         EMeetingTimeSelectorPeriod,
                         period_num);

            /* These are just for debugging so don't need i18n. */
            g_date_strftime (buffer, sizeof (buffer),
                     "%A, %B %d, %Y", &period->start.date);
            g_print ("  Start: %s %i:%02i\n", buffer,
                 period->start.hour, period->start.minute);

            g_date_strftime (buffer, sizeof (buffer),
                     "%A, %B %d, %Y", &period->end.date);
            g_print ("  End  : %s %i:%02i\n", buffer,
                 period->end.hour, period->end.minute);
        }
#endif
    }

}

/* This formats a EMeetingTimein a string and returns it.
 * Note that it uses a static buffer. */
gchar *
e_meeting_time_selector_dump_time (EMeetingTime *mtstime)
{
    static gchar buffer[128];

    gchar buffer2[128];

    /* This is just for debugging so doesn't need i18n. */
    g_date_strftime (buffer, sizeof (buffer), "%A, %B %d, %Y",
             &mtstime->date);
    sprintf (buffer2, " at %i:%02i", (gint) mtstime->hour,
         (gint) mtstime->minute);
    strcat (buffer, buffer2);

    return buffer;
}

/* This formats a GDate in a string and returns it.
 * Note that it uses a static buffer. */
gchar *
e_meeting_time_selector_dump_date (GDate *date)
{
    static gchar buffer[128];

    /* This is just for debugging so doesn't need i18n. */
    g_date_strftime (buffer, sizeof (buffer), "%A, %B %d, %Y", date);
    return buffer;
}

#endif /* E_MEETING_TIME_SELECTOR_DEBUG */

static void
e_meeting_time_selector_on_invite_others_button_clicked (GtkWidget *button,
                                                         EMeetingTimeSelector *mts)
{
    e_meeting_list_view_invite_others_dialog (mts->list_view);
}

static void
e_meeting_time_selector_on_options_button_clicked (GtkWidget *button,
                                                   EMeetingTimeSelector *mts)
{
    gtk_menu_popup (GTK_MENU (mts->options_menu), NULL, NULL,
            e_meeting_time_selector_options_menu_position_callback,
            mts, 1, GDK_CURRENT_TIME);
}

static void
e_meeting_time_selector_options_menu_position_callback (GtkMenu *menu,
                                                        gint *x,
                                                        gint *y,
                                                        gboolean *push_in,
                                                        gpointer user_data)
{
    EMeetingTimeSelector *mts;
    GtkRequisition menu_requisition;
    GtkAllocation allocation;
    GtkWidget *widget;
    GdkWindow *window;
    gint max_x, max_y;

    mts = E_MEETING_TIME_SELECTOR (user_data);

    /* Calculate our preferred position. */
    widget = mts->options_button;
    window = gtk_widget_get_window (widget);
    gdk_window_get_origin (window, x, y);
    gtk_widget_get_allocation (widget, &allocation);
    *x += allocation.x;
    *y += allocation.y + allocation.height - 2;

    /* Now make sure we are on the screen. */
    gtk_widget_get_preferred_size (mts->options_menu, &menu_requisition, NULL);
    max_x = MAX (0, gdk_screen_width () - menu_requisition.width);
    max_y = MAX (0, gdk_screen_height () - menu_requisition.height);
    *x = CLAMP (*x, 0, max_x);
    *y = CLAMP (*y, 0, max_y);
}

static void
e_meeting_time_selector_on_update_free_busy (GtkWidget *button,
                                             EMeetingTimeSelector *mts)
{
    /* Make sure the menu pops down, which doesn't happen by default if
     * keyboard accelerators are used. */
    if (gtk_widget_get_visible (mts->options_menu))
        gtk_menu_popdown (GTK_MENU (mts->options_menu));

    e_meeting_time_selector_refresh_free_busy (mts, 0, TRUE);
}

static void
e_meeting_time_selector_on_autopick_button_clicked (GtkWidget *button,
                                                    EMeetingTimeSelector *mts)
{
    gtk_menu_popup (GTK_MENU (mts->autopick_menu), NULL, NULL,
            e_meeting_time_selector_autopick_menu_position_callback,
            mts, 1, GDK_CURRENT_TIME);
}

static void
e_meeting_time_selector_autopick_menu_position_callback (GtkMenu *menu,
                                                         gint *x,
                                                         gint *y,
                                                         gboolean *push_in,
                                                         gpointer user_data)
{
    EMeetingTimeSelector *mts;
    GtkRequisition menu_requisition;
    GtkAllocation allocation;
    GtkWidget *widget;
    GdkWindow *window;
    gint max_x, max_y;

    mts = E_MEETING_TIME_SELECTOR (user_data);

    /* Calculate our preferred position. */
    widget = mts->autopick_button;
    window = gtk_widget_get_window (widget);
    gdk_window_get_origin (window, x, y);
    gtk_widget_get_allocation (widget, &allocation);
    *x += allocation.x;
    *y += allocation.y + allocation.height - 2;

    /* Now make sure we are on the screen. */
    gtk_widget_get_preferred_size (mts->autopick_menu, &menu_requisition, NULL);
    max_x = MAX (0, gdk_screen_width () - menu_requisition.width);
    max_y = MAX (0, gdk_screen_height () - menu_requisition.height);
    *x = CLAMP (*x, 0, max_x);
    *y = CLAMP (*y, 0, max_y);
}

static void
e_meeting_time_selector_on_autopick_option_toggled (GtkWidget *button,
                                                    EMeetingTimeSelector *mts)
{
    /* Make sure the menu pops down, which doesn't happen by default if
     * keyboard accelerators are used. */
    if (gtk_widget_get_visible (mts->autopick_menu))
        gtk_menu_popdown (GTK_MENU (mts->autopick_menu));
}

static void
e_meeting_time_selector_on_prev_button_clicked (GtkWidget *button,
                                                EMeetingTimeSelector *mts)
{
    e_meeting_time_selector_autopick (mts, FALSE);
}

static void
e_meeting_time_selector_on_next_button_clicked (GtkWidget *button,
                                                EMeetingTimeSelector *mts)
{
    e_meeting_time_selector_autopick (mts, TRUE);
}

/* This tries to find the previous or next meeting time for which all
 * attendees will be available. */
static void
e_meeting_time_selector_autopick (EMeetingTimeSelector *mts,
                                  gboolean forward)
{
    EMeetingTime start_time, end_time, *resource_free;
    EMeetingAttendee *attendee;
    EMeetingFreeBusyPeriod *period;
    EMeetingTimeSelectorAutopickOption autopick_option;
    gint duration_days, duration_hours, duration_minutes, row;
    gboolean meeting_time_ok, skip_optional = FALSE;
    gboolean need_one_resource = FALSE, found_resource;

    /* Get the current meeting duration in days + hours + minutes. */
    e_meeting_time_selector_calculate_time_difference (&mts->meeting_start_time, &mts->meeting_end_time, &duration_days, &duration_hours, &duration_minutes);

    /* Find the first appropriate start time. */
    start_time = mts->meeting_start_time;
    if (forward)
        e_meeting_time_selector_find_nearest_interval (mts, &start_time, &end_time, duration_days, duration_hours, duration_minutes);
    else
        e_meeting_time_selector_find_nearest_interval_backward (mts, &start_time, &end_time, duration_days, duration_hours, duration_minutes);

    /* Determine if we can skip optional people and if we only need one
     * resource based on the autopick option. */
    autopick_option = e_meeting_time_selector_get_autopick_option (mts);
    if (autopick_option == E_MEETING_TIME_SELECTOR_REQUIRED_PEOPLE
        || autopick_option == E_MEETING_TIME_SELECTOR_REQUIRED_PEOPLE_AND_ONE_RESOURCE)
        skip_optional = TRUE;
    if (autopick_option == E_MEETING_TIME_SELECTOR_ALL_PEOPLE_AND_ONE_RESOURCE
        || autopick_option == E_MEETING_TIME_SELECTOR_REQUIRED_PEOPLE_AND_ONE_RESOURCE)
        need_one_resource = TRUE;

    /* Keep moving forward or backward until we find a possible meeting
     * time. */
    for (;;) {
        meeting_time_ok = TRUE;
        found_resource = FALSE;
        resource_free = NULL;

        /* Step through each attendee, checking if the meeting time
         * intersects one of the attendees busy periods. */
        for (row = 0; row <  e_meeting_store_count_actual_attendees (mts->model); row++) {
            attendee = e_meeting_store_find_attendee_at_row (mts->model, row);

            /* Skip optional people if they don't matter. */
            if (skip_optional && e_meeting_attendee_get_atype (attendee) == E_MEETING_ATTENDEE_OPTIONAL_PERSON)
                continue;

            period = e_meeting_time_selector_find_time_clash (mts, attendee, &start_time, &end_time);

            if (need_one_resource && e_meeting_attendee_get_atype (attendee) == E_MEETING_ATTENDEE_RESOURCE) {
                if (period) {
                    /* We want to remember the closest
                     * prev/next time that one resource is
                     * available, in case we don't find any
                     * free resources. */
                    if (forward) {
                        if (!resource_free || e_meeting_time_compare_times (resource_free, &period->end) > 0)
                            resource_free = &period->end;
                    } else {
                        if (!resource_free || e_meeting_time_compare_times (resource_free, &period->start) < 0)
                            resource_free = &period->start;
                    }

                } else {
                    found_resource = TRUE;
                }
            } else if (period) {
                /* Skip the period which clashed. */
                if (forward) {
                    start_time = period->end;
                } else {
                    start_time = period->start;
                    e_meeting_time_selector_adjust_time (&start_time, -duration_days, -duration_hours, -duration_minutes);
                }
                meeting_time_ok = FALSE;
                break;
            }
        }

        /* Check that we found one resource if necessary. If not, skip
         * to the closest time that a resource is free. Note that if
         * there are no resources, resource_free will never get set,
         * so we assume the meeting time is OK. */
        if (meeting_time_ok && need_one_resource && !found_resource
            && resource_free) {
            if (forward) {
                start_time = *resource_free;
            } else {
                start_time = *resource_free;
                e_meeting_time_selector_adjust_time (&start_time, -duration_days, -duration_hours, -duration_minutes);
            }
            meeting_time_ok = FALSE;
        }

        if (meeting_time_ok) {
            mts->meeting_start_time = start_time;
            mts->meeting_end_time = end_time;
            mts->meeting_positions_valid = FALSE;
            gtk_widget_queue_draw (mts->display_top);
            gtk_widget_queue_draw (mts->display_main);

            /* Make sure the time is shown. */
            e_meeting_time_selector_ensure_meeting_time_shown (mts);

            /* Set the times in the EDateEdit widgets. */
            e_meeting_time_selector_update_start_date_edit (mts);
            e_meeting_time_selector_update_end_date_edit (mts);

            g_signal_emit (mts, signals[CHANGED], 0);

            return;
        }

        /* Move forward to the next possible interval. */
        if (forward)
            e_meeting_time_selector_find_nearest_interval (mts, &start_time, &end_time, duration_days, duration_hours, duration_minutes);
        else
            e_meeting_time_selector_find_nearest_interval_backward (mts, &start_time, &end_time, duration_days, duration_hours, duration_minutes);
    }
}

static void
e_meeting_time_selector_calculate_time_difference (EMeetingTime *start,
                                                   EMeetingTime *end,
                                                   gint *days,
                                                   gint *hours,
                                                   gint *minutes)
{
    *days = g_date_get_julian (&end->date) - g_date_get_julian (&start->date);
    *hours = end->hour - start->hour;
    *minutes = end->minute - start->minute;
    if (*minutes < 0) {
        *minutes += 60;
        *hours = *hours - 1;
    }
    if (*hours < 0) {
        *hours += 24;
        *days = *days - 1;
    }
}

/* This moves the given time forward to the next suitable start of a meeting.
 * If zoomed_out is set, this means every hour. If not every half-hour. */
static void
e_meeting_time_selector_find_nearest_interval (EMeetingTimeSelector *mts,
                                               EMeetingTime *start_time,
                                               EMeetingTime *end_time,
                                               gint days,
                                               gint hours,
                                               gint mins)
{
    gint minutes_shown;
    gboolean set_to_start_of_working_day = FALSE;

    if (!mts->all_day) {
        if (mts->zoomed_out) {
            start_time->hour++;
            start_time->minute = 0;
        } else {
            start_time->minute += 30;
            start_time->minute -= start_time->minute % 30;
        }
    } else {
        g_date_add_days (&start_time->date, 1);
        start_time->hour = 0;
        start_time->minute = 0;
    }
    e_meeting_time_selector_fix_time_overflows (start_time);

    *end_time = *start_time;
    e_meeting_time_selector_adjust_time (end_time, days, hours, mins);

    /* Check if the interval is less than a day as seen in the display.
     * If it isn't we don't worry about the working day. */
    if (!mts->working_hours_only || days > 0)
        return;
    minutes_shown = (mts->day_end_hour - mts->day_start_hour) * 60;
    minutes_shown += mts->day_end_minute - mts->day_start_minute;
    if (hours * 60 + mins > minutes_shown)
        return;

    /* If the meeting time finishes past the end of the working day, move
     * onto the start of the next working day. If the meeting time starts
     * before the working day, move it on as well. */
    if (start_time->hour > mts->day_end_hour
        || (start_time->hour == mts->day_end_hour
        && start_time->minute > mts->day_end_minute)
        || end_time->hour > mts->day_end_hour
        || (end_time->hour == mts->day_end_hour
        && end_time->minute > mts->day_end_minute)) {
        g_date_add_days (&start_time->date, 1);
        set_to_start_of_working_day = TRUE;
    } else if (start_time->hour < mts->day_start_hour
           || (start_time->hour == mts->day_start_hour
               && start_time->minute < mts->day_start_minute)) {
        set_to_start_of_working_day = TRUE;
    }

    if (set_to_start_of_working_day) {
        start_time->hour = mts->day_start_hour;
        start_time->minute = mts->day_start_minute;

        if (mts->zoomed_out) {
            if (start_time->minute > 0) {
                start_time->hour++;
                start_time->minute = 0;
            }
        } else {
            start_time->minute += 29;
            start_time->minute -= start_time->minute % 30;
        }

        e_meeting_time_selector_fix_time_overflows (start_time);

        *end_time = *start_time;
        e_meeting_time_selector_adjust_time (end_time, days, hours, mins);
    }
}

/* This moves the given time backward to the next suitable start of a meeting.
 * If zoomed_out is set, this means every hour. If not every half-hour. */
static void
e_meeting_time_selector_find_nearest_interval_backward (EMeetingTimeSelector *mts,
                                                        EMeetingTime *start_time,
                                                        EMeetingTime *end_time,
                                                        gint days,
                                                        gint hours,
                                                        gint mins)
{
    gint new_hour, minutes_shown;
    gboolean set_to_end_of_working_day = FALSE;

    if (!mts->all_day) {
        new_hour = start_time->hour;
        if (mts->zoomed_out) {
            if (start_time->minute == 0)
                new_hour--;
            start_time->minute = 0;
        } else {
            if (start_time->minute == 0) {
                start_time->minute = 30;
                new_hour--;
            } else if (start_time->minute <= 30)
                start_time->minute = 0;
            else
                start_time->minute = 30;
        }
        if (new_hour < 0) {
            new_hour += 24;
            g_date_subtract_days (&start_time->date, 1);
        }
        start_time->hour = new_hour;
    } else {
        g_date_subtract_days (&start_time->date, 1);
        start_time->hour = 0;
        start_time->minute = 0;
    }

    *end_time = *start_time;
    e_meeting_time_selector_adjust_time (end_time, days, hours, mins);

    /* Check if the interval is less than a day as seen in the display.
     * If it isn't we don't worry about the working day. */
    if (!mts->working_hours_only || days > 0)
        return;
    minutes_shown = (mts->day_end_hour - mts->day_start_hour) * 60;
    minutes_shown += mts->day_end_minute - mts->day_start_minute;
    if (hours * 60 + mins > minutes_shown)
        return;

    /* If the meeting time finishes past the end of the working day, move
     * back to the end of the working day. If the meeting time starts
     * before the working day, move it back to the end of the previous
     * working day. */
    if (start_time->hour > mts->day_end_hour
        || (start_time->hour == mts->day_end_hour
        && start_time->minute > mts->day_end_minute)
        || end_time->hour > mts->day_end_hour
        || (end_time->hour == mts->day_end_hour
        && end_time->minute > mts->day_end_minute)) {
        set_to_end_of_working_day = TRUE;
    } else if (start_time->hour < mts->day_start_hour
           || (start_time->hour == mts->day_start_hour
               && start_time->minute < mts->day_start_minute)) {
        g_date_subtract_days (&end_time->date, 1);
        set_to_end_of_working_day = TRUE;
    }

    if (set_to_end_of_working_day) {
        end_time->hour = mts->day_end_hour;
        end_time->minute = mts->day_end_minute;
        *start_time = *end_time;
        e_meeting_time_selector_adjust_time (start_time, -days, -hours, -mins);

        if (mts->zoomed_out) {
            start_time->minute = 0;
        } else {
            start_time->minute -= start_time->minute % 30;
        }

        *end_time = *start_time;
        e_meeting_time_selector_adjust_time (end_time, days, hours, mins);
    }
}

/* This adds on the given days, hours & minutes to a EMeetingTimeSelectorTime.
 * It is used to calculate the end of a period given a start & duration.
 * Days, hours & minutes can be negative, to move backwards, but they should
 * be within normal ranges, e.g. hours should be between -23 and 23. */
static void
e_meeting_time_selector_adjust_time (EMeetingTime *mtstime,
                                     gint days,
                                     gint hours,
                                     gint minutes)
{
    gint new_hours, new_minutes;

    /* We have to handle negative values for hous and minutes here, since
     * EMeetingTimeuses guint8s to store them. */
    new_minutes = mtstime->minute + minutes;
    if (new_minutes < 0) {
        new_minutes += 60;
        hours -= 1;
    }

    new_hours = mtstime->hour + hours;
    if (new_hours < 0) {
        new_hours += 24;
        days -= 1;
    }

    g_date_add_days (&mtstime->date, days);
    mtstime->hour = new_hours;
    mtstime->minute = new_minutes;

    e_meeting_time_selector_fix_time_overflows (mtstime);
}

/* This looks for any busy period of the given attendee which clashes with
 * the start and end time. It uses a binary search. */
static EMeetingFreeBusyPeriod *
e_meeting_time_selector_find_time_clash (EMeetingTimeSelector *mts,
                                         EMeetingAttendee *attendee,
                                         EMeetingTime *start_time,
                                         EMeetingTime *end_time)
{
    EMeetingFreeBusyPeriod *period;
    const GArray *busy_periods;
    gint period_num;

    busy_periods = e_meeting_attendee_get_busy_periods (attendee);
    period_num = e_meeting_attendee_find_first_busy_period (attendee, &start_time->date);

    if (period_num == -1)
        return NULL;

    /* Step forward through the busy periods until we find a clash or we
     * go past the end_time. */
    while (period_num < busy_periods->len) {
        period = &g_array_index (busy_periods,  EMeetingFreeBusyPeriod, period_num);

        /* If the period starts at or after the end time, there is no
         * clash and we are finished. The busy periods are sorted by
         * their start times, so all the rest will be later. */
        if (e_meeting_time_compare_times (&period->start, end_time) >= 0)
            return NULL;

        /* If the period ends after the start time, we have found a
         * clash. From the above test we already know the busy period
         * isn't completely after the meeting time. */
        if (e_meeting_time_compare_times (&period->end, start_time) > 0)
            return period;

        period_num++;
    }

    return NULL;
}

static void
e_meeting_time_selector_on_zoomed_out_toggled (GtkCheckMenuItem *menuitem,
                                               EMeetingTimeSelector *mts)
{
    gboolean active;

    /* Make sure the menu pops down, which doesn't happen by default if
     * keyboard accelerators are used. */
    if (gtk_widget_get_visible (mts->options_menu))
        gtk_menu_popdown (GTK_MENU (mts->options_menu));

    active = gtk_check_menu_item_get_active (menuitem);
    e_meeting_time_selector_set_zoomed_out (mts, active);
    e_meeting_time_selector_ensure_meeting_time_shown (mts);
}

static void
e_meeting_time_selector_on_working_hours_toggled (GtkCheckMenuItem *menuitem,
                                                  EMeetingTimeSelector *mts)
{
    gboolean active;

    /* Make sure the menu pops down, which doesn't happen by default if
     * keyboard accelerators are used. */
    if (gtk_widget_get_visible (mts->options_menu))
        gtk_menu_popdown (GTK_MENU (mts->options_menu));

    active = gtk_check_menu_item_get_active (menuitem);
    e_meeting_time_selector_set_working_hours_only (mts, active);
    e_meeting_time_selector_ensure_meeting_time_shown (mts);
}

/* This recalculates day_width, first_hour_shown and last_hour_shown. */
static void
e_meeting_time_selector_recalc_grid (EMeetingTimeSelector *mts)
{
    if (mts->working_hours_only) {
        mts->first_hour_shown = mts->day_start_hour;
        mts->last_hour_shown = mts->day_end_hour;
        if (mts->day_end_minute != 0)
            mts->last_hour_shown += 1;
    } else {
        mts->first_hour_shown = 0;
        mts->last_hour_shown = 24;
    }

    /* In the brief view we use the nearest hours divisible by 3. */
    if (mts->zoomed_out) {
        mts->first_hour_shown -= mts->first_hour_shown % 3;
        mts->last_hour_shown += 2;
        mts->last_hour_shown -= mts->last_hour_shown % 3;
    }

    mts->day_width = mts->col_width * (mts->last_hour_shown - mts->first_hour_shown);
    if (mts->zoomed_out)
        mts->day_width /= 3;

    /* Add one pixel for the extra vertical grid line. */
    mts->day_width++;

    gnome_canvas_set_scroll_region (GNOME_CANVAS (mts->display_top),
                    0, 0,
                    mts->day_width * E_MEETING_TIME_SELECTOR_DAYS_SHOWN,
                    mts->row_height * 3);
    e_meeting_time_selector_update_main_canvas_scroll_region (mts);

    e_meeting_time_selector_recalc_date_format (mts);
    mts->meeting_positions_valid = FALSE;
}

/* This saves the first visible time in the given EMeetingTimeSelectorTime. */
static void
e_meeting_time_selector_save_position (EMeetingTimeSelector *mts,
                                       EMeetingTime *mtstime)
{
    gint scroll_x, scroll_y;

    gnome_canvas_get_scroll_offsets (GNOME_CANVAS (mts->display_main),
                     &scroll_x, &scroll_y);
    e_meeting_time_selector_calculate_time (mts, scroll_x, mtstime);
}

/* This restores a saved position. */
static void
e_meeting_time_selector_restore_position (EMeetingTimeSelector *mts,
                                          EMeetingTime *mtstime)
{
    gint scroll_x, scroll_y, new_scroll_x;

    new_scroll_x = e_meeting_time_selector_calculate_time_position (mts,
                                    mtstime);
    gnome_canvas_get_scroll_offsets (GNOME_CANVAS (mts->display_main),
                     &scroll_x, &scroll_y);
    gnome_canvas_scroll_to (GNOME_CANVAS (mts->display_main),
                new_scroll_x, scroll_y);
}

/* This returns the x pixel coords of the meeting time in the entire scroll
 * region. It recalculates them if they have been marked as invalid.
 * If it returns FALSE then no meeting time is set or the meeting time is
 * not visible in the current scroll area. */
gboolean
e_meeting_time_selector_get_meeting_time_positions (EMeetingTimeSelector *mts,
                                                    gint *start_x,
                                                    gint *end_x)
{
    if (mts->meeting_positions_valid) {
        if (mts->meeting_positions_in_scroll_area) {
            *start_x = mts->meeting_start_x;
            *end_x = mts->meeting_end_x;
            return TRUE;
        } else {
            return FALSE;
        }
    }

    mts->meeting_positions_valid = TRUE;

    /* Check if the days aren't in our current range. */
    if (g_date_compare (&mts->meeting_start_time.date, &mts->last_date_shown) > 0
        || g_date_compare (&mts->meeting_end_time.date, &mts->first_date_shown) < 0) {
        mts->meeting_positions_in_scroll_area = FALSE;
        return FALSE;
    }

    mts->meeting_positions_in_scroll_area = TRUE;
    *start_x = mts->meeting_start_x = e_meeting_time_selector_calculate_time_position (mts, &mts->meeting_start_time);
    *end_x = mts->meeting_end_x = e_meeting_time_selector_calculate_time_position (mts, &mts->meeting_end_time);

    return TRUE;
}

/* This recalculates the date format to used, by computing the width of the
 * longest date strings in the widget's font and seeing if they fit. */
static void
e_meeting_time_selector_recalc_date_format (EMeetingTimeSelector *mts)
{
    /* An array of dates, one for each month in the year 2000. They must
     * all be Sundays. */
    static const gint days[12] = { 23, 20, 19, 23, 21, 18,
                      23, 20, 17, 22, 19, 24 };
    GDate date;
    gint max_date_width, longest_weekday_width, longest_month_width, width;
    gint day, longest_weekday, month, longest_month;
    gchar buffer[128], *str;
    const gchar *name;
    PangoContext *pango_context;
    PangoLayout *layout;
    struct tm tm_time;

    /* Set up Pango prerequisites */
    pango_context = gtk_widget_get_pango_context (GTK_WIDGET (mts));
    layout = pango_layout_new (pango_context);

    /* Calculate the maximum date width we can fit into the display. */
    max_date_width = mts->day_width - 2;

    /* Find the biggest full weekday name. We start on a particular
     * Monday and go through seven days. */
    g_date_clear (&date, 1);
    g_date_set_dmy (&date, 3, 1, 2000); /* Monday 3rd Jan 2000. */
    longest_weekday_width = 0;
    longest_weekday = G_DATE_MONDAY;
    for (day = G_DATE_MONDAY; day <= G_DATE_SUNDAY; day++) {
        name = e_get_weekday_name (day, FALSE);
        pango_layout_set_text (layout, name, -1);
        pango_layout_get_pixel_size (layout, &width, NULL);
        if (width > longest_weekday_width) {
            longest_weekday = day;
            longest_weekday_width = width;
        }
    }

    /* Now find the biggest month name. */
    longest_month_width = 0;
    longest_month = G_DATE_JANUARY;
    for (month = G_DATE_JANUARY; month <= G_DATE_DECEMBER; month++) {
        name = e_get_month_name (month, FALSE);
        pango_layout_set_text (layout, name, -1);
        pango_layout_get_pixel_size (layout, &width, NULL);
        if (width > longest_month_width) {
            longest_month = month;
            longest_month_width = width;
        }
    }

    /* Now try it with abbreviated weekday names. */
    longest_weekday_width = 0;
    longest_weekday = G_DATE_MONDAY;
    for (day = G_DATE_MONDAY; day <= G_DATE_SUNDAY; day++) {
        name = e_get_weekday_name (day, TRUE);
        pango_layout_set_text (layout, name, -1);
        pango_layout_get_pixel_size (layout, &width, NULL);
        if (width > longest_weekday_width) {
            longest_weekday = day;
            longest_weekday_width = width;
        }
    }

    g_date_set_dmy (&date, days[longest_month - 1] + longest_weekday,
            longest_month, 2000);

    g_date_to_struct_tm (&date, &tm_time);
    str = e_datetime_format_format_tm ("calendar", "table",  DTFormatKindDate, &tm_time);

    g_return_if_fail (str != NULL);

    if (!e_datetime_format_includes_day_name ("calendar", "table",  DTFormatKindDate)) {
        gchar *tmp;

        g_date_strftime (buffer, sizeof (buffer), "%a", &date);

        tmp = str;
        str = g_strconcat (buffer, " ", str, NULL);
        g_free (tmp);
    }

#if 0
    g_print ("longest_month: %i longest_weekday: %i date: %s\n",
         longest_month, longest_weekday, str);
#endif

    pango_layout_set_text (layout, str, -1);
    pango_layout_get_pixel_size (layout, &width, NULL);
    if (width < max_date_width)
        mts->date_format = E_MEETING_TIME_SELECTOR_DATE_ABBREVIATED_DAY;
    else
        mts->date_format = E_MEETING_TIME_SELECTOR_DATE_SHORT;

    g_object_unref (layout);
    g_free (str);
}

/* Turn off the background of the canvas windows. This reduces flicker
 * considerably when scrolling. (Why isn't it in GnomeCanvas?). */
static void
e_meeting_time_selector_on_canvas_realized (GtkWidget *widget,
                                            EMeetingTimeSelector *mts)
{
    GdkWindow *window;

    window = gtk_layout_get_bin_window (GTK_LAYOUT (widget));
    gdk_window_set_background_pattern (window, NULL);
}

/* This is called when the meeting start time GnomeDateEdit is changed,
 * either via the "date_changed". "time_changed" or "activate" signals on one
 * of the GtkEntry widgets. So don't use the widget parameter since it may be
 * one of the child GtkEntry widgets. */
static void
e_meeting_time_selector_on_start_time_changed (GtkWidget *widget,
                                               EMeetingTimeSelector *mts)
{
    gint duration_days, duration_hours, duration_minutes;
    EMeetingTime mtstime;
    gint hour = 0, minute = 0;
    time_t newtime;

    /* Date */
    newtime = e_date_edit_get_time (E_DATE_EDIT (mts->start_date_edit));
    g_date_clear (&mtstime.date, 1);
    g_date_set_time_t (&mtstime.date, newtime);

    /* Time */
    e_date_edit_get_time_of_day (E_DATE_EDIT (mts->start_date_edit), &hour, &minute);
    mtstime.hour = hour;
    mtstime.minute = minute;

    /* If the time hasn't changed, just return. */
    if (e_meeting_time_compare_times (&mtstime, &mts->meeting_start_time) == 0)
        return;

    /* Calculate the current meeting duration. */
    e_meeting_time_selector_calculate_time_difference (&mts->meeting_start_time, &mts->meeting_end_time, &duration_days, &duration_hours, &duration_minutes);

    /* Set the new start time. */
    mts->meeting_start_time = mtstime;

    /* Update the end time so the meeting duration stays the same. */
    mts->meeting_end_time = mts->meeting_start_time;
    e_meeting_time_selector_adjust_time (&mts->meeting_end_time, duration_days, duration_hours, duration_minutes);
    e_meeting_time_selector_update_end_date_edit (mts);

    mts->meeting_positions_valid = FALSE;
    e_meeting_time_selector_ensure_meeting_time_shown (mts);
    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);

    g_signal_emit (mts, signals[CHANGED], 0);
}

/* This is called when the meeting end time GnomeDateEdit is changed,
 * either via the "date_changed", "time_changed" or "activate" signals on one
 * of the GtkEntry widgets. So don't use the widget parameter since it may be
 * one of the child GtkEntry widgets. */
static void
e_meeting_time_selector_on_end_time_changed (GtkWidget *widget,
                                             EMeetingTimeSelector *mts)
{
    EMeetingTime mtstime;
    gint hour = 0, minute = 0;
    time_t newtime;

    /* Date */
    newtime = e_date_edit_get_time (E_DATE_EDIT (mts->end_date_edit));
    g_date_clear (&mtstime.date, 1);
    g_date_set_time_t (&mtstime.date, newtime);
    if (mts->all_day)
        g_date_add_days (&mtstime.date, 1);

    /* Time */
    e_date_edit_get_time_of_day (E_DATE_EDIT (mts->end_date_edit), &hour, &minute);
    mtstime.hour = hour;
    mtstime.minute = minute;

    /* If the time hasn't changed, just return. */
    if (e_meeting_time_compare_times (&mtstime, &mts->meeting_end_time) == 0)
        return;

    /* Set the new end time. */
    mts->meeting_end_time = mtstime;

    /* If the start time is after the end time, set it to the same time. */
    if (e_meeting_time_compare_times (&mtstime, &mts->meeting_start_time) <= 0) {
        /* We set it first, before updating the widget, so the signal
         * handler will just return. */
        mts->meeting_start_time = mtstime;
        if (mts->all_day)
            g_date_subtract_days (&mts->meeting_start_time.date, 1);
        e_meeting_time_selector_update_start_date_edit (mts);
    }

    mts->meeting_positions_valid = FALSE;
    e_meeting_time_selector_ensure_meeting_time_shown (mts);
    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);

    g_signal_emit (mts, signals[CHANGED], 0);
}

/* This updates the ranges shown in the GnomeDateEdit popup menus, according
 * to working_hours_only etc. */
static void
e_meeting_time_selector_update_date_popup_menus (EMeetingTimeSelector *mts)
{
    EDateEdit *start_edit, *end_edit;
    gint low_hour, high_hour;

    start_edit = E_DATE_EDIT (mts->start_date_edit);
    end_edit = E_DATE_EDIT (mts->end_date_edit);

    if (mts->working_hours_only) {
        low_hour = mts->day_start_hour;
        high_hour = mts->day_end_hour;
    } else {
        low_hour = 0;
        high_hour = 23;
    }

    e_date_edit_set_time_popup_range (start_edit, low_hour, high_hour);
    e_date_edit_set_time_popup_range (end_edit, low_hour, high_hour);
}

static void
e_meeting_time_selector_on_canvas_size_allocate (GtkWidget *widget,
                                                 GtkAllocation *allocation,
                                                 EMeetingTimeSelector *mts)
{
    e_meeting_time_selector_update_main_canvas_scroll_region (mts);

    e_meeting_time_selector_ensure_meeting_time_shown (mts);
}

static gboolean
e_meeting_time_selector_on_canvas_scroll_event (GtkWidget *widget,
                                                GdkEventScroll *event,
                                                EMeetingTimeSelector *mts)
{
    gboolean return_val = FALSE;

    /* escalate to the list view's parent, which is a scrolled window */
    g_signal_emit_by_name (gtk_widget_get_parent (GTK_WIDGET (mts->list_view)), "scroll-event", event, &return_val);

    return return_val;
}

/* This updates the canvas scroll regions according to the number of attendees.
 * If the total height needed is less than the height of the canvas, we must
 * use the height of the canvas, or it causes problems. */
static void
e_meeting_time_selector_update_main_canvas_scroll_region (EMeetingTimeSelector *mts)
{
    GtkAllocation allocation;
    gint height;

    gtk_widget_get_allocation (mts->display_main, &allocation);
    height = mts->row_height * (e_meeting_store_count_actual_attendees (mts->model) + 2);
    height = MAX (height, allocation.height);

    gnome_canvas_set_scroll_region (GNOME_CANVAS (mts->display_main),
                    0, 0,
                    mts->day_width * E_MEETING_TIME_SELECTOR_DAYS_SHOWN,
                    height);
}

/* This changes the meeting time based on the given x coordinate and whether
 * we are dragging the start or end bar. It returns the new position, which
 * will be swapped if the start bar is dragged past the end bar or vice versa.
 * It make sure the meeting time is never dragged outside the visible canvas
 * area. */
void
e_meeting_time_selector_drag_meeting_time (EMeetingTimeSelector *mts,
                                           gint x)
{
    EMeetingTime first_time, last_time, drag_time, *time_to_set;
    gint scroll_x, scroll_y, canvas_width;
    gboolean set_both_times = FALSE;
    GtkAllocation allocation;

    /* Get the x coords of visible part of the canvas. */
    gnome_canvas_get_scroll_offsets (GNOME_CANVAS (mts->display_main),
                     &scroll_x, &scroll_y);
    gtk_widget_get_allocation (mts->display_main, &allocation);
    canvas_width = allocation.width;

    /* Save the x coordinate for the timeout handler. */
    mts->last_drag_x = (x < scroll_x) ? x - scroll_x
        : x - scroll_x - canvas_width + 1;

    /* Check if the mouse is off the edge of the canvas. */
    if (x < scroll_x || x > scroll_x + canvas_width) {
        /* If we haven't added a timeout function, add one. */
        if (mts->auto_scroll_timeout_id == 0) {
            mts->auto_scroll_timeout_id = g_timeout_add (60, e_meeting_time_selector_timeout_handler, mts);
            mts->scroll_count = 0;

            /* Call the handler to start scrolling now. */
            e_meeting_time_selector_timeout_handler (mts);
            return;
        }
    } else {
        e_meeting_time_selector_remove_timeout (mts);
    }

    /* Calculate the minimum & maximum times we can use, based on the
     * scroll offsets and whether zoomed_out is set. */
    e_meeting_time_selector_calculate_time (mts, scroll_x, &first_time);
    e_meeting_time_selector_calculate_time (mts, scroll_x + canvas_width - 1,
                        &last_time);
    if (!mts->all_day) {
        if (mts->zoomed_out) {
            if (first_time.minute > 30)
                first_time.hour++;
            first_time.minute = 0;
            last_time.minute = 0;
        } else {
            first_time.minute += 15;
            first_time.minute -= first_time.minute % 30;
            last_time.minute -= last_time.minute % 30;
        }
    } else {
        if (first_time.hour > 0 || first_time.minute > 0)
            g_date_add_days (&first_time.date, 1);
        first_time.hour = 0;
        first_time.minute = 0;
        last_time.hour = 0;
        last_time.minute = 0;
    }
    e_meeting_time_selector_fix_time_overflows (&first_time);
    e_meeting_time_selector_fix_time_overflows (&last_time);

    /* Calculate the time from x coordinate. */
    e_meeting_time_selector_calculate_time (mts, x, &drag_time);

    /* Calculate the nearest half-hour or hour, depending on whether
     * zoomed_out is set. */
    if (!mts->all_day) {
        if (mts->zoomed_out) {
            if (drag_time.minute > 30)
                drag_time.hour++;
            drag_time.minute = 0;
        } else {
            drag_time.minute += 15;
            drag_time.minute -= drag_time.minute % 30;
        }
    } else {
        if (drag_time.hour > 12)
            g_date_add_days (&drag_time.date, 1);
        drag_time.hour = 0;
        drag_time.minute = 0;
    }
    e_meeting_time_selector_fix_time_overflows (&drag_time);

    /* Now make sure we are between first_time & last_time. */
    if (e_meeting_time_compare_times (&drag_time, &first_time) < 0)
        drag_time = first_time;
    if (e_meeting_time_compare_times (&drag_time, &last_time) > 0)
        drag_time = last_time;

    /* Set the meeting start or end time to drag_time. */
    if (mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START)
        time_to_set = &mts->meeting_start_time;
    else
        time_to_set = &mts->meeting_end_time;

    /* If the time is unchanged, just return. */
    if (e_meeting_time_compare_times (time_to_set, &drag_time) == 0)
        return;

    /* Don't let an empty occur for all day events */
    if (mts->all_day
        && mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START
        && e_meeting_time_compare_times (&mts->meeting_end_time, &drag_time) == 0)
        return;
    else if (mts->all_day
         && mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_END
         && e_meeting_time_compare_times (&mts->meeting_start_time, &drag_time) == 0)
        return;

    *time_to_set = drag_time;

    /* Check if the start time and end time need to be switched. */
    if (e_meeting_time_compare_times (&mts->meeting_start_time,
                      &mts->meeting_end_time) > 0) {
        drag_time = mts->meeting_start_time;
        mts->meeting_start_time = mts->meeting_end_time;
        mts->meeting_end_time = drag_time;

        if (mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START)
            mts->dragging_position = E_MEETING_TIME_SELECTOR_POS_END;
        else
            mts->dragging_position = E_MEETING_TIME_SELECTOR_POS_START;

        set_both_times = TRUE;
    }

    /* Mark the calculated positions as invalid. */
    mts->meeting_positions_valid = FALSE;

    /* Redraw the canvases. */
    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);

    /* Set the times in the GnomeDateEdit widgets. */
    if (set_both_times
        || mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START)
        e_meeting_time_selector_update_start_date_edit (mts);

    if (set_both_times
        || mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_END)
        e_meeting_time_selector_update_end_date_edit (mts);

    if (set_both_times
        || mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_END
        || mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START)
        g_signal_emit (mts, signals[CHANGED], 0);
}

/* This is the timeout function which handles auto-scrolling when the user is
 * dragging one of the meeting time vertical bars outside the left or right
 * edge of the canvas. */
static gboolean
e_meeting_time_selector_timeout_handler (gpointer data)
{
    EMeetingTimeSelector *mts;
    EMeetingTime drag_time, *time_to_set;
    gint scroll_x, max_scroll_x, scroll_y, canvas_width;
    gint scroll_speed, scroll_offset;
    gboolean set_both_times = FALSE;
    GtkAllocation allocation;

    mts = E_MEETING_TIME_SELECTOR (data);

    GDK_THREADS_ENTER ();

    /* Return if we don't need to scroll yet. */
    if (mts->scroll_count-- > 0) {
        GDK_THREADS_LEAVE ();
        return TRUE;
    }

    /* Get the x coords of visible part of the canvas. */
    gnome_canvas_get_scroll_offsets (GNOME_CANVAS (mts->display_main),
                     &scroll_x, &scroll_y);
    gtk_widget_get_allocation (mts->display_main, &allocation);
    canvas_width = allocation.width;

    /* Calculate the scroll delay, between 0 and MAX_SCROLL_SPEED. */
    scroll_speed = abs (mts->last_drag_x / E_MEETING_TIME_SELECTOR_SCROLL_INCREMENT_WIDTH);
    scroll_speed = MIN (scroll_speed,
                E_MEETING_TIME_SELECTOR_MAX_SCROLL_SPEED);

    /* Reset the scroll count. */
    mts->scroll_count = E_MEETING_TIME_SELECTOR_MAX_SCROLL_SPEED - scroll_speed;

    /* Calculate how much we need to scroll. */
    if (mts->last_drag_x >= 0)
        scroll_offset = mts->col_width;
    else
        scroll_offset = -mts->col_width;

    scroll_x += scroll_offset;
    max_scroll_x = (mts->day_width * E_MEETING_TIME_SELECTOR_DAYS_SHOWN)
        - canvas_width;
    scroll_x = CLAMP (scroll_x, 0, max_scroll_x);

    /* Calculate the minimum or maximum visible time in the canvas, which
     * we will now set the dragged time to. */
    if (scroll_offset > 0) {
        e_meeting_time_selector_calculate_time (mts,
                            scroll_x + canvas_width - 1,
                            &drag_time);
        if (!mts->all_day) {
            if (mts->zoomed_out) {
                drag_time.minute = 0;
            } else {
                drag_time.minute -= drag_time.minute % 30;
            }
        } else {
            drag_time.hour = 0;
            drag_time.minute = 0;
        }
    } else {
        e_meeting_time_selector_calculate_time (mts, scroll_x,
                            &drag_time);
        if (!mts->all_day) {
            if (mts->zoomed_out) {
                if (drag_time.minute > 30)
                    drag_time.hour++;
                drag_time.minute = 0;
            } else {
                drag_time.minute += 15;
                drag_time.minute -= drag_time.minute % 30;
            }
        } else {
            if (drag_time.hour > 0 || drag_time.minute > 0)
                g_date_add_days (&drag_time.date, 1);
            drag_time.hour = 0;
            drag_time.minute = 0;
        }
    }
    e_meeting_time_selector_fix_time_overflows (&drag_time);

    /* Set the meeting start or end time to drag_time. */
    if (mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START)
        time_to_set = &mts->meeting_start_time;
    else
        time_to_set = &mts->meeting_end_time;

    /* If the time is unchanged, just return. */
    if (e_meeting_time_compare_times (time_to_set, &drag_time) == 0) {
        GDK_THREADS_LEAVE ();
        goto scroll;
    }

    /* Don't let an empty occur for all day events */
    if (mts->all_day
        && mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START
        && e_meeting_time_compare_times (&mts->meeting_end_time, &drag_time) == 0)
        goto scroll;
    else if (mts->all_day
         && mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_END
         && e_meeting_time_compare_times (&mts->meeting_start_time, &drag_time) == 0)
        goto scroll;

    *time_to_set = drag_time;

    /* Check if the start time and end time need to be switched. */
    if (e_meeting_time_compare_times (&mts->meeting_start_time, &mts->meeting_end_time) > 0) {
        drag_time = mts->meeting_start_time;
        mts->meeting_start_time = mts->meeting_end_time;
        mts->meeting_end_time = drag_time;

        if (mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START)
            mts->dragging_position = E_MEETING_TIME_SELECTOR_POS_END;
        else
            mts->dragging_position = E_MEETING_TIME_SELECTOR_POS_START;

        set_both_times = TRUE;
    }

    /* Mark the calculated positions as invalid. */
    mts->meeting_positions_valid = FALSE;

    /* Set the times in the GnomeDateEdit widgets. */
    if (set_both_times
        || mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START)
        e_meeting_time_selector_update_start_date_edit (mts);

    if (set_both_times
        || mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_END)
        e_meeting_time_selector_update_end_date_edit (mts);

    if (set_both_times
        || mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_END
        || mts->dragging_position == E_MEETING_TIME_SELECTOR_POS_START)
        g_signal_emit (mts, signals[CHANGED], 0);

 scroll:
    /* Redraw the canvases. We freeze and thaw the layouts so that they
     * get redrawn completely. Otherwise the pixels get scrolled left or
     * right which is not good for us (since our vertical bars have been
     * moved) and causes flicker. */
    gnome_canvas_scroll_to (GNOME_CANVAS (mts->display_main),
                scroll_x, scroll_y);
    gnome_canvas_scroll_to (GNOME_CANVAS (mts->display_top),
                scroll_x, scroll_y);

    GDK_THREADS_LEAVE ();
    return TRUE;
}

/* This removes our auto-scroll timeout function, if we have one installed. */
void
e_meeting_time_selector_remove_timeout (EMeetingTimeSelector *mts)
{
    if (mts->auto_scroll_timeout_id) {
        g_source_remove (mts->auto_scroll_timeout_id);
        mts->auto_scroll_timeout_id = 0;
    }
}

/* This updates the GnomeDateEdit widget displaying the meeting start time. */
static void
e_meeting_time_selector_update_start_date_edit (EMeetingTimeSelector *mts)
{
    e_date_edit_set_date_and_time_of_day (E_DATE_EDIT (mts->start_date_edit),
                          g_date_get_year (&mts->meeting_start_time.date),
                          g_date_get_month (&mts->meeting_start_time.date),
                          g_date_get_day (&mts->meeting_start_time.date),
                          mts->meeting_start_time.hour,
                          mts->meeting_start_time.minute);
}

/* This updates the GnomeDateEdit widget displaying the meeting end time. */
static void
e_meeting_time_selector_update_end_date_edit (EMeetingTimeSelector *mts)
{
    GDate date;

    date = mts->meeting_end_time.date;
    if (mts->all_day)
        g_date_subtract_days (&date, 1);

    e_date_edit_set_date_and_time_of_day (E_DATE_EDIT (mts->end_date_edit),
                          g_date_get_year (&date),
                          g_date_get_month (&date),
                          g_date_get_day (&date),
                          mts->meeting_end_time.hour,
                          mts->meeting_end_time.minute);
}

/* This ensures that the meeting time is shown on screen, by scrolling the
 * canvas and possibly by changing the range of dates shown in the canvas. */
static void
e_meeting_time_selector_ensure_meeting_time_shown (EMeetingTimeSelector *mts)
{
    gint start_x, end_x, scroll_x, scroll_y;
    gint new_scroll_x;
    GtkAllocation allocation;
    EMeetingTime time;

    /* Check if we need to change the range of dates shown. */
    if (g_date_compare (&mts->meeting_start_time.date,
                &mts->first_date_shown) < 0
        || g_date_compare (&mts->meeting_end_time.date,
                   &mts->last_date_shown) > 0) {
        e_meeting_time_selector_update_dates_shown (mts);
        gtk_widget_queue_draw (mts->display_top);
        gtk_widget_queue_draw (mts->display_main);
    }

    /* If all of the meeting time is visible, just return. */
    if (e_meeting_time_selector_get_meeting_time_positions (mts, &start_x,
                                &end_x)) {
        time.date = mts->meeting_start_time.date;
        time.hour = 0;
        time.minute = 0;
        start_x = e_meeting_time_selector_calculate_time_position (mts, &time);
    }

    gnome_canvas_get_scroll_offsets (GNOME_CANVAS (mts->display_main),
                     &scroll_x, &scroll_y);
    gtk_widget_get_allocation (mts->display_main, &allocation);
    if (start_x > scroll_x && end_x <= scroll_x + allocation.width)
        return;

    new_scroll_x = start_x;
    gnome_canvas_scroll_to (GNOME_CANVAS (mts->display_main),
                new_scroll_x, scroll_y);
}

/* This updates the range of dates shown in the canvas, to make sure that the
 * currently selected meeting time is in the range. */
static void
e_meeting_time_selector_update_dates_shown (EMeetingTimeSelector *mts)
{
    mts->first_date_shown = mts->meeting_start_time.date;
    g_date_subtract_days (&mts->first_date_shown,
                  E_MEETING_TIME_SELECTOR_DAYS_START_BEFORE);

    mts->last_date_shown = mts->first_date_shown;
    g_date_add_days (&mts->last_date_shown,
             E_MEETING_TIME_SELECTOR_DAYS_SHOWN - 1);
}

/* This checks if the time's hour is over 24 or its minute is over 60 and if
 * so it updates the day/hour appropriately. Note that hours and minutes are
 * stored in guint8's so they can't overflow by much. */
void
e_meeting_time_selector_fix_time_overflows (EMeetingTime *mtstime)
{
    gint hours_to_add, days_to_add;

    hours_to_add = mtstime->minute / 60;
    if (hours_to_add > 0) {
        mtstime->minute -= hours_to_add * 60;
        mtstime->hour += hours_to_add;
    }

    days_to_add = mtstime->hour / 24;
    if (days_to_add > 0) {
        mtstime->hour -= days_to_add * 24;
        g_date_add_days (&mtstime->date, days_to_add);
    }
}

/*
 * CONVERSION ROUTINES - functions to convert between different coordinate
 *           spaces and dates.
 */

/* This takes an x pixel coordinate within the entire canvas scroll region and
 * returns the date in which it falls. If day_position is not NULL it also
 * returns the x coordinate within the date, relative to the visible part of
 * the canvas. It is used when painting the days in the item_draw function.
 * Note that it must handle negative x coordinates in case we are dragging off
 * the edge of the canvas. */
void
e_meeting_time_selector_calculate_day_and_position (EMeetingTimeSelector *mts,
                                                    gint x,
                                                    GDate *date,
                                                    gint *day_position)
{
    gint days_from_first_shown;

    *date = mts->first_date_shown;

    if (x >= 0) {
        days_from_first_shown = x / mts->day_width;
        g_date_add_days (date, days_from_first_shown);
        if (day_position)
            *day_position = - x % mts->day_width;
    } else {
        days_from_first_shown = -x / mts->day_width + 1;
        g_date_subtract_days (date, days_from_first_shown);
        if (day_position)
            *day_position = -mts->day_width - x % mts->day_width;
    }
}

/* This takes an x pixel coordinate within a day, and converts it to hours
 * and minutes, depending on working_hours_only and zoomed_out. */
void
e_meeting_time_selector_convert_day_position_to_hours_and_mins (EMeetingTimeSelector *mts,
                                                                gint day_position,
                                                                guint8 *hours,
                                                                guint8 *minutes)
{
    if (mts->zoomed_out)
        day_position *= 3;

    /* Calculate the hours & minutes from the first displayed. */
    *hours = day_position / mts->col_width;
    *minutes = (day_position % mts->col_width) * 60 / mts->col_width;

    /* Now add on the first hour shown. */
    *hours += mts->first_hour_shown;
}

/* This takes an x pixel coordinate within the entire canvas scroll region and
 * returns the time in which it falls. Note that it won't be extremely
 * accurate since hours may only be a few pixels wide in the display.
 * With zoomed_out set each pixel may represent 5 minutes or more, depending
 * on how small the font is. */
void
e_meeting_time_selector_calculate_time (EMeetingTimeSelector *mts,
                                        gint x,
                                        EMeetingTime *time)
{
    gint day_position;

    /* First get the day and the x position within the day. */
    e_meeting_time_selector_calculate_day_and_position (mts, x, &time->date,
                                NULL);

    /* Now convert the day_position into an hour and minute. */
    if (x >= 0)
        day_position = x % mts->day_width;
    else
        day_position = mts->day_width + x % mts->day_width;

    e_meeting_time_selector_convert_day_position_to_hours_and_mins (mts, day_position, &time->hour, &time->minute);
}

/* This takes a EMeetingTime and calculates the x pixel coordinate
 * within the entire canvas scroll region. It is used to draw the selected
 * meeting time and all the busy periods. */
gint
e_meeting_time_selector_calculate_time_position (EMeetingTimeSelector *mts,
                                                 EMeetingTime *mtstime)
{
    gint x, date_offset, day_offset;

    /* Calculate the number of days since the first date shown in the
     * entire canvas scroll region. */
    date_offset = g_date_get_julian (&mtstime->date) - g_date_get_julian (&mts->first_date_shown);

    /* Calculate the x pixel coordinate of the start of the day. */
    x = date_offset * mts->day_width;

    /* Add on the hours and minutes, depending on whether zoomed_out and
     * working_hours_only are set. */
    day_offset = (mtstime->hour - mts->first_hour_shown) * 60
        + mtstime->minute;
    /* The day width includes an extra vertical grid line so subtract 1. */
    day_offset *= (mts->day_width - 1);
    day_offset /= (mts->last_hour_shown - mts->first_hour_shown) * 60;

    /* Clamp the day_offset in case the time isn't actually visible. */
    x += CLAMP (day_offset, 0, mts->day_width);

    return x;
}

static void
row_inserted_cb (GtkTreeModel *model,
                 GtkTreePath *path,
                 GtkTreeIter *iter,
                 gpointer data)
{
    EMeetingTimeSelector *mts = E_MEETING_TIME_SELECTOR (data);
    gint row = gtk_tree_path_get_indices (path)[0];
    /* Update the scroll region. */
    e_meeting_time_selector_update_main_canvas_scroll_region (mts);

    /* Redraw */
    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);

    /* Get the latest free/busy info */
    e_meeting_time_selector_refresh_free_busy (mts, row, FALSE);
}

static void
row_changed_cb (GtkTreeModel *model,
                GtkTreePath *path,
                GtkTreeIter *iter,
                gpointer data)
{
    EMeetingTimeSelector *mts = E_MEETING_TIME_SELECTOR (data);
    gint row = gtk_tree_path_get_indices (path)[0];

    /* Get the latest free/busy info */
    e_meeting_time_selector_refresh_free_busy (mts, row, FALSE);
}

static void
row_deleted_cb (GtkTreeModel *model,
                GtkTreePath *path,
                gpointer data)
{
    EMeetingTimeSelector *mts = E_MEETING_TIME_SELECTOR (data);

    /* Update the scroll region. */
    e_meeting_time_selector_update_main_canvas_scroll_region (mts);

    /* Redraw */
    gtk_widget_queue_draw (mts->display_top);
    gtk_widget_queue_draw (mts->display_main);
}

#define REFRESH_PAUSE 5

static gboolean
free_busy_timeout_refresh (gpointer data)
{
    EMeetingTimeSelector *mts = E_MEETING_TIME_SELECTOR (data);

    /* Update all free/busy info, so we use the new template uri */
    e_meeting_time_selector_refresh_free_busy (mts, 0, TRUE);

    mts->fb_refresh_not = 0;

    return FALSE;
}

static void
free_busy_template_changed_cb (EMeetingTimeSelector *mts)
{
    /* Wait REFRESH_PAUSE before refreshing, using the latest uri value */
    if (mts->fb_refresh_not != 0)
        g_source_remove (mts->fb_refresh_not);

    mts->fb_refresh_not = g_timeout_add_seconds (
        REFRESH_PAUSE, free_busy_timeout_refresh, mts);
}
5365'>15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27055 27056 27057 27058 27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27094 27095 27096 27097 27098 27099 27100 27101 27102 27103 27104 27105 27106 27107 27108 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27133 27134 27135 27136 27137 27138 27139 27140 27141 27142 27143 27144 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27172 27173 27174 27175 27176 27177 27178 27179 27180 27181 27182 27183 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27196 27197 27198 27199 27200 27201 27202 27203 27204 27205 27206 27207 27208 27209 27210 27211 27212 27213 27214 27215 27216 27217 27218 27219 27220 27221 27222 27223 27224 27225 27226 27227 27228 27229 27230 27231 27232 27233 27234 27235 27236 27237 27238 27239 27240 27241 27242 27243 27244 27245 27246 27247 27248 27249 27250 27251 27252 27253 27254 27255 27256 27257 27258 27259 27260 27261 27262 27263 27264 27265 27266 27267 27268 27269 27270 27271 27272 27273 27274 27275 27276 27277 27278 27279 27280 27281 27282 27283 27284 27285 27286 27287 27288 27289 27290 27291 27292 27293 27294 27295 27296 27297 27298 27299 27300 27301 27302 27303 27304 27305 27306 27307 27308 27309 27310 27311 27312 27313 27314 27315 27316 27317 27318 27319 27320 27321 27322 27323 27324 27325 27326 27327 27328 27329 27330 27331 27332 27333 27334 27335 27336 27337 27338 27339 27340 27341 27342 27343 27344 27345 27346 27347 27348 27349 27350 27351 27352 27353 27354 27355 27356 27357 27358 27359 27360 27361 27362 27363 27364 27365 27366 27367 27368 27369 27370 27371 27372 27373 27374 27375 27376 27377 27378 27379 27380 27381 27382 27383 27384 27385 27386 27387 27388 27389 27390 27391 27392 27393 27394 27395 27396 27397 27398 27399 27400 27401 27402 27403 27404 27405 27406 27407 27408 27409 27410 27411 27412 27413 27414 27415 27416 27417 27418 27419 27420 27421 27422 27423 27424 27425 27426 27427 27428 27429 27430 27431 27432 27433 27434 27435 27436 27437 27438 27439 27440 27441 27442 27443 27444 27445 27446 27447 27448 27449 27450 27451 27452 27453 27454 27455 27456 27457 27458 27459 27460 27461 27462 27463 27464 27465 27466 27467 27468 27469 27470 27471 27472 27473 27474 27475 27476 27477 27478 27479 27480 27481 27482 27483 27484 27485 27486 27487 27488 27489 27490 27491 27492 27493 27494 27495 27496 27497 27498 27499 27500 27501 27502 27503 27504 27505 27506 27507 27508 27509 27510 27511 27512 27513 27514 27515 27516 27517 27518 27519 27520 27521 27522 27523 27524 27525 27526 27527 27528 27529 27530 27531 27532 27533 27534 27535 27536 27537 27538 27539 27540 27541 27542 27543 27544 27545 27546 27547 27548 27549 27550 27551 27552 27553 27554 27555 27556 27557 27558 27559 27560 27561 27562 27563 27564 27565 27566 27567 27568 27569 27570 27571 27572 27573 27574 27575 27576 27577 27578 27579 27580 27581 27582 27583 27584 27585 27586 27587 27588 27589 27590 27591 27592 27593 27594 27595 27596 27597 27598 27599 27600 27601 27602 27603 27604 27605 27606 27607 27608 27609 27610 27611 27612 27613 27614 27615 27616 27617 27618 27619 27620 27621 27622 27623 27624 27625 27626 27627 27628 27629 27630 27631 27632 27633 27634 27635 27636 27637 27638 27639 27640 27641 27642 27643 27644 27645 27646 27647 27648 27649 27650 27651 27652 27653 27654 27655 27656 27657 27658 27659 27660 27661 27662 27663 27664 27665 27666 27667 27668 27669 27670 27671 27672 27673 27674 27675 27676 27677 27678 27679 27680 27681 27682 27683 27684 27685 27686 27687 27688 27689 27690 27691 27692 27693 27694 27695 27696 27697 27698 27699 27700 27701 27702 27703 27704 27705 27706 27707 27708 27709 27710 27711 27712 27713 27714 27715 27716 27717 27718 27719 27720 27721 27722 27723 27724 27725 27726 27727 27728 27729 27730 27731 27732 27733 27734 27735 27736 27737 27738 27739 27740 27741 27742 27743 27744 27745 27746 27747 27748 27749 27750 27751 27752 27753 27754 27755 27756 27757 27758 27759 27760 27761 27762 27763 27764 27765 27766 27767 27768 27769 27770 27771 27772 27773 27774 27775 27776 27777 27778 27779 27780 27781 27782 27783 27784 27785 27786 27787 27788 27789 27790 27791 27792 27793 27794 27795 27796 27797 27798 27799 27800 27801 27802 27803 27804 27805 27806 27807 27808 27809 27810 27811 27812 27813 27814 27815 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27926 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27978 27979 27980 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28031 28032 28033 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28083 28084 28085 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28133 28134 28135 28136 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28186 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28235 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28283 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28328 28329 28330 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28375 28376 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28421 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564
# Turkish translation of Evolution.
# Görkem �Getin <gorkem@gelecek.com.tr>, 2002-2003.
msgid ""
msgstr ""
"Project-Id-Version: Evolution 1.2\n"
"POT-Creation-Date: 2003-01-23 11:39+0100\n"
"PO-Revision-Date: 2003-01-28 11:37+0000\n"
"Last-Translator: Görkem Çetin <gorkem@kde.org>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: addressbook/backend/ebook/GNOME_Evolution_Addressbook_LDIF_Importer.oaf.in.h:1
msgid "Factory to import LDIF files into Evolution."
msgstr "LDIF dosyalarını Evolution'a aktarım mimarisi."

#: addressbook/backend/ebook/GNOME_Evolution_Addressbook_LDIF_Importer.oaf.in.h:2
msgid "Imports LDIF files into Evolution."
msgstr "LDIF dosyalarını Evolution'a aktarır."

#: addressbook/backend/ebook/GNOME_Evolution_Addressbook_VCard_Importer.oaf.in.h:1
msgid "Factory to import VCard files into Evolution."
msgstr "VCard dosyalarını Evolution'a aktarım mimarisi."

#: addressbook/backend/ebook/GNOME_Evolution_Addressbook_VCard_Importer.oaf.in.h:2
msgid "Imports VCard files into Evolution."
msgstr "VCard dosyalarını Evolution'a aktarır."

#: addressbook/backend/ebook/e-card-simple.c:60
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:15
msgid "File As"
msgstr "Farklı Dosyala"

#: addressbook/backend/ebook/e-card-simple.c:61
#: addressbook/gui/component/select-names/e-select-names.etspec.h:1
#: mail/mail-config.glade.h:76 my-evolution/e-summary-table.c:59
msgid "Name"
msgstr "İsim"

#: addressbook/backend/ebook/e-card-simple.c:62
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:12
msgid "Email"
msgstr "E-posta"

#: addressbook/backend/ebook/e-card-simple.c:63
#: addressbook/gui/contact-editor/e-contact-editor.c:1759
msgid "Primary"
msgstr "İlk"

#: addressbook/backend/ebook/e-card-simple.c:63
msgid "Prim"
msgstr "İlk"

#: addressbook/backend/ebook/e-card-simple.c:64
#: addressbook/backend/ebook/e-card-simple.c:94
#: addressbook/gui/contact-editor/e-contact-editor.c:1744
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:2
msgid "Assistant"
msgstr "Yardımcı"

#: addressbook/backend/ebook/e-card-simple.c:65
#: addressbook/backend/ebook/e-card-simple.c:70
#: addressbook/gui/contact-editor/contact-editor.glade.h:5
#: addressbook/gui/contact-editor/e-contact-editor.c:1745
#: addressbook/gui/contact-editor/e-contact-editor.c:1812
msgid "Business"
msgstr "Meslek"

#: addressbook/backend/ebook/e-card-simple.c:65
#: addressbook/backend/ebook/e-card-simple.c:70
msgid "Bus"
msgstr "Meşg"

#: addressbook/backend/ebook/e-card-simple.c:66
#: addressbook/gui/contact-editor/e-contact-editor.c:1748
msgid "Callback"
msgstr "Geri Arama"

#: addressbook/backend/ebook/e-card-simple.c:67
#: addressbook/gui/contact-editor/e-contact-editor.c:1750
msgid "Company"
msgstr "Şirket"

#: addressbook/backend/ebook/e-card-simple.c:67
msgid "Comp"
msgstr "Şirk"

#: addressbook/backend/ebook/e-card-simple.c:68
#: addressbook/backend/ebook/e-card-simple.c:71
#: addressbook/gui/contact-editor/contact-editor.glade.h:17
#: addressbook/gui/contact-editor/e-contact-editor.c:1751
#: addressbook/gui/contact-editor/e-contact-editor.c:1813
msgid "Home"
msgstr "Ev"

#: addressbook/backend/ebook/e-card-simple.c:69
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:28
msgid "Organization"
msgstr "Kurum"

#: addressbook/backend/ebook/e-card-simple.c:69
msgid "Org"
msgstr "Kur"

#: addressbook/backend/ebook/e-card-simple.c:72
#: addressbook/gui/contact-editor/contact-editor.glade.h:20
#: addressbook/gui/contact-editor/e-contact-editor.c:1755
msgid "Mobile"
msgstr "Cep"

#: addressbook/backend/ebook/e-card-simple.c:73
#: addressbook/gui/contact-editor/e-contact-editor.c:1749
msgid "Car"
msgstr "Araba"

#: addressbook/backend/ebook/e-card-simple.c:74
#: addressbook/gui/contact-editor/contact-editor.glade.h:6
#: addressbook/gui/contact-editor/e-contact-editor.c:1747
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:5
msgid "Business Fax"
msgstr "İşyeri Faksı"

#: addressbook/backend/ebook/e-card-simple.c:74
msgid "Bus Fax"
msgstr "İşy Faks"

#: addressbook/backend/ebook/e-card-simple.c:75
#: addressbook/gui/contact-editor/e-contact-editor.c:1753
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:19
msgid "Home Fax"
msgstr "Ev Faksı"

#: addressbook/backend/ebook/e-card-simple.c:76
#: addressbook/gui/contact-editor/e-contact-editor.c:1746
msgid "Business 2"
msgstr "2. Meslek"

#: addressbook/backend/ebook/e-card-simple.c:76
msgid "Bus 2"
msgstr "Meşgul 2"

#: addressbook/backend/ebook/e-card-simple.c:77
#: addressbook/gui/contact-editor/e-contact-editor.c:1752
msgid "Home 2"
msgstr "2. ev"

#: addressbook/backend/ebook/e-card-simple.c:78
#: addressbook/gui/contact-editor/e-contact-editor.c:1754
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:22
msgid "ISDN"
msgstr "ISDN"

#: addressbook/backend/ebook/e-card-simple.c:79
#: addressbook/backend/ebook/e-card-simple.c:85
#: addressbook/gui/contact-editor/e-contact-editor.c:1756
#: addressbook/gui/contact-editor/e-contact-editor.c:1814
msgid "Other"
msgstr "Diğer"

#: addressbook/backend/ebook/e-card-simple.c:80
#: addressbook/gui/contact-editor/e-contact-editor.c:1757
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:30
msgid "Other Fax"
msgstr "Başka Fakslar"

#: addressbook/backend/ebook/e-card-simple.c:81
#: addressbook/gui/contact-editor/e-contact-editor.c:1758
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:32
msgid "Pager"
msgstr "Çağrı Cihazı"

#: addressbook/backend/ebook/e-card-simple.c:82
#: addressbook/gui/contact-editor/e-contact-editor.c:1760
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:35
msgid "Radio"
msgstr "Radyo"

#: addressbook/backend/ebook/e-card-simple.c:83
#: addressbook/gui/contact-editor/e-contact-editor.c:1761
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:38
msgid "Telex"
msgstr "Teleks"

#: addressbook/backend/ebook/e-card-simple.c:84
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:37
msgid "TTY"
msgstr "TTY"

#: addressbook/backend/ebook/e-card-simple.c:86
#: addressbook/gui/component/e-address-popup.c:484
#: addressbook/gui/contact-editor/e-contact-editor.c:1787
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:13
msgid "Email 2"
msgstr "2. E-posta Adresi"

#: addressbook/backend/ebook/e-card-simple.c:87
#: addressbook/gui/component/e-address-popup.c:494
#: addressbook/gui/contact-editor/e-contact-editor.c:1788
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:14
msgid "Email 3"
msgstr "3. E-posta Adresi"

#: addressbook/backend/ebook/e-card-simple.c:88
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:40
msgid "Web Site"
msgstr "Web Sayfası"

#: addressbook/backend/ebook/e-card-simple.c:88
msgid "Url"
msgstr "Url"

#: addressbook/backend/ebook/e-card-simple.c:89
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:11
msgid "Department"
msgstr "Bölüm"

#: addressbook/backend/ebook/e-card-simple.c:89
msgid "Dep"
msgstr "Böl"

#: addressbook/backend/ebook/e-card-simple.c:90
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:27
msgid "Office"
msgstr "Ofis"

#: addressbook/backend/ebook/e-card-simple.c:90
msgid "Off"
msgstr "Ofis"

#: addressbook/backend/ebook/e-card-simple.c:91
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:39
msgid "Title"
msgstr "Sıfat"

#: addressbook/backend/ebook/e-card-simple.c:92
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:34
msgid "Profession"
msgstr "Uzmanlık alanı"

#: addressbook/backend/ebook/e-card-simple.c:92
msgid "Prof"
msgstr "Prof"

#: addressbook/backend/ebook/e-card-simple.c:93
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:23
msgid "Manager"
msgstr "Yönetici"

#: addressbook/backend/ebook/e-card-simple.c:93
msgid "Man"
msgstr "Yön"

#: addressbook/backend/ebook/e-card-simple.c:94
msgid "Ass"
msgstr "Asis"

#: addressbook/backend/ebook/e-card-simple.c:95
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:25
msgid "Nickname"
msgstr "Lakap"

#: addressbook/backend/ebook/e-card-simple.c:95
msgid "Nick"
msgstr "Lakap"

#: addressbook/backend/ebook/e-card-simple.c:96
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:36
msgid "Spouse"
msgstr "Eş"

#: addressbook/backend/ebook/e-card-simple.c:97
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:26
msgid "Note"
msgstr "Not"

#: addressbook/backend/ebook/e-card-simple.c:98
msgid "Calendar URI"
msgstr "Takvim URI"

#: addressbook/backend/ebook/e-card-simple.c:98
msgid "CALUri"
msgstr "CALUri"

#: addressbook/backend/ebook/e-card-simple.c:99
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:16
msgid "Free-busy URL"
msgstr "Web Sayfası"

#: addressbook/backend/ebook/e-card-simple.c:99
msgid "FBUrl"
msgstr "FBUrl"

#: addressbook/backend/ebook/e-card-simple.c:100
msgid "Anniversary"
msgstr "Yıldönümü"

#: addressbook/backend/ebook/e-card-simple.c:100
msgid "Anniv"
msgstr "Yıldön"

#: addressbook/backend/ebook/e-card-simple.c:101
msgid "Birth Date"
msgstr "Doğum Günü"

#: addressbook/backend/ebook/e-card-simple.c:104
#: calendar/gui/e-calendar-table.etspec.h:4
msgid "Categories"
msgstr "Kategoriler"

#: addressbook/backend/ebook/e-card-simple.c:105
msgid "Family Name"
msgstr "Tam İsim"

#: addressbook/backend/ebook/e-card-simple.c:792
#, c-format
msgid "%x"
msgstr "%x"

#: addressbook/backend/ebook/e-card-simple.c:853
#: addressbook/backend/ebook/e-destination.c:706
msgid "Unnamed List"
msgstr "İsimsiz Liste"

#: addressbook/backend/ebook/e-card.c:2683
msgid "Multiple VCards"
msgstr "Çoklu VCard"

#: addressbook/backend/ebook/e-card.c:2691
#, c-format
msgid "VCard for %s"
msgstr "%s için VCard"

#: addressbook/backend/ebook/load-gnomecard-addressbook.c:21
#: addressbook/backend/ebook/load-pine-addressbook.c:22
#: addressbook/backend/ebook/test-client-list.c:23
#: addressbook/backend/ebook/test-client.c:34
#: addressbook/conduit/address-conduit.c:1860
#: addressbook/gui/component/addressbook-factory.c:50
#: calendar/conduits/calendar/calendar-conduit.c:1807
#: calendar/conduits/todo/todo-conduit.c:1385
#: calendar/gui/alarm-notify/notify-main.c:174 calendar/gui/main.c:67
#: tools/evolution-addressbook-abuse.c:132
#: tools/evolution-addressbook-export.c:60
#: tools/evolution-addressbook-import.c:86
#: tools/evolution-launch-composer.c:344
msgid "Could not initialize Bonobo"
msgstr "Bonobo'yu başlatamadım"

#: addressbook/backend/pas/pas-backend-file.c:364
#: addressbook/backend/pas/pas-backend-ldap.c:3021
msgid "Searching..."
msgstr "Aranıyor..."

#: addressbook/backend/pas/pas-backend-file.c:366
msgid "Loading..."
msgstr "Yükleniyor..."

#: addressbook/backend/pas/pas-backend-ldap.c:730
msgid "Reconnecting to LDAP server..."
msgstr "LDAP sunucuya yeniden bağlantı kuruluyor..."

#: addressbook/backend/pas/pas-backend-ldap.c:1273
msgid "Adding card to LDAP server..."
msgstr "LDAP sunucuya kart ekleniyor..."

#: addressbook/backend/pas/pas-backend-ldap.c:1379
msgid "Removing card from LDAP server..."
msgstr "LDAP sunucudaki kart siliniyor..."

#: addressbook/backend/pas/pas-backend-ldap.c:1615
#: addressbook/backend/pas/pas-backend-ldap.c:1618
msgid "Modifying card from LDAP server..."
msgstr "LDAP sunucudaki kart düzenleniyor..."

#: addressbook/backend/pas/pas-backend-ldap.c:2932
msgid "Receiving LDAP search results..."
msgstr "LDAP arama sonuçları alınıyor..."

#: addressbook/backend/pas/pas-backend-ldap.c:3041
msgid "Error performing search"
msgstr "Arama yaparken bir hata oluştu"

#: addressbook/conduit/address-conduit.c:293
msgid "Default Sync Address:"
msgstr "Öntanımlı Eşzamanlama Adresi:"

#: addressbook/conduit/address-conduit.c:536
msgid "Cursor could not be loaded\n"
msgstr "İmleç yüklenemedi\n"

#: addressbook/conduit/address-conduit.c:549
msgid "EBook not loaded\n"
msgstr "EBook yüklenmedi\n"

#: addressbook/conduit/address-conduit.c:1354
#: calendar/conduits/calendar/calendar-conduit.c:1278
#: calendar/conduits/todo/todo-conduit.c:889
msgid "Could not start wombat server"
msgstr "wombat sunucusu başlatılamadı"

#: addressbook/conduit/address-conduit.c:1355
#: calendar/conduits/calendar/calendar-conduit.c:1279
#: calendar/conduits/todo/todo-conduit.c:890
msgid "Could not start wombat"
msgstr "Wombat başlatılamadı"

#: addressbook/conduit/address-conduit.c:1385
#: addressbook/conduit/address-conduit.c:1388
msgid "Could not read pilot's Address application block"
msgstr "Pilot adres uygulama defteri okunamadı"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:1
msgid "A Bonobo control for an address popup."
msgstr "Adres menüsü için Bonobo denetleyici"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:2
msgid "A Bonobo control for displaying an address."
msgstr "Adres gösteren örnek bir Bonobo denetleyici"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:3
msgid "A sample Bonobo control which displays an addressbook."
msgstr "Adres defteri gösteren örnek bir Bonobo denetleyici"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:4
msgid "Configuration control for the Evolution Addressbook Storages."
msgstr ""

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:5
msgid "Configure access to LDAP directory servers here"
msgstr "LDAP dizin servislerine erişimi buradan yapılandırın"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:6
msgid "Control that displays an Evolution addressbook minicard."
msgstr "Evolution adres defteri mini kartını gösteren denetleyici."

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:7
msgid "Directory Servers"
msgstr "Dizin Servisleri"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:8
msgid "Evolution Addressbook minicard viewer"
msgstr "Evolution Adres Defteri mini kart görüntüleyici"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:9
msgid "Evolution component for handling contacts."
msgstr "Bağlantıları düzenleyen Evolution bileşeni."

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:10
msgid "Factory for the Addressbook Minicard control"
msgstr "Adres defteri mini kart mimarisi"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:11
msgid "Factory for the Addressbook's address displayer"
msgstr "Adres defteri isim gösterim arayüzü mimarisi"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:12
msgid "Factory for the Addressbook's address popup"
msgstr "Adres defteri menüsü mimarisi"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:13
msgid "Factory for the configuration controls for the Evolution Addressbook."
msgstr ""

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:14
msgid "Factory for the sample Addressbook control"
msgstr "Örnek adres defteri kontrol mimarisi"

#: addressbook/gui/component/addressbook-component.c:73
#: addressbook/gui/component/addressbook-component.c:611
#: calendar/gui/dialogs/comp-editor-util.c:310
#: calendar/gui/dialogs/comp-editor-util.c:366
#: importers/netscape-importer.c:1874 shell/e-local-storage.c:177
#: shell/e-shortcuts.c:1067
msgid "Contacts"
msgstr "Bağlantılar"

#: addressbook/gui/component/addressbook-component.c:73
msgid "Folder containing contact information"
msgstr "Bağlantı bilgisini içeren dizin"

#: addressbook/gui/component/addressbook-component.c:75
msgid "LDAP Server"
msgstr "LDAP Sunucusu"

#: addressbook/gui/component/addressbook-component.c:75
msgid "LDAP server containing contact information"
msgstr "Bağlantı bilgisini içeren LDAP sunucusu"

#: addressbook/gui/component/addressbook-component.c:77
msgid "Public Contacts"
msgstr "Ortak Bağlantılar"

#: addressbook/gui/component/addressbook-component.c:77
msgid "Public folder containing contact information"
msgstr "Bağlantı bilgisini içeren ortak dizin"

#: addressbook/gui/component/addressbook-component.c:567
msgid "New Contact"
msgstr "Yeni Bağlantı"

#: addressbook/gui/component/addressbook-component.c:567
msgid "_Contact"
msgstr "_Bağlantı"

#: addressbook/gui/component/addressbook-component.c:568
#: ui/evolution-addressbook.h:15
msgid "Create a new contact"
msgstr "Yeni bir bağlantı yarat"

#: addressbook/gui/component/addressbook-component.c:571
msgid "New Contact List"
msgstr "Yeni Bağlantı Listesi"

#: addressbook/gui/component/addressbook-component.c:571
msgid "Contact _List"
msgstr "B_ağlantı Listesi"

#: addressbook/gui/component/addressbook-component.c:572
msgid "Create a new contact list"
msgstr "Yeni bir bağlantı listesi yarat"

#: addressbook/gui/component/addressbook-config.c:197
msgid "Failed to connect to LDAP server"
msgstr "LDAP sunucuyla bağlantı başarısız oldu"

#: addressbook/gui/component/addressbook-config.c:216
msgid "Failed to authenticate with LDAP server"
msgstr "LDAP sunucuyla kimlik denetimi başarısız oldu"

#: addressbook/gui/component/addressbook-config.c:239
msgid "Could not perform query on Root DSE"
msgstr "Root DSE üzerinde tarama yapılamadı"

#: addressbook/gui/component/addressbook-config.c:648
msgid "The server responded with no supported search bases"
msgstr "Sunucunun cevabında desteklenen bir arama tabanı bulunamadı"

#: addressbook/gui/component/addressbook-config.c:1154
msgid "This server does not support LDAPv3 schema information"
msgstr "Sunucu LDAPv3 şema bilgisini desteklemiyor"

#: addressbook/gui/component/addressbook-config.c:1176
msgid "Error retrieving schema information"
msgstr "Şema bilgisini yüklerken hata oluştu"

#: addressbook/gui/component/addressbook-config.c:1184
msgid "Server did not respond with valid schema information"
msgstr "Sunucu geçerli bir şema bilgisi cevabı vermedi"

#: addressbook/gui/component/addressbook-config.c:1630
msgid "LDAP was not enabled in this build of Evolution"
msgstr "(Evolution'un bu sürümünde LDAP desteklenmiyor)"

#: addressbook/gui/component/addressbook-config.etspec.h:1
msgid "Account Name"
msgstr "Hesap Adı:"

#: addressbook/gui/component/addressbook-config.etspec.h:2
msgid "Server Name"
msgstr "Sunucu Adı"

#: addressbook/gui/component/addressbook-factory.c:72
#: calendar/gui/alarm-notify/notify-main.c:177 calendar/gui/main.c:159
msgid "Could not initialize gnome-vfs"
msgstr "Gnome-vfs başlatılamıyor"

#: addressbook/gui/component/addressbook-storage.c:168
msgid "Other Contacts"
msgstr "Diğer Bağlantılar"

#: addressbook/gui/component/addressbook.c:474
msgid "Unable to open addressbook"
msgstr "Adres defterini açamadım"

#: addressbook/gui/component/addressbook.c:480
msgid ""
"We were unable to open this addressbook.  Please check that the\n"
"path exists and that you have permission to access it."
msgstr ""
"Bu adres defteri açılamadı. Yeterli izin haklarına sahip olup\n"
"olmadığınızı ve dosyanın yerini kontrol edin."

#: addressbook/gui/component/addressbook.c:490
msgid ""
"We were unable to open this addressbook.  This either\n"
"means you have entered an incorrect URI, or the LDAP server\n"
"is unreachable."
msgstr ""
"Bu adres defteri açılamadı. Hatalı bir adres girilmiş,\n"
"ya da LDAP sunucusu erişilemiyor olabilir."

#: addressbook/gui/component/addressbook.c:495
msgid ""
"This version of Evolution does not have LDAP support\n"
"compiled in to it.  If you want to use LDAP in Evolution\n"
"you must compile the program from the CVS sources after\n"
"retrieving OpenLDAP from the link below.\n"
msgstr ""
"Evolution'ın bu sürümünde LDAP desteği bulunmuyor. \n"
"Eğer Evolution'ı LDAP desteği ile kullanmak istiyorsanız,\n"
"programı CVS kaynaklarından alacağınız openLDAP desteği\n"
"ile kurmalısınız:\n"

#: addressbook/gui/component/addressbook.c:504
msgid ""
"We were unable to open this addressbook.  This either\n"
"means you have entered an incorrect URI, or the server\n"
"is unreachable."
msgstr ""
"Bu adres defteri açılamadı. Hatalı bir adres girilmiş,\n"
"ya da LDAP sunucusu erişilemiyor olabilir."

#. the user clicked cancel in the password dialog
#: addressbook/gui/component/addressbook.c:582
msgid "Accessing LDAP Server anonymously"
msgstr "LDAP sunucuya anonim bağlantı kuruluyor"

#: addressbook/gui/component/addressbook.c:625
msgid "Failed to authenticate.\n"
msgstr "Kimlik denetimi yapılamadı.\n"

#: addressbook/gui/component/addressbook.c:633
#: addressbook/gui/component/addressbook.c:636
#, c-format
msgid "%sEnter password for %s (user %s)"
msgstr "%s%s için parolayı girin (kullanıcı: %s)"

#: addressbook/gui/component/addressbook.c:782
msgid "Name begins with"
msgstr "İsim başlar"

#: addressbook/gui/component/addressbook.c:783
msgid "Email begins with"
msgstr "E-posta başlar"

#: addressbook/gui/component/addressbook.c:784
#: calendar/gui/cal-search-bar.c:53
msgid "Category is"
msgstr "Kategori"

#. We attach subitems below
#: addressbook/gui/component/addressbook.c:785
#: calendar/gui/cal-search-bar.c:49
msgid "Any field contains"
msgstr "Herhangi bir alanın içeriği"

#: addressbook/gui/component/addressbook.c:786
msgid "Advanced..."
msgstr "Gelişmiş..."

#: addressbook/gui/component/addressbook.c:956
msgid ""
"More cards matched this query than either the server is \n"
"configured to return or Evolution is configured to display.\n"
"Please make your search more specific or raise the result limit in\n"
"the directory server preferences for this addressbook."
msgstr ""

#: addressbook/gui/component/addressbook.c:962
msgid ""
"The time to execute this query exceeded the server limit or the limit\n"
"you have configured for this addressbook.  Please make your search\n"
"more specific or raise the time limit in the directory server\n"
"preferences for this addressbook."
msgstr ""

#: addressbook/gui/component/addressbook.c:968
msgid "The backend for this addressbook was unable to parse this query."
msgstr ""

#: addressbook/gui/component/addressbook.c:971
msgid "The backend for this addressbook refused to perform this query."
msgstr ""

#: addressbook/gui/component/addressbook.c:975
msgid "This query did not complete successfully."
msgstr ""

#. All, unmatched, separator
#: addressbook/gui/component/addressbook.c:1050
#: calendar/gui/cal-search-bar.c:382
msgid "Any Category"
msgstr "Herhangi bir Kategori"

#: addressbook/gui/component/addressbook.c:1132
msgid "The URI that the Folder Browser will display"
msgstr "Dizin tarayıcısının göstereceği URI"

#.
#. * This is the code for the UI thingie that lets you manipulate the e-mail
#. * addresses (and *only* the e-mail addresses) associated with an existing
#. * card.
#.
#: addressbook/gui/component/e-address-popup.c:178
msgid "(none)"
msgstr "(hiçbiri)"

#: addressbook/gui/component/e-address-popup.c:474
#: addressbook/gui/contact-editor/contact-editor.glade.h:26
#: addressbook/gui/contact-editor/e-contact-editor.c:1786
msgid "Primary Email"
msgstr "Birincil E-posta Adresi"

#: addressbook/gui/component/e-address-popup.c:587
msgid "Select an Action"
msgstr "Bir Eylem Seçin"

#: addressbook/gui/component/e-address-popup.c:593
#, c-format
msgid "Create a new contact \"%s\""
msgstr "Yeni bir bağlantı yarat: \"%s\""

#: addressbook/gui/component/e-address-popup.c:605
#, c-format
msgid "Add address to existing contact \"%s\""
msgstr "\"%s\" bağlantısına adres ekle"

#: addressbook/gui/component/e-address-popup.c:891
msgid "Querying Addressbook..."
msgstr "Adres Defterini Araştırılıyor..."

#: addressbook/gui/component/e-address-popup.c:973
#: addressbook/gui/component/e-address-widget.c:387
#: addressbook/gui/component/select-names/e-select-names-popup.c:306
msgid "Edit Contact Info"
msgstr "Bağlantı Bilgisini Düzenle"

#: addressbook/gui/component/e-address-popup.c:1003
#: addressbook/gui/component/e-address-widget.c:423
#: addressbook/gui/component/select-names/e-select-names-popup.c:485
msgid "Add to Contacts"
msgstr "Bağlantılara Ekle"

#: addressbook/gui/component/e-address-popup.c:1046
msgid "Merge E-Mail Address"
msgstr "E-posta Adresini Birleştir"

#: addressbook/gui/component/e-address-widget.c:364
msgid "Disable Queries"
msgstr "Aramaları Kapat"

#: addressbook/gui/component/e-address-widget.c:364
msgid "Enable Queries (Dangerous!)"
msgstr "Aramaları Etkinleştir (Tehlikeli!)"

#: addressbook/gui/component/ldap-config.glade.h:1
#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:1
#: mail/mail-config.glade.h:1 mail/subscribe-dialog.glade.h:1
msgid "\n"
msgstr "\n"

#: addressbook/gui/component/ldap-config.glade.h:3
#, fuzzy
msgid "  S_how Supported Bases "
msgstr "_Desteklenen türleri denetle "

#: addressbook/gui/component/ldap-config.glade.h:4
msgid "1234"
msgstr "1234"

#: addressbook/gui/component/ldap-config.glade.h:5
msgid "1:00"
msgstr "1:00"

#: addressbook/gui/component/ldap-config.glade.h:6
msgid "2:30"
msgstr "2:30"

#: addressbook/gui/component/ldap-config.glade.h:7
msgid "3268"
msgstr "3268"

#: addressbook/gui/component/ldap-config.glade.h:8
msgid "380"
msgstr "380"

#: addressbook/gui/component/ldap-config.glade.h:9
msgid "389"
msgstr "389"

#: addressbook/gui/component/ldap-config.glade.h:10
msgid "5:00"
msgstr "5:00"

#: addressbook/gui/component/ldap-config.glade.h:11
msgid "636"
msgstr "636"

#: addressbook/gui/component/ldap-config.glade.h:12
msgid "666"
msgstr "666"

#: addressbook/gui/component/ldap-config.glade.h:13
msgid "<- _Remove"
msgstr "<- _Sil"

#: addressbook/gui/component/ldap-config.glade.h:14
msgid "<< Fewer Options"
msgstr "<< Daha Az Seçenek"

#: addressbook/gui/component/ldap-config.glade.h:15
msgid "Add (or Edit) Attribute Mappings"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:16
msgid "Addressbook Sources"
msgstr "Adres Defteri Kaynakları"

#: addressbook/gui/component/ldap-config.glade.h:17 mail/mail-account-gui.c:58
#: mail/mail-config.glade.h:16
msgid "Always"
msgstr "Her zaman"

#: addressbook/gui/component/ldap-config.glade.h:18
msgid "Anonymously"
msgstr "Anonim"

#: addressbook/gui/component/ldap-config.glade.h:19
msgid "Associated LDAP Attribute"
msgstr "Verilen LDAP Özniteliği"

#: addressbook/gui/component/ldap-config.glade.h:20
msgid "Attribute"
msgstr "Öznitelik"

#: addressbook/gui/component/ldap-config.glade.h:21
msgid ""
"Congratulations, you are finished setting up this LDAP server. You\n"
"are now ready to access this directory.\n"
"\n"
"Please click the \"Finish\" button to save the settings you have entered "
"here."
msgstr ""
"Tebrikler, LDAP sunucusunu başarıyla ayarladınız. Bu dizine \n"
"bağlantı kurmaya hazırsınız.\n"
"\n"
"Lütfen girdiğiniz bilgileri tamamlamak için \"Bitir\" düğmesine tıklayın."

#: addressbook/gui/component/ldap-config.glade.h:25
msgid "Connecting"
msgstr "Bağlanıyor"

#: addressbook/gui/component/ldap-config.glade.h:26
msgid "Corresponding Evolution Attribute"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:27
msgid "DN Customization"
msgstr "DN Yapılandırması"

#: addressbook/gui/component/ldap-config.glade.h:28
msgid "De_lete"
msgstr "_Sil"

#: addressbook/gui/component/ldap-config.glade.h:29
#, fuzzy
msgid "Distinguished _name:"
msgstr "_Liste adı:"

#: addressbook/gui/component/ldap-config.glade.h:30
msgid "Email Address:"
msgstr "E-posta Adresi:"

#: addressbook/gui/component/ldap-config.glade.h:31
msgid "Evolution Attribute"
msgstr "Evolution Özniteliği"

#: addressbook/gui/component/ldap-config.glade.h:32
msgid "Evolution will use this DN to authenticate you with the server"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:33
msgid "Evolution will use this email address to authenticate you with the server"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:34
msgid "Finished"
msgstr "Bitti"

#: addressbook/gui/component/ldap-config.glade.h:35
#: addressbook/gui/contact-editor/contact-editor.glade.h:16
msgid "General"
msgstr "Genel"

#: addressbook/gui/component/ldap-config.glade.h:36
msgid "LDAP Attribute"
msgstr "LDAP Özniteliği"

#: addressbook/gui/component/ldap-config.glade.h:37
msgid "LDAP Configuration Assistant"
msgstr "LDAP Yapılandırma Sihirbazı"

#: addressbook/gui/component/ldap-config.glade.h:38
#, fuzzy
msgid "Mappings"
msgstr "Marjin"

#: addressbook/gui/component/ldap-config.glade.h:39 mail/mail-account-gui.c:60
#: mail/mail-config.glade.h:77
msgid "Never"
msgstr "Hiç bir zaman"

#: addressbook/gui/component/ldap-config.glade.h:40
msgid ""
"Now, you must specify how you want to connect to the LDAP server. The SSL "
"(Secure Sockets Layer)\n"
"and TLS (Transport Layer Security) protocols are used by some servers to "
"cryptographically protect\n"
"your connection. Ask your system administrator if your LDAP server uses "
"these protocols."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:43
msgid "Objectclasses"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:44
msgid "Objectclasses Used in Evolution:"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:45
msgid "Objectclasses Used on Server:"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:46
msgid "One"
msgstr "Biri"

#: addressbook/gui/component/ldap-config.glade.h:47
msgid ""
"Please select an Evolution attribute and an\n"
"LDAP attribute to associate with it."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:49
msgid "R_estore Defaults"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:50
msgid "Re_store Defaults"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:51
#, fuzzy
msgid "S_earch scope: "
msgstr "İle_tide Ara..."

#. No time range is set, so don't start a query
#: addressbook/gui/component/ldap-config.glade.h:52
#: calendar/gui/calendar-model.c:1994 calendar/gui/e-day-view.c:1710
#: calendar/gui/e-week-view.c:1240
msgid "Searching"
msgstr "Arıyor"

#: addressbook/gui/component/ldap-config.glade.h:53
msgid "Select"
msgstr "Seç"

#: addressbook/gui/component/ldap-config.glade.h:54
msgid "Selected:"
msgstr "Seçilen:"

#: addressbook/gui/component/ldap-config.glade.h:55
msgid ""
"Selecting this option means that Evolution will only connect to your LDAP "
"server if\n"
"your LDAP server supports SSL or TLS."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:57
msgid ""
"Selecting this option means that Evolution will only try to use SSL/TLS if "
"you are in a \n"
"insecure environment. For example, if you and your LDAP server are behind a "
"firewall\n"
"at work, then Evolution doesn't need to use SSL/TLS because your connection "
"is already\n"
"secure."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:61
msgid ""
"Selecting this option means that your server does not support either SSL or "
"TLS.  This \n"
"means that your connection will be insecure, and that you will be vulnerable "
"to security\n"
"exploits. "
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:64
msgid ""
"Selecting this option will let you change Evolution's default settings for "
"LDAP\n"
"searches, and for creating and editing contacts. "
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:66
msgid ""
"Specifying a display name is the last required step in configuring an LDAP "
"server."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:67
msgid "Step 1: Server Information"
msgstr "1. Adım: Sunucu Bilgisi"

#: addressbook/gui/component/ldap-config.glade.h:68
msgid "Step 2: Connecting to Server"
msgstr "2. Adım: Sunucuya Bağlantı Kuruluyor"

#: addressbook/gui/component/ldap-config.glade.h:69
msgid "Step 3: Searching the Directory"
msgstr "3. Adım: Dizin Aranıyor"

#: addressbook/gui/component/ldap-config.glade.h:70
msgid "Step 4: Display Name"
msgstr "4. Adım: Görüntülenecek İsim"

#: addressbook/gui/component/ldap-config.glade.h:71
msgid "Sub"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:72
msgid "Supported Search Bases"
msgstr "Desteklenen Arama Tabanları"

#: addressbook/gui/component/ldap-config.glade.h:73
msgid ""
"The first step in configuring an LDAP server is to provide its name, and "
"your log in\n"
"information. Please ask your system administrator if you are unsure of this "
"information."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:75
msgid ""
"The options on this page control how many entries should be included in "
"your\n"
"searches, and how long a search should take. Ask your system administrator "
"if you\n"
"need to change these options."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:78
msgid ""
"The search base is the distinguished name (DN)  of the entry where your "
"searches will \n"
"begin. If you leave this blank, the search will begin at the root of the "
"directory tree."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:80
msgid ""
"The search scope defines how deep you would like the search to extend down "
"the \n"
"directory tree. A search scope of \"sub\" will include all entries below "
"your search base.\n"
"A search scope of \"one\" will only include the entries one level beneath "
"your base.\n"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:84
msgid ""
"This assistant will help you to access online directory services\n"
"using LDAP (Lightweight Directory Access Protocol) servers. \n"
"\n"
"Adding a new LDAP server requires some specialized information\n"
"about the server. Please contact your system administrator if you \n"
"need help finding this information."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:90
msgid ""
"This is the full name of your ldap server. For example, \"ldap.mycompany.com"
"\"."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:91
msgid ""
"This is the maximum number of entries to download. Setting this number to "
"be \n"
"too large will slow down your addressbook."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:93
msgid ""
"This is the method evolution will use to authenticate you.  Note that "
"setting this to \"Email Address\" requires anonymous access to your ldap "
"server."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:94
msgid ""
"This is the name for this server that will appear in your Evolution folder "
"list.\n"
"It is for display purposes only. "
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:96
msgid ""
"This is the port on the LDAP server that Evolution will try to connect to. "
"A \n"
"list of standard ports has been provided. Ask your system administrator\n"
"what port you should specify."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:99
msgid "This option controls how long a search will be run."
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:100
msgid ""
"To add an attribute to the DN, select it from the list and click the \"Add "
"Attribute\" button.\n"
"Any values that you add to the DN will become required values for any new "
"contacts\n"
"that you add to the directory on the LDAP server. "
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:103
msgid "U_se SSL/TLS:"
msgstr "_SSL/TLS kullan:"

#: addressbook/gui/component/ldap-config.glade.h:104
msgid "Using distinguished name (DN)"
msgstr "DN kullanarak"

#: addressbook/gui/component/ldap-config.glade.h:105
msgid "Using email address"
msgstr "E-posta adresi kullanılarak"

#: addressbook/gui/component/ldap-config.glade.h:106
#: mail/mail-account-gui.c:59 mail/mail-config.glade.h:134
msgid "Whenever Possible"
msgstr "Ne Zaman Mümkünse"

#: addressbook/gui/component/ldap-config.glade.h:107
#: addressbook/gui/contact-editor/contact-editor.glade.h:30
#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:6
#: calendar/gui/dialogs/alarm-page.glade.h:8 filter/filter.glade.h:14
#: mail/mail-config.glade.h:137 shell/glade/e-folder-list.glade.h:1
msgid "_Add"
msgstr "_Ekle"

#: addressbook/gui/component/ldap-config.glade.h:108
msgid "_Add ->"
msgstr "_Ekle ->"

#: addressbook/gui/component/ldap-config.glade.h:109
#, fuzzy
msgid "_Add Mapping"
msgstr "Eylem ekle"

#: addressbook/gui/component/ldap-config.glade.h:110
#, fuzzy
msgid "_Add to DN"
msgstr "Eylem ekle"

#: addressbook/gui/component/ldap-config.glade.h:111
msgid "_Always"
msgstr "_Her zaman"

#: addressbook/gui/component/ldap-config.glade.h:112
#, fuzzy
msgid "_Delete Mapping"
msgstr "He_psini sil"

#: addressbook/gui/component/ldap-config.glade.h:113
msgid "_Display name:"
msgstr "_Görüntülenecek isim:"

#: addressbook/gui/component/ldap-config.glade.h:114
msgid "_Distinguished Name (DN):"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:115
msgid "_Don't use SSL/TLS"
msgstr "_SSL/TLS kullanma"

#: addressbook/gui/component/ldap-config.glade.h:116
msgid "_Download limit:"
msgstr "İ_ndirme sınırı:"

#: addressbook/gui/component/ldap-config.glade.h:117 filter/filter.glade.h:16
#: mail/mail-config.glade.h:152 ui/evolution-addressbook.xml.h:33
#: ui/evolution-calendar.xml.h:28 ui/evolution-mail-list.xml.h:25
#: ui/evolution-mail-messagedisplay.xml.h:6 ui/evolution-message-composer.h:40
#: ui/evolution-message-composer.xml.h:41
#: ui/evolution-signature-editor.xml.h:11 ui/evolution-subscribe.xml.h:10
#: ui/evolution-tasks.xml.h:17
msgid "_Edit"
msgstr "_Düzenle"

#: addressbook/gui/component/ldap-config.glade.h:118
#, fuzzy
msgid "_Edit Mapping"
msgstr "_Toplantıyı düzenle"

#: addressbook/gui/component/ldap-config.glade.h:119
#, fuzzy
msgid "_Evolution attribute:"
msgstr "Evolution Alarmı"

#: addressbook/gui/component/ldap-config.glade.h:120
msgid "_If necessary "
msgstr "İ_htiyaç anında"

#: addressbook/gui/component/ldap-config.glade.h:121
msgid "_LDAP attribute:"
msgstr "_LDAP özniteliği:"

#: addressbook/gui/component/ldap-config.glade.h:122
msgid "_LDAP attributes:"
msgstr "_LDAP öznitelikleri:"

#: addressbook/gui/component/ldap-config.glade.h:123
msgid "_Log in method:"
msgstr "_Giriş yöntemi:"

#: addressbook/gui/component/ldap-config.glade.h:124
msgid "_More Options >>"
msgstr "_Daha Çok Seçenek >>"

#: addressbook/gui/component/ldap-config.glade.h:125
msgid "_Port number:"
msgstr "_Port numarası:"

#: addressbook/gui/component/ldap-config.glade.h:126
msgid "_Restore Defaults"
msgstr "_Öntanımlı Değerlere Geri Dön"

#: addressbook/gui/component/ldap-config.glade.h:127
msgid "_Search base:"
msgstr "_Arama tabanı:"

#: addressbook/gui/component/ldap-config.glade.h:128
msgid "_Server name:"
msgstr "_Sunucu adı:"

#: addressbook/gui/component/ldap-config.glade.h:129
msgid "_Timeout (minutes):"
msgstr "_Zaman aşımı süresi (dakika):"

#: addressbook/gui/component/ldap-config.glade.h:130
msgid "account-druid"
msgstr "hesap-sihirbazı"

#: addressbook/gui/component/ldap-config.glade.h:131
msgid "account-editor"
msgstr "hesap-düzenleyici"

#: addressbook/gui/component/ldap-config.glade.h:132
msgid "cards"
msgstr "kartlar"

#: addressbook/gui/component/ldap-config.glade.h:133
msgid "connecting-tab"
msgstr "bağlantı-sekmesi"

#: addressbook/gui/component/ldap-config.glade.h:134
msgid "dn-customization-tab"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:135
msgid "edit_server_window_simple"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:136
msgid "general-tab"
msgstr "genel-sekme"

#: addressbook/gui/component/ldap-config.glade.h:137
msgid "mappings-tab"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:138
msgid "objectclasses-tab"
msgstr ""

#: addressbook/gui/component/ldap-config.glade.h:139
#, fuzzy
msgid "searching-tab"
msgstr "Arıyor"

#: addressbook/gui/component/select-names/GNOME_Evolution_Addressbook_SelectNames.oaf.in.h:1
msgid "Evolution's addressbook name selection interface."
msgstr "Evolution adres defteri isim seçme arayüzü."

#: addressbook/gui/component/select-names/GNOME_Evolution_Addressbook_SelectNames.oaf.in.h:2
msgid "Factory for the Addressbook's name selection interface"
msgstr "Adres defteri isim seçim arayüzü mimarisi"

#. Fixme: Ditto
#: addressbook/gui/component/select-names/e-select-names-popup.c:163
#: addressbook/gui/component/select-names/e-select-names.c:707
#: composer/e-msg-composer-attachment-bar.c:519 filter/filter-filter.c:462
#: filter/filter-rule.c:681 my-evolution/e-summary-shown.c:538
#: shell/e-shortcuts-view.c:178
msgid "Remove"
msgstr "Sil"

#: addressbook/gui/component/select-names/e-select-names-popup.c:178
msgid "Remove All"
msgstr "Tümünü Sil"

#: addressbook/gui/component/select-names/e-select-names-popup.c:202
msgid "Send HTML Mail?"
msgstr "HTML Posta Gönderilsin mi?"

#: addressbook/gui/component/select-names/e-select-names-popup.c:405
msgid "Edit Contact List"
msgstr "Bağ_lantı Listesini Düzenle"

#: addressbook/gui/component/select-names/e-select-names-popup.c:423
msgid "Unnamed Contact List"
msgstr "İsimsiz Bağlantı Listesi"

#: addressbook/gui/component/select-names/e-select-names-popup.c:440
#, c-format
msgid "(%d not shown)"
msgstr "(%d adet gösterilmiyor)"

#: addressbook/gui/component/select-names/e-select-names-popup.c:506
msgid "Unnamed Contact"
msgstr "İsimsiz Bağlantı"

#: addressbook/gui/component/select-names/e-select-names.c:509
msgid "Select Contacts from Addressbook"
msgstr "Adres Defterinden Bağlantıları Seç"

#: addressbook/gui/component/select-names/e-select-names.c:572
#, fuzzy
msgid "Find contact in"
msgstr "Gönderen içerir"

#: addressbook/gui/component/select-names/select-names.glade.h:1
#: ui/evolution-addressbook.h:16
msgid "Find"
msgstr "Bul"

#: addressbook/gui/component/select-names/select-names.glade.h:2
msgid "Select Names"
msgstr "İsimleri Seçin"

#: addressbook/gui/component/select-names/select-names.glade.h:3
msgid "Selected Contacts:"
msgstr "Seçilen Bağlantılar:"

#: addressbook/gui/component/select-names/select-names.glade.h:4
msgid "Show Contacts"
msgstr "Bağlantıları Göster"

#: addressbook/gui/component/select-names/select-names.glade.h:5
msgid ""
"Type a name into the entry, or\n"
"select one from the list below:"
msgstr ""

#: addressbook/gui/component/select-names/select-names.glade.h:7
msgid "_Category:"
msgstr "_Kategori:"

#: addressbook/gui/component/select-names/select-names.glade.h:8
msgid "_Folder:"
msgstr "_Dizin:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:1
msgid "A_ssistant's name:"
msgstr "_Sekreterinin adı:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:2
msgid "Add_ress..."
msgstr "_Adres..."

#: addressbook/gui/contact-editor/contact-editor.glade.h:3
msgid "Anni_versary:"
msgstr "_Yıldönümü:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:4
msgid "Birthda_y:"
msgstr "_Doğum günü:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:7
msgid "C_ontacts..."
msgstr "_Bağlantılar..."

#: addressbook/gui/contact-editor/contact-editor.glade.h:8
#: calendar/gui/dialogs/event-page.glade.h:3
#: calendar/gui/dialogs/task-page.glade.h:1
msgid "Ca_tegories..."
msgstr "Kategoriler..."

#: addressbook/gui/contact-editor/contact-editor.glade.h:9
msgid "Collaboration"
msgstr ""

#. Construct the app
#: addressbook/gui/contact-editor/contact-editor.glade.h:10
#: addressbook/gui/contact-editor/e-contact-editor.c:1369
msgid "Contact Editor"
msgstr "Bağlantı Düzenleyici"

#: addressbook/gui/contact-editor/contact-editor.glade.h:11
msgid "D_epartment:"
msgstr "_Bölüm:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:12
#: calendar/gui/dialogs/task-editor.c:211
msgid "Details"
msgstr "Ayrıntılar"

#: addressbook/gui/contact-editor/contact-editor.glade.h:13
msgid "F_ree/Busy URL:"
msgstr "_Boş/Meşgul URL:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:14
msgid "File A_s:"
msgstr "Farklı _Dosya:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:15
msgid "Full _Name..."
msgstr "_Tam İsim..."

#: addressbook/gui/contact-editor/contact-editor.glade.h:18
msgid ""
"If this person publishes free/busy or other calendar information on the "
"Internet, enter the address\n"
"of that information here."
msgstr ""

#: addressbook/gui/contact-editor/contact-editor.glade.h:21
msgid "New phone type"
msgstr "Yeni telefon türü"

#: addressbook/gui/contact-editor/contact-editor.glade.h:22
msgid "No_tes:"
msgstr "_Notlar:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:23
msgid "Organi_zation:"
msgstr "_Kurum:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:24
msgid "P_rofession:"
msgstr "_Uzmanlık alanı:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:25
msgid "Phone Types"
msgstr "Telefon Türleri"

#: addressbook/gui/contact-editor/contact-editor.glade.h:27
#, fuzzy
msgid "S_pouse:"
msgstr "Eş"

#: addressbook/gui/contact-editor/contact-editor.glade.h:28
msgid "This is the _mailing address"
msgstr "_Bu mektuplaşma adresidir"

#: addressbook/gui/contact-editor/contact-editor.glade.h:29
msgid "Wants to receive _HTML mail"
msgstr "_HTML e-postalarını kabul ediyor"

#: addressbook/gui/contact-editor/contact-editor.glade.h:31
#: calendar/gui/dialogs/alarm-page.glade.h:9
#: calendar/gui/dialogs/meeting-page.c:674
#: calendar/gui/e-calendar-table.c:1006 calendar/gui/e-day-view.c:3766
#: calendar/gui/e-week-view.c:3563 filter/filter.glade.h:15
#: mail/folder-browser.c:1756 mail/mail-config.glade.h:150
#: shell/glade/e-folder-list.glade.h:2 ui/evolution-addressbook.xml.h:32
#: ui/evolution-calendar.xml.h:27 ui/evolution-mail-message.xml.h:97
#: ui/evolution-tasks.xml.h:16 ui/evolution.xml.h:48
msgid "_Delete"
msgstr "_Sil"

#: addressbook/gui/contact-editor/contact-editor.glade.h:32
msgid "_Job title:"
msgstr "_Meslek tanımı:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:33
msgid "_Manager's Name:"
msgstr "_Menejerinin adı:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:34
msgid "_Nickname:"
msgstr "_Lakap:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:35
msgid "_Office:"
msgstr "_Ofis:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:36
msgid "_Public Calendar URL:"
msgstr "_Genel Takvim URL:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:37
msgid "_Web page address:"
msgstr "W_eb sayfası adresi:"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:130
#: my-evolution/Locations.h:2341
msgid "United States"
msgstr "Amerika"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:131
msgid "Afghanistan"
msgstr "Afganistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:132
#: my-evolution/Locations.h:42
msgid "Albania"
msgstr "Albania"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:133
#: my-evolution/Locations.h:54
msgid "Algeria"
msgstr "Arnavutluk"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:134
msgid "American Samoa"
msgstr "Samoa"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:135
msgid "Andorra"
msgstr "Andora"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:136
msgid "Angola"
msgstr "Angola"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:137
msgid "Anguilla"
msgstr "Anguilla"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:138
msgid "Antarctica"
msgstr "Antarktika"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:139
msgid "Antigua And Barbuda"
msgstr "Antigua ve Barbuda"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:140
#: my-evolution/Locations.h:120
msgid "Argentina"
msgstr "Arjantin"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:141
msgid "Armenia"
msgstr "Ermenistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:142
msgid "Aruba"
msgstr "Aruba"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:143
#: my-evolution/Locations.h:154
msgid "Australia"
msgstr "Avusturalya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:144
#: my-evolution/Locations.h:155
msgid "Austria"
msgstr "Avusturya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:145
msgid "Azerbaijan"
msgstr "Azerbaycan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:146
#: my-evolution/Locations.h:161
msgid "Bahamas"
msgstr "Bahamalar"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:147
#: my-evolution/Locations.h:164
msgid "Bahrain"
msgstr "Bahreyn"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:148
msgid "Bangladesh"
msgstr "Bangladeş"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:149
msgid "Barbados"
msgstr "Barbados"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:150
msgid "Belarus"
msgstr "Belarus"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:151
#: my-evolution/Locations.h:216
msgid "Belgium"
msgstr "Belçika"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:152
#: my-evolution/Locations.h:218
msgid "Belize"
msgstr "Belize"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:153
msgid "Benin"
msgstr "Benin"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:154
msgid "Bermuda"
msgstr "Bermuda"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:155
msgid "Bhutan"
msgstr "Bhutan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:156
#: my-evolution/Locations.h:270
msgid "Bolivia"
msgstr "Bolivya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:157
msgid "Bosnia And Herzegowina"
msgstr "Bosna Hersek"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:158
msgid "Botswana"
msgstr "Botswana"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:159
msgid "Bouvet Island"
msgstr "Bouvet Island"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:160
#: my-evolution/Locations.h:294
msgid "Brazil"
msgstr "Brezilya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:161
msgid "British Indian Ocean Territory"
msgstr "British Indian Ocean Territory"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:162
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:163
#: my-evolution/Locations.h:320
msgid "Bulgaria"
msgstr "Bulgaristan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:164
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:165
msgid "Burundi"
msgstr "Burundi"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:166
msgid "Cambodia"
msgstr "Kamboçya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:167
msgid "Cameroon"
msgstr "Kamerun"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:168
#: my-evolution/Locations.h:354
msgid "Canada"
msgstr "Kanada"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:169
msgid "Cape Verde"
msgstr "Cape Verde"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:170
#: my-evolution/Locations.h:389
msgid "Cayman Islands"
msgstr "Cayman Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:171
msgid "Central African Republic"
msgstr "Orta Afrika Cumhuriyeti"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:172
msgid "Chad"
msgstr "Çad"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:173
#: my-evolution/Locations.h:438
msgid "Chile"
msgstr "Şili"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:174
msgid "China"
msgstr "Çin"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:175
#: my-evolution/Locations.h:451
msgid "Christmas Island"
msgstr "Christmas Island"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:176
msgid "Cocos (Keeling) Islands"
msgstr "Cocos (Keeling) Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:177
#: my-evolution/Locations.h:483
msgid "Colombia"
msgstr "Kolombiya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:178
msgid "Comoros"
msgstr "Comoros"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:179
#: addressbook/gui/contact-editor/e-contact-editor-address.c:180
msgid "Congo"
msgstr "Kongo"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:181
msgid "Cook Islands"
msgstr "Cook Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:182
#: my-evolution/Locations.h:517
msgid "Costa Rica"
msgstr "Kosta Rika"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:183
msgid "Cote d'Ivoire"
msgstr "Cote d'Ivoire"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:184
#: my-evolution/Locations.h:528
msgid "Croatia"
msgstr "Hırvatistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:185
#: my-evolution/Locations.h:532
msgid "Cuba"
msgstr "Küba"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:186
#: my-evolution/Locations.h:545
msgid "Cyprus"
msgstr "Kıbrıs"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:187
#: my-evolution/Locations.h:546
msgid "Czech Republic"
msgstr "Çek Cumhuriyeti"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:188
#: my-evolution/Locations.h:580
msgid "Denmark"
msgstr "Danimarka"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:189
msgid "Djibouti"
msgstr "Cibuti"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:190
msgid "Dominica"
msgstr "Dominik"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:191
#: my-evolution/Locations.h:608
msgid "Dominican Republic"
msgstr "Dominik Cumhuriyeti"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:192
msgid "East Timor"
msgstr "Doğu Timur"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:193
#: my-evolution/Locations.h:641
msgid "Ecuador"
msgstr "Ekvator"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:194
#: my-evolution/Locations.h:650
msgid "Egypt"
msgstr "Mısır"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:195
#: my-evolution/Locations.h:666
msgid "El Salvador"
msgstr "El Salvador"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:196
msgid "Equatorial Guinea"
msgstr "Equatorial Guinea"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:197
msgid "Eritrea"
msgstr "Eritrea"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:198
#: my-evolution/Locations.h:684
msgid "Estonia"
msgstr "Estonya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:199
msgid "Ethiopia"
msgstr "Etiyopya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:200
msgid "Falkland Islands"
msgstr "Falkland Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:201
msgid "Faroe Islands"
msgstr "Faroe Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:202
msgid "Fiji"
msgstr "Fiji"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:203
#: my-evolution/Locations.h:716
msgid "Finland"
msgstr "Finlandiya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:204
#: my-evolution/Locations.h:766
msgid "France"
msgstr "Fransa"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:205
msgid "French Guiana"
msgstr "Fransız Guyanası"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:206
msgid "French Polynesia"
msgstr "Fransız Polinezyası"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:207
msgid "French Southern Territories"
msgstr "French Southern Territories"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:208
msgid "Gabon"
msgstr "Gabon"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:209
msgid "Gambia"
msgstr "Gambia"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:210
#: my-evolution/Locations.h:811
msgid "Georgia"
msgstr "Gürcistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:211
#: my-evolution/Locations.h:812
msgid "Germany"
msgstr "Almanya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:212
msgid "Ghana"
msgstr "Gana"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:213
#: my-evolution/Locations.h:815
msgid "Gibraltar"
msgstr "Cebelitarık"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:214
#: my-evolution/Locations.h:846
msgid "Greece"
msgstr "Yunanistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:215
msgid "Greenland"
msgstr "Grönland"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:216
msgid "Grenada"
msgstr "Granada"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:217
msgid "Guadeloupe"
msgstr "Guadeloupe"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:218
msgid "Guam"
msgstr "Guam"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:219
#: my-evolution/Locations.h:867
msgid "Guatemala"
msgstr "Guatemala"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:220
msgid "Guinea"
msgstr "Gine"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:221
msgid "Guinea-bissau"
msgstr "Guinea-bissau"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:222
msgid "Guyana"
msgstr "Guyana"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:223
#: my-evolution/Locations.h:888
msgid "Haiti"
msgstr "Haiti"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:224
msgid "Heard And McDonald Islands"
msgstr "Heard And McDonald Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:225
msgid "Holy See"
msgstr "Holy See"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:226
#: my-evolution/Locations.h:945
msgid "Honduras"
msgstr "Honduras"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:227
#: my-evolution/Locations.h:946
msgid "Hong Kong"
msgstr "Hong Kong"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:228
#: my-evolution/Locations.h:966
msgid "Hungary"
msgstr "Macaristan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:229
#: my-evolution/Locations.h:978
msgid "Iceland"
msgstr "İzlanda"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:230
#: my-evolution/Locations.h:991
msgid "India"
msgstr "Hindistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:231
msgid "Indonesia"
msgstr "İndonezya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:232
#: my-evolution/Locations.h:1007
msgid "Ireland"
msgstr "İrlanda"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:233
msgid "Israel"
msgstr "İsrail"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:234
#: my-evolution/Locations.h:1016
msgid "Italy"
msgstr "İtalya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:235
#: my-evolution/Locations.h:1031
msgid "Jamaica"
msgstr "Jamaika"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:236
#: my-evolution/Locations.h:1035
msgid "Japan"
msgstr "Japonya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:237
#: my-evolution/Locations.h:1046
msgid "Jordan"
msgstr "Ürdün"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:238
msgid "Kazakhstan"
msgstr "Kazakistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:239
msgid "Kenya"
msgstr "Kenya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:240
msgid "Kiribati"
msgstr "Kiribati"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:241
msgid "Korea, Republic Of"
msgstr "Kore"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:242
#: my-evolution/Locations.h:1146
msgid "Kuwait"
msgstr "Kuveyt"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:243
msgid "Kyrgyzstan"
msgstr "Kırgızistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:244
msgid "Laos"
msgstr "Laos"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:245
msgid "Latvia"
msgstr "Latvia"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:246
#: my-evolution/Locations.h:1197
msgid "Lebanon"
msgstr "Lübnan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:247
msgid "Lesotho"
msgstr "Lesotho"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:248
#: my-evolution/Locations.h:1217
msgid "Liberia"
msgstr "Liberya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:249
msgid "Liechtenstein"
msgstr "Lihtenştayn"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:250
#: my-evolution/Locations.h:1233
msgid "Lithuania"
msgstr "Litvanya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:251
#: my-evolution/Locations.h:1267
msgid "Luxembourg"
msgstr "Lüksemburg"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:252
msgid "Macau"
msgstr "Macau"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:253
msgid "Macedonia"
msgstr "Makedonya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:254
msgid "Madagascar"
msgstr "Madagaskar"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:255
msgid "Malawi"
msgstr "Malawi"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:256
msgid "Malaysia"
msgstr "Malezya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:257
msgid "Maldives"
msgstr "Maldivler"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:258
msgid "Mali"
msgstr "Mali"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:259
#: my-evolution/Locations.h:1296
msgid "Malta"
msgstr "Malta"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:260
msgid "Marshall Islands"
msgstr "Marshall Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:261
msgid "Martinique"
msgstr "Martinik"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:262
msgid "Mauritania"
msgstr "Moritanya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:263
msgid "Mauritius"
msgstr "Maritus"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:264
msgid "Mayotte"
msgstr "Mayotte"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:265
#: my-evolution/Locations.h:1386
msgid "Mexico"
msgstr "Meksika"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:266
msgid "Micronesia"
msgstr "Mikronezya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:267
msgid "Moldova, Republic Of"
msgstr "Moldova"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:268
msgid "Monaco"
msgstr "Monako"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:269
msgid "Mongolia"
msgstr "Moğolistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:270
msgid "Montserrat"
msgstr "Montserrat"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:271
#: my-evolution/Locations.h:1469
msgid "Morocco"
msgstr "Morocco"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:272
msgid "Mozambique"
msgstr "Mozambik"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:273
msgid "Myanmar"
msgstr "Myanmar"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:274
msgid "Namibia"
msgstr "Namibya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:275
msgid "Nauru"
msgstr "Nauru"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:276
msgid "Nepal"
msgstr "Nepal"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:277
#: my-evolution/Locations.h:1530
msgid "Netherlands"
msgstr "Hollanda"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:278
msgid "Netherlands Antilles"
msgstr "Hollanda Antilleri"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:279
msgid "New Caledonia"
msgstr "Yeni Kaledonya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:280
#: my-evolution/Locations.h:1559
msgid "New Zealand"
msgstr "Yeni Zelanda"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:281
#: my-evolution/Locations.h:1561
msgid "Nicaragua"
msgstr "Nikaragua"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:282
msgid "Niger"
msgstr "Niger"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:283
msgid "Nigeria"
msgstr "Nijerya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:284
msgid "Niue"
msgstr "Niue"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:285
#: my-evolution/Locations.h:1573
msgid "Norfolk Island"
msgstr "Norfolk Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:286
msgid "Northern Mariana Islands"
msgstr "Northern Mariana Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:287
#: my-evolution/Locations.h:1586
msgid "Norway"
msgstr "Norveç"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:288
#: my-evolution/Locations.h:1631
msgid "Oman"
msgstr "Oman"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:289
#: my-evolution/Locations.h:1672
msgid "Pakistan"
msgstr "Pakistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:290
msgid "Palau"
msgstr "Palau"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:291
msgid "Palestinian Territory"
msgstr "Filistan Bölgesi"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:292
#: my-evolution/Locations.h:1682
msgid "Panama"
msgstr "Panama"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:293
msgid "Papua New Guinea"
msgstr "Papua Yeni Gine"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:294
#: my-evolution/Locations.h:1687
msgid "Paraguay"
msgstr "Paraguay"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:295
#: my-evolution/Locations.h:1722
msgid "Peru"
msgstr "Peru"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:296
msgid "Philippines"
msgstr "Filipinler"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:297
msgid "Pitcairn"
msgstr "Pitcairn"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:298
#: my-evolution/Locations.h:1763
msgid "Poland"
msgstr "Polonya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:299
#: my-evolution/Locations.h:1790
msgid "Portugal"
msgstr "Portekiz"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:300
#: my-evolution/Locations.h:1823
msgid "Puerto Rico"
msgstr "Porto Riko"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:301
#: my-evolution/Locations.h:1835
msgid "Qatar"
msgstr "Katar"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:302
msgid "Reunion"
msgstr "Reunion"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:303
#: my-evolution/Locations.h:1910
msgid "Romania"
msgstr "Romanya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:304
msgid "Russian Federation"
msgstr "Rusya Federasyonu"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:305
msgid "Rwanda"
msgstr "Ruanda"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:306
msgid "Saint Kitts And Nevis"
msgstr "Saint Kitts And Nevis"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:307
msgid "Saint Lucia"
msgstr "Saint Lucia"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:308
msgid "Saint Vincent And The Grena-dines"
msgstr "Saint Vincent And The Grena-dines"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:309
msgid "Samoa"
msgstr "Samoa"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:310
msgid "San Marino"
msgstr "San Marino"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:311
msgid "Sao Tome And Principe"
msgstr "Sao Tome And Principe"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:312
#: my-evolution/Locations.h:2033
msgid "Saudi Arabia"
msgstr "Suudi Arabistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:313
msgid "Senegal"
msgstr "Senegal"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:314
msgid "Seychelles"
msgstr "Seyşeller"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:315
msgid "Sierra Leone"
msgstr "Sierra Leone"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:316
#: my-evolution/Locations.h:2088
msgid "Singapore"
msgstr "Singapur"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:317
#: my-evolution/Locations.h:2101
msgid "Slovakia"
msgstr "Slovakya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:318
#: my-evolution/Locations.h:2102
msgid "Slovenia"
msgstr "Slovenya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:319
msgid "Solomon Islands"
msgstr "Solomon Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:320
msgid "Somalia"
msgstr "Somali"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:321
#: my-evolution/Locations.h:2117
msgid "South Africa"
msgstr "Güney Afrika"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:322
msgid "South Georgia And The South Sandwich Islands"
msgstr "South Georgia And The South Sandwich Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:323
#: my-evolution/Locations.h:2125
msgid "Spain"
msgstr "İspanya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:324
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:325
msgid "St. Helena"
msgstr "St. Helena"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:326
msgid "St. Pierre And Miquelon"
msgstr "St. Pierre And Miquelon"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:327
msgid "Sudan"
msgstr "Sudan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:328
#: my-evolution/Locations.h:2174
msgid "Suriname"
msgstr "Surinam"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:329
msgid "Svalbard And Jan Mayen Islands"
msgstr "Svalbard And Jan Mayen Adaları"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:330
msgid "Swaziland"
msgstr "Swaziland"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:331
#: my-evolution/Locations.h:2179
msgid "Sweden"
msgstr "İsveç"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:332
#: my-evolution/Locations.h:2181
msgid "Switzerland"
msgstr "İsviçre"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:333
#: my-evolution/Locations.h:2203
msgid "Taiwan"
msgstr "Tayvan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:334
msgid "Tajikistan"
msgstr "Tacikistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:335
msgid "Tanzania, United Republic Of"
msgstr "Tanzanya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:336
msgid "Thailand"
msgstr "Tayland"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:337
msgid "Togo"
msgstr "Togo"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:338
msgid "Tokelau"
msgstr "Tokelau"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:339
msgid "Tonga"
msgstr "Tonga"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:340
msgid "Trinidad And Tobago"
msgstr "Trinidad ve Tobago"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:341
msgid "Tunisia"
msgstr "Tunus"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:342
#: my-evolution/Locations.h:2319
msgid "Turkey"
msgstr "Türkiye"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:343
msgid "Turkmenistan"
msgstr "Türkmenistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:344
msgid "Turks And Caicos Islands"
msgstr "Turks And Caicos Islands"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:345
msgid "Tuvalu"
msgstr "Tuvalu"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:346
msgid "Uganda"
msgstr "Uganda"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:347
#: my-evolution/Locations.h:2332
msgid "Ukraine"
msgstr "Ukrayna"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:348
msgid "United Arab Emirates"
msgstr "Birleşik Arap Emirlikleri"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:349
#: my-evolution/Locations.h:2340
msgid "United Kingdom"
msgstr "Birleşik Krallık"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:350
msgid "United States Minor Outlying Islands"
msgstr "United States Minor Outlying Islands"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:351
#: my-evolution/Locations.h:2346
msgid "Uruguay"
msgstr "Uruguay"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:352
msgid "Uzbekistan"
msgstr "Özbekistan"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:353
msgid "Vanuatu"
msgstr "Vanuatu"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:354
#: my-evolution/Locations.h:2378
msgid "Venezuela"
msgstr "Venezuela"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:355
#: my-evolution/Locations.h:2390
msgid "Viet Nam"
msgstr "Vietnam"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:356
msgid "Virgin Islands, British"
msgstr "Virgin Islands, ABD"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:357
msgid "Virgin Islands, U.S."
msgstr "Virgin Islands, US"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:358
msgid "Wallis And Futuna Islands"
msgstr "Wallis And Futuna Islands"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:359
msgid "Western Sahara"
msgstr "Western Sahara"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:360
#: my-evolution/Locations.h:2510
msgid "Yemen"
msgstr "Yemen"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:361
#: my-evolution/Locations.h:2522
msgid "Yugoslavia"
msgstr "Yugoslavya"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:362
msgid "Zambia"
msgstr "Zambia"

#: addressbook/gui/contact-editor/e-contact-editor-address.c:363
msgid "Zimbabwe"
msgstr "Zimbabwe"

#: addressbook/gui/contact-editor/e-contact-editor-confirm-delete.glade.h:1
msgid ""
"Are you sure you want\n"
"to delete this contact?"
msgstr ""
"Gerçekten bu bağlantıyı\n"
"silmek istiyor musunuz?"

#: addressbook/gui/contact-editor/e-contact-editor-confirm-delete.glade.h:3
msgid "Delete Contact?"
msgstr "Bağlantıyı Sil?"

#: addressbook/gui/contact-editor/e-contact-editor.c:826
msgid "Category editor not available."
msgstr "Kategori düzenleyici bulunamadı."

#: addressbook/gui/contact-editor/e-contact-editor.c:833
msgid "This contact belongs to these categories:"
msgstr "Bu bağlantı adı aşağıdaki sınıflandırmalara girer:"

#: addressbook/gui/contact-editor/e-contact-editor.c:1047
msgid "Save Contact as VCard"
msgstr "Bağlantıyı VCard olarak kaydet"

#: addressbook/gui/contact-editor/e-contact-editor.c:1762
msgid "TTY/TDD"
msgstr "TTY/TDD"

#: addressbook/gui/contact-editor/e-contact-editor.c:2455
#, c-format
msgid "Could not find widget for a field: `%s'"
msgstr "Bir alan için parçacık bulunamadı: `%s'"

#: addressbook/gui/contact-editor/e-contact-quick-add.c:301
msgid "Contact Quick-Add"
msgstr "Bağlantıyı Hızlı Ekle"

#: addressbook/gui/contact-editor/e-contact-quick-add.c:303
msgid "Edit Full"
msgstr "Tümünü Düzenle"

#: addressbook/gui/contact-editor/e-contact-quick-add.c:329
#: addressbook/gui/widgets/e-addressbook-view.etspec.h:17
msgid "Full Name"
msgstr "Tam İsim"

#: addressbook/gui/contact-editor/e-contact-quick-add.c:335
msgid "E-mail"
msgstr "E-posta"

#. This is a filename. Translators take note.
#: addressbook/gui/contact-editor/e-contact-save-as.c:107
msgid "card.vcf"
msgstr "kart.vcf"

#: addressbook/gui/contact-editor/e-contact-save-as.c:183
msgid "list"
msgstr "liste"

#: addressbook/gui/contact-editor/e-contact-save-as.c:221
#, c-format
msgid ""
"%s already exists\n"
"Do you want to overwrite it?"
msgstr ""
"%s dosyası mevcut\n"
"Üzerine yazmak istiyor musunuz?"

#: addressbook/gui/contact-editor/file-exists.glade.h:1
msgid "Confirm Overwrite"
msgstr "Üzerine Yazılsın mı?"

#: addressbook/gui/contact-editor/file-exists.glade.h:2
msgid "Don't bother translating this string.  It's not used."
msgstr ""

#: addressbook/gui/contact-editor/file-exists.glade.h:3
msgid "Overwrite"
msgstr "Üzerine yaz"

#: addressbook/gui/contact-editor/fulladdr.glade.h:1
msgid "Address _2:"
msgstr "_2. Adres:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:2
msgid "Check Address"
msgstr "Adresi Denetle"

#: addressbook/gui/contact-editor/fulladdr.glade.h:3
msgid "Countr_y:"
msgstr "Ü_lke:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:4
msgid "_Address:"
msgstr "_Adres:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:5
msgid "_City:"
msgstr "Ş_ehir:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:6
msgid "_PO Box:"
msgstr "_Posta Kutusu:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:7
msgid "_State/Province:"
msgstr "_Bölge:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:8
msgid "_ZIP Code:"
msgstr "Posta _Numarası:"

#: addressbook/gui/contact-editor/fullname.glade.h:1
msgid "Check Full Name"
msgstr "Tam İsmi Kontrol Et"

#: addressbook/gui/contact-editor/fullname.glade.h:2
msgid "Dr."
msgstr "Dr."

#: addressbook/gui/contact-editor/fullname.glade.h:3
msgid "Esq."
msgstr "Esq."

#: addressbook/gui/contact-editor/fullname.glade.h:4
msgid "I"
msgstr "I"

#: addressbook/gui/contact-editor/fullname.glade.h:5
msgid "II"
msgstr "II"

#: addressbook/gui/contact-editor/fullname.glade.h:6
msgid "III"
msgstr "III"

#: addressbook/gui/contact-editor/fullname.glade.h:7
msgid "Jr."
msgstr "Jr."

#: addressbook/gui/contact-editor/fullname.glade.h:8
msgid "Miss"
msgstr "Miss"

#: addressbook/gui/contact-editor/fullname.glade.h:9
msgid "Mr."
msgstr "Bay"

#: addressbook/gui/contact-editor/fullname.glade.h:10
msgid "Mrs."
msgstr "Bn."

#: addressbook/gui/contact-editor/fullname.glade.h:11
msgid "Ms."
msgstr "Bn."

#: addressbook/gui/contact-editor/fullname.glade.h:12
msgid "Sr."
msgstr "Sr."

#: addressbook/gui/contact-editor/fullname.glade.h:13
msgid "_First:"
msgstr "_Birinci:"

#: addressbook/gui/contact-editor/fullname.glade.h:14
msgid "_Last:"
msgstr "_Soyadı:"

#: addressbook/gui/contact-editor/fullname.glade.h:15
msgid "_Middle:"
msgstr "_Ortanca:"

#: addressbook/gui/contact-editor/fullname.glade.h:16
msgid "_Suffix:"
msgstr "S_onek:"

#: addressbook/gui/contact-editor/fullname.glade.h:17
msgid "_Title:"
msgstr "_Sıfatı:"

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:3
msgid "List _name:"
msgstr "_Liste adı:"

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:4
msgid "Members"
msgstr "Üyeler"

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:5
msgid "Type an email address or drag a contact into the list below:"
msgstr ""

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:7
msgid "_Hide addresses when sending mail to this list"
msgstr ""

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:8
#: calendar/gui/dialogs/recurrence-page.glade.h:12 filter/filter.glade.h:17
msgid "_Remove"
msgstr "_Sil"

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:9
msgid "contact-list-editor"
msgstr "bağlantı-listesi-editörü"

#. Construct the app
#: addressbook/gui/contact-list-editor/e-contact-list-editor.c:238
msgid "Contact List Editor"
msgstr "Bağlantı Listesi Düzenleyici"

#: addressbook/gui/contact-list-editor/e-contact-list-editor.c:452
msgid "Save List as VCard"
msgstr "Listeyi VCard Olarak Kaydet"

#: addressbook/gui/contact-list-editor/e-contact-list-editor.etspec.h:1
msgid "Contact"
msgstr "Bağlantı"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:1
msgid "Add Anyway"
msgstr "Ekle Gitsin"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:2
#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:4
msgid "Duplicate Contact Detected"
msgstr "Çift Bağlantı Bulundu"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:3
msgid "New Contact:"
msgstr "Yeni Bağlantı:"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:4
msgid "Original Contact:"
msgstr "Asıl Bağlantı:"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:5
msgid ""
"The name or email address of this contact already exists\n"
"in this folder.  Would you like to add it anyway?"
msgstr ""
"Bağlantı adresinin adı ya da e-posta adresi zaten var.\n"
"Yine de eklemek istiyor musunuz?"

#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:1
msgid "Change Anyway"
msgstr "Yine de Değiştir"

#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:2
msgid "Changed Contact:"
msgstr "Değiştirilen Bağlantı:"

#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:3
msgid "Conflicting Contact:"
msgstr "Çakışan Bağlantı:"

#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:5
msgid ""
"The changed email or name of this contact already\n"
"exists in this folder.  Would you like to add it anyway?"
msgstr ""
"Değiştirilen bağlantı adresinin adı ya da e-posta adresi zaten var.\n"
"Yine de eklemek istiyor musunuz?"

#: addressbook/gui/search/e-addressbook-search-dialog.c:145
#: widgets/misc/e-filter-bar.c:153
msgid "Advanced Search"
msgstr "Gelişmiş Arama"

#: addressbook/gui/search/e-addressbook-search-dialog.c:151
#: mail/mail-search.c:263
msgid "Search"
msgstr "Ara"

#: addressbook/gui/widgets/e-addressbook-model.c:146
msgid "No cards"
msgstr "Kart yok"

#: addressbook/gui/widgets/e-addressbook-model.c:149
msgid "1 card"
msgstr "1 kart"

#: addressbook/gui/widgets/e-addressbook-model.c:152
#, c-format
msgid "%d cards"
msgstr "%d kart"

#: addressbook/gui/widgets/e-addressbook-model.c:408
#, fuzzy
msgid "Error getting book view"
msgstr "%s başlatırken hata oluştu"

#: addressbook/gui/widgets/e-addressbook-table-adapter.c:142
#: addressbook/gui/widgets/e-addressbook-util.c:91
#: addressbook/gui/widgets/e-minicard.c:475
msgid "Error modifying card"
msgstr "Kartlar düzenlenirken bir hata oluştu"

#: addressbook/gui/widgets/e-addressbook-util.c:35
#: shell/evolution-shell-component.c:1141
msgid "Success"
msgstr "Başarıldı"

#: addressbook/gui/widgets/e-addressbook-util.c:36
#: camel/providers/imap/camel-imap-command.c:309
#: camel/providers/imap/camel-imap-command.c:406
#: camel/providers/pop3/camel-pop3-store.c:518 shell/e-shell.c:2186
#: shell/e-storage.c:601 shell/evolution-shell-component.c:1180
msgid "Unknown error"
msgstr "Bilinmeyen hata"

#: addressbook/gui/widgets/e-addressbook-util.c:37
msgid "Repository offline"
msgstr "Depo çevrimdışı"

#: addressbook/gui/widgets/e-addressbook-util.c:38 shell/e-storage.c:587
#: shell/evolution-shell-component.c:1171
msgid "Permission denied"
msgstr "İzin yok"

#: addressbook/gui/widgets/e-addressbook-util.c:39
msgid "Card not found"
msgstr "Kart bulunamadı"

#: addressbook/gui/widgets/e-addressbook-util.c:40
msgid "Card ID already exists"
msgstr "Bu kart numarası var"

#: addressbook/gui/widgets/e-addressbook-util.c:41
msgid "Protocol not supported"
msgstr "Protokol desteklenmiyor"

#: addressbook/gui/widgets/e-addressbook-util.c:42
#: calendar/gui/calendar-model.c:771 calendar/gui/calendar-model.c:1203
#: calendar/gui/dialogs/task-details-page.glade.h:3
#: calendar/gui/e-calendar-table.c:494 calendar/gui/print.c:2299
#: camel/camel-service.c:739 camel/camel-service.c:779
#: camel/camel-service.c:847 camel/camel-service.c:890
#: camel/providers/pop3/camel-pop3-store.c:436
#: camel/providers/pop3/camel-pop3-store.c:513
msgid "Cancelled"
msgstr "İptal Edildi"

#: addressbook/gui/widgets/e-addressbook-util.c:43
msgid "Authentication Failed"
msgstr "Kimlik Denetimi Başarısız."

#: addressbook/gui/widgets/e-addressbook-util.c:44
msgid "Authentication Required"
msgstr "Kimlik Denetimi İsteniyor"

#: addressbook/gui/widgets/e-addressbook-util.c:45
msgid "TLS not Available"
msgstr ""

#: addressbook/gui/widgets/e-addressbook-util.c:46
#, fuzzy
msgid "Addressbook does not exist"
msgstr "%s dosyası bulunamadı."

#: addressbook/gui/widgets/e-addressbook-util.c:47
msgid "Other error"
msgstr "Diğer hata"

#: addressbook/gui/widgets/e-addressbook-util.c:63
#: calendar/gui/dialogs/save-comp.c:50
msgid "Do you want to save changes?"
msgstr "Değişiklikleri kaydetmek istiyor musunuz?"

#: addressbook/gui/widgets/e-addressbook-util.c:82
msgid "Error adding list"
msgstr "Liste eklenirken hata oluştu"

#: addressbook/gui/widgets/e-addressbook-util.c:82
#: addressbook/gui/widgets/e-addressbook-util.c:292
msgid "Error adding card"
msgstr "Kart eklenirken hata oluştu"

#: addressbook/gui/widgets/e-addressbook-util.c:91
msgid "Error modifying list"
msgstr "Liste düzenlenirken hata oluştu"

#: addressbook/gui/widgets/e-addressbook-util.c:101
msgid "Error removing list"
msgstr "Listeyi silerken bir hata oluştu"

#: addressbook/gui/widgets/e-addressbook-util.c:101
#: addressbook/gui/widgets/e-addressbook-util.c:250
#: addressbook/gui/widgets/e-addressbook-view.c:1588
msgid "Error removing card"
msgstr "Kartı silerken bir hata oluştu"

#: addressbook/gui/widgets/e-addressbook-util.c:208
#, fuzzy
msgid "Display Cards?"
msgstr "Görüntüleme"

#: addressbook/gui/widgets/e-addressbook-util.c:209
#, fuzzy
msgid "Display Cards"
msgstr "Görüntüleme"

#: addressbook/gui/widgets/e-addressbook-util.c:213
#, c-format
msgid ""
"Opening %d cards will open %d new windows as well.\n"
"Do you really want to display all of these cards?"
msgstr ""

#: addressbook/gui/widgets/e-addressbook-util.c:348
msgid "Move card to"
msgstr "Kartı taşı:"

#: addressbook/gui/widgets/e-addressbook-util.c:350
msgid "Copy card to"
msgstr "Kartı kopyala:"

#: addressbook/gui/widgets/e-addressbook-util.c:353
msgid "Move cards to"
msgstr "Kartları taşı:"

#: addressbook/gui/widgets/e-addressbook-util.c:355
msgid "Copy cards to"
msgstr "Kartları kopyala:"

#: addressbook/gui/widgets/e-addressbook-view.c:363
#: importers/evolution-gnomecard-importer.c:228 importers/pine-importer.c:642
msgid "Addressbook"
msgstr "Adres Defteri"

#: addressbook/gui/widgets/e-addressbook-view.c:624
#: addressbook/gui/widgets/e-addressbook-view.c:813
#: addressbook/gui/widgets/e-addressbook-view.c:1790
#: ui/evolution-addressbook.xml.h:19
msgid "Save as VCard"
msgstr "VCard olarak kaydet"

#: addressbook/gui/widgets/e-addressbook-view.c:800
msgid "New Contact..."
msgstr "Yeni Bağlantı..."

#: addressbook/gui/widgets/e-addressbook-view.c:801
msgid "New Contact List..."
msgstr "Yeni Bağlantı Listesi..."

#: addressbook/gui/widgets/e-addressbook-view.c:804
msgid "Go to Folder..."
msgstr "Dizine Git..."

#: addressbook/gui/widgets/e-addressbook-view.c:805
msgid "Import..."
msgstr "Al..."

#: addressbook/gui/widgets/e-addressbook-view.c:807
msgid "Search for Contacts..."
msgstr "Bağlantıları Ara..."

#: addressbook/gui/widgets/e-addressbook-view.c:808
msgid "Addressbook Sources..."
msgstr "Adres Defteri Kaynakları..."

#: addressbook/gui/widgets/e-addressbook-view.c:810
msgid "Pilot Settings..."
msgstr "Pilot Ayarları..."

#: addressbook/gui/widgets/e-addressbook-view.c:814
#: ui/evolution-addressbook.xml.h:10
msgid "Forward Contact"
msgstr "Bağlantıyı Gönder"

#: addressbook/gui/widgets/e-addressbook-view.c:815
msgid "Send Message to Contact"
msgstr "Bağlantıya İleti Gönder"

#: addressbook/gui/widgets/e-addressbook-view.c:816
#: ui/evolution-addressbook.h:18 ui/evolution-addressbook.xml.h:16
#: ui/evolution-comp-editor.xml.h:8 ui/evolution-contact-editor.xml.h:4
#: ui/evolution-mail-message.xml.h:67 ui/my-evolution.xml.h:1
msgid "Print"
msgstr "Yazdır"

#: addressbook/gui/widgets/e-addressbook-view.c:818
msgid "Print Envelope"
msgstr "Zarfı Yazdır"

#: addressbook/gui/widgets/e-addressbook-view.c:822
msgid "Copy to folder..."
msgstr "Dizine kopyala..."

#: addressbook/gui/widgets/e-addressbook-view.c:823
msgid "Move to folder..."
msgstr "Dizine taşı..."

#: addressbook/gui/widgets/e-addressbook-view.c:826
#: ui/evolution-addressbook.xml.h:6 ui/evolution-tasks.xml.h:4
msgid "Cut"
msgstr "Kes"

#: addressbook/gui/widgets/e-addressbook-view.c:827
#: ui/evolution-addressbook.xml.h:2 ui/evolution-mail-message.xml.h:8
#: ui/evolution-tasks.xml.h:2
msgid "Copy"
msgstr "Kopyala"

#: addressbook/gui/widgets/e-addressbook-view.c:828
#: ui/evolution-addressbook.xml.h:13 ui/evolution-tasks.xml.h:9
msgid "Paste"
msgstr "Yapıştır"

#: addressbook/gui/widgets/e-addressbook-view.c:829 filter/libfilter-i18n.h:11
#: mail/mail-accounts.c:227 shell/e-shell-folder-commands.c:411
#: ui/evolution-addressbook.h:20 ui/evolution-addressbook.xml.h:8
#: ui/evolution-comp-editor.xml.h:4 ui/evolution-contact-editor.xml.h:2
#: ui/evolution-contact-list-editor.xml.h:2 ui/evolution-mail-message.xml.h:20
msgid "Delete"
msgstr "Sil"

#: addressbook/gui/widgets/e-addressbook-view.c:833
#: calendar/gui/e-day-view.c:3726 calendar/gui/e-week-view.c:3528
msgid "Current View"
msgstr "Şimdiki Görünüm"

#. Minicard view stuff
#. Translators: put here a list of labels you want to see on buttons in
#. addressbook. You may use any character to separate labels but it must
#. also be placed at the begining ot the string
#: addressbook/gui/widgets/e-addressbook-view.c:867
msgid ",123,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"
msgstr ",123,a,b,c,ç,d,e,f,g,h,ı,i,j,k,l,m,n,o,ö,p,q,r,s,ş,t,u,ü,v,w,x,y,z"

#. Translators: put here a list of characters that correspond to buttons
#. in addressbook. You may use any character to separate labels but it
#. must also be placed at the begining ot the string.
#. Use lower case letters if possible.
#: addressbook/gui/widgets/e-addressbook-view.c:872
msgid ",0,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"
msgstr ",0,a,b,c,ç,d,e,f,g,h,ı,i,j,k,l,m,n,o,ö,p,q,r,s,ş,t,u,ü,v,w,x,y,z"

#: addressbook/gui/widgets/e-addressbook-view.c:1290
#, c-format
msgid ""
"The addressbook backend for\n"
"%s\n"
"has crashed. You will have to restart Evolution in order to use it again"
msgstr ""

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:1
msgid "* Click here to add a contact *"
msgstr "* Bağlantı eklemek buraya tıklayın *"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:3
msgid "Assistant Phone"
msgstr "Sekreter Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:4
msgid "Business Address"
msgstr "İşyeri Adresi"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:6
msgid "Business Phone"
msgstr "İş Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:7
msgid "Business Phone 2"
msgstr "2. İş Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:8
msgid "Callback Phone"
msgstr "Geri Arama Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:9
msgid "Car Phone"
msgstr "Araç Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:10
msgid "Company Phone"
msgstr "Şirket Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:18
msgid "Home Address"
msgstr "Ev Adresi"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:20
msgid "Home Phone"
msgstr "Ev Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:21
msgid "Home Phone 2"
msgstr "2. Ev Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:24
msgid "Mobile Phone"
msgstr "Cep Telefonu"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:29
msgid "Other Address"
msgstr "Diğer Adres"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:31
msgid "Other Phone"
msgstr "Diğer Telefonlar"

#: addressbook/gui/widgets/e-addressbook-view.etspec.h:33
msgid "Primary Phone"
msgstr "İlk Telefon"

#: addressbook/gui/widgets/e-minicard-control.c:185
#, c-format
msgid "and %d other cards."
msgstr "ve %d adet diğer kart."

#: addressbook/gui/widgets/e-minicard-control.c:187
msgid "and one other card."
msgstr "ve diğer 1 kart."

#: addressbook/gui/widgets/e-minicard-control.c:316
msgid "Save in addressbook"
msgstr "Adres Defterine kaydet"

#: addressbook/gui/widgets/e-minicard-view.c:140
msgid ""
"\n"
"\n"
"There are no items to show in this view.\n"
"\n"
"Double-click here to create a new Contact."
msgstr ""
"\n"
"\n"
"Bu bakışta gösterilecek öğe yok\n"
"\n"
"Buraya çift tıklayarak bir bağlantı yaratın."

#: addressbook/gui/widgets/e-minicard-view.c:143
msgid ""
"\n"
"\n"
"There are no items to show in this view."
msgstr ""
"\n"
"\n"
"Bu bakışta gösterilecek öğe yok"

#: addressbook/gui/widgets/gal-view-factory-minicard.c:26
msgid "Card View"
msgstr "Kart Görünümü"

#: addressbook/printing/e-contact-print-envelope.c:215
#: addressbook/printing/e-contact-print-envelope.c:236
msgid "Print envelope"
msgstr "Zarfı yazdır"

#: addressbook/printing/e-contact-print.c:1115
msgid "Print cards"
msgstr "Kartları yazdır"

#: addressbook/printing/e-contact-print.c:1175
#: addressbook/printing/e-contact-print.c:1197
msgid "Print card"
msgstr "Kartı yazdır"

#: addressbook/printing/e-contact-print.glade.h:1
msgid "10 pt. Tahoma"
msgstr "10 bn. Tahoma"

#: addressbook/printing/e-contact-print.glade.h:2
msgid "8 pt. Tahoma"
msgstr "8 bn. Tahoma"

#: addressbook/printing/e-contact-print.glade.h:3
msgid "Blank forms at end:"
msgstr "Sonda boş formlar:"

#: addressbook/printing/e-contact-print.glade.h:4
msgid "Body"
msgstr "Gövde"

#: addressbook/printing/e-contact-print.glade.h:5
msgid "Bottom:"
msgstr "Alt:"

#: addressbook/printing/e-contact-print.glade.h:6
msgid "Dimensions:"
msgstr "Boyutlar:"

#: addressbook/printing/e-contact-print.glade.h:7
msgid "F_ont..."
msgstr "_Yazıtipi..."

#: addressbook/printing/e-contact-print.glade.h:8
msgid "Fonts"
msgstr "Yazıtipleri"

#: addressbook/printing/e-contact-print.glade.h:9
msgid "Footer:"
msgstr "Altbilgi:"

#: addressbook/printing/e-contact-print.glade.h:10
msgid "Format"
msgstr "Biçim"

#: addressbook/printing/e-contact-print.glade.h:11
msgid "Header"
msgstr "Üstbilgi"

#: addressbook/printing/e-contact-print.glade.h:12
msgid "Header/Footer"
msgstr "Üstbilgi/Altbilgi"

#: addressbook/printing/e-contact-print.glade.h:13
msgid "Headings"
msgstr "Başlıklar"

#: addressbook/printing/e-contact-print.glade.h:14
msgid "Headings for each letter"
msgstr "Her mektup için başlıklar"

#: addressbook/printing/e-contact-print.glade.h:15
msgid "Height:"
msgstr "Yükseklik:"

#: addressbook/printing/e-contact-print.glade.h:16
msgid "Immediately follow each other"
msgstr "Birbirini ardışık takip et"

#: addressbook/printing/e-contact-print.glade.h:17
msgid "Include:"
msgstr "İçer:"

#: addressbook/printing/e-contact-print.glade.h:18
#: calendar/gui/tasks-control.c:634
msgid "Landscape"
msgstr "Yatay"

#: addressbook/printing/e-contact-print.glade.h:19
msgid "Left:"
msgstr "Sol:"

#: addressbook/printing/e-contact-print.glade.h:20
msgid "Letter tabs on side"
msgstr "Kenarda harf sekmeleri"

#: addressbook/printing/e-contact-print.glade.h:21
msgid "Margins"
msgstr "Marjin"

#: addressbook/printing/e-contact-print.glade.h:22
msgid "Number of columns:"
msgstr "Sütun sayısı:"

#: addressbook/printing/e-contact-print.glade.h:23 mail/mail-config.glade.h:83
msgid "Options"
msgstr "Seçenekler"

#: addressbook/printing/e-contact-print.glade.h:24
#: calendar/gui/tasks-control.c:621
msgid "Orientation"
msgstr "Konum"

#: addressbook/printing/e-contact-print.glade.h:25
#: my-evolution/Locations.h:1671
msgid "Page"
msgstr "Sayfa"

#: addressbook/printing/e-contact-print.glade.h:26
msgid "Page Setup:"
msgstr "Sayfa Ayarları:"

#: addressbook/printing/e-contact-print.glade.h:27
msgid "Paper"
msgstr "Kağıt"

#: addressbook/printing/e-contact-print.glade.h:28
msgid "Paper source:"
msgstr "Kağıt kaynağı:"

#. Portrait
#: addressbook/printing/e-contact-print.glade.h:29
#: calendar/gui/tasks-control.c:627
msgid "Portrait"
msgstr "Portre"

#: addressbook/printing/e-contact-print.glade.h:30
msgid "Preview:"
msgstr "Önizleme:"

#: addressbook/printing/e-contact-print.glade.h:31
msgid "Print using gray shading"
msgstr "Gri tonlama kullanarak yazdır"

#: addressbook/printing/e-contact-print.glade.h:32
msgid "Reverse on even pages"
msgstr "Çift sayfalarda ters çevir"

#: addressbook/printing/e-contact-print.glade.h:33
msgid "Right:"
msgstr "Sağ:"

#: addressbook/printing/e-contact-print.glade.h:34
msgid "Sections:"
msgstr "Bölümler:"

#: addressbook/printing/e-contact-print.glade.h:35
msgid "Shading"
msgstr "Tonlama"

#: addressbook/printing/e-contact-print.glade.h:36
msgid "Size:"
msgstr "Boyut:"

#: addressbook/printing/e-contact-print.glade.h:37
msgid "Start on a new page"
msgstr "Yeni bir sayfada başla"

#: addressbook/printing/e-contact-print.glade.h:38
msgid "Style name:"
msgstr "Stil adı:"

#: addressbook/printing/e-contact-print.glade.h:39
msgid "Top:"
msgstr "Tepe:"

#: addressbook/printing/e-contact-print.glade.h:40
msgid "Type:"
msgstr "Tip:"

#: addressbook/printing/e-contact-print.glade.h:41
msgid "Width:"
msgstr "Genişlik:"

#: addressbook/printing/e-contact-print.glade.h:42
msgid "_Font..."
msgstr "_Yazıtipi..."

#: calendar/cal-util/cal-component.c:1218
msgid "Untitled appointment"
msgstr "Başlıksız toplantı"

#: calendar/cal-util/cal-util.c:500 calendar/cal-util/cal-util.c:522
#: calendar/gui/dialogs/task-details-page.glade.h:6
#: calendar/gui/e-calendar-table.c:418 mail/message-list.c:748
msgid "High"
msgstr "Yüksek"

#: calendar/cal-util/cal-util.c:502 calendar/cal-util/cal-util.c:524
#: calendar/gui/calendar-model.c:1721
#: calendar/gui/dialogs/task-details-page.glade.h:10
#: calendar/gui/e-calendar-table.c:419 mail/message-list.c:747
msgid "Normal"
msgstr "Normal"

#: calendar/cal-util/cal-util.c:504 calendar/cal-util/cal-util.c:526
#: calendar/gui/dialogs/task-details-page.glade.h:8
#: calendar/gui/e-calendar-table.c:420 mail/message-list.c:746
msgid "Low"
msgstr "Düşük"

#. An empty string is the same as 'None'.
#: calendar/cal-util/cal-util.c:520
#: calendar/gui/dialogs/task-details-page.glade.h:14
#: calendar/gui/e-calendar-table.c:421
msgid "Undefined"
msgstr "Tanımsız"

#: calendar/conduits/calendar/calendar-conduit.c:205
msgid "Split Multi-Day Events:"
msgstr ""

#: calendar/conduits/calendar/calendar-conduit.c:1225
#: calendar/conduits/todo/todo-conduit.c:835
msgid "Error while communicating with calendar server"
msgstr "Takvim sunucusuyla iletişimde hata oluştu"

#: calendar/conduits/calendar/calendar-conduit.c:1372
#: calendar/conduits/calendar/calendar-conduit.c:1375
msgid "Could not read pilot's Calendar application block"
msgstr "Pilot'tan takvim uygulama bloğu okunamadı"

#: calendar/conduits/todo/todo-conduit.c:206
msgid "Default Priority:"
msgstr "Öntanımlı Öncelik:"

#: calendar/conduits/todo/todo-conduit.c:951
#: calendar/conduits/todo/todo-conduit.c:954
msgid "Could not read pilot's ToDo application block"
msgstr "Pilot ToDO uygulama bloğu okunamadı"

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:1
msgid "A Bonobo control which displays a task list."
msgstr "Görev listesi gösteren örnek bir Bonobo denetleyici."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:2
msgid "A sample Bonobo control which displays an calendar."
msgstr "Takvim gösteren örnek bir Bonobo denetleyici."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:3
msgid "Calendar and Tasks"
msgstr "Takvim ve Görevler"

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:4
#, fuzzy
msgid "Configuration control for the Evolution Calendar."
msgstr "Evolution e-posta programı mimarisi."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:5
msgid "Configure your timezone, Calendar and Task List here "
msgstr ""

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:6
msgid "Evolution calendar iTip/iMip viewer"
msgstr "Evolution takvimi iTip/iMip görüntüleyici"

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:7
msgid "Evolution component for handling the calendar."
msgstr "Takvimi düzenleyen Evolution bileşeni."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:8
#, fuzzy
msgid "Factory for the Evolution Tasks control"
msgstr "Evolution e-posta programı mimarisi."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:9
msgid "Factory for the calendar iTip view control"
msgstr "Takvim iTip görüntü kontrolü mimarisi"

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:10
msgid "Factory for the sample Calendar control"
msgstr "Örnek Takvim kontrolü mimarisi"

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:11
#, fuzzy
msgid "Factory to centralize calendar component editor dialogs"
msgstr "Örnek Takvim kontrolü mimarisi"

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:12
#, fuzzy
msgid "Factory to create a component editor factory"
msgstr "Bileşen düzenleyici mimarisi oluşturulamadı."

#: calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.oaf.in.h:1
msgid "Alarm notification service"
msgstr "Alarm bilgilendirme servisi"

#: calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.oaf.in.h:2
msgid "Factory for the alarm notification service"
msgstr "Alarm bilgilendirme servisi mimarisi"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:216
msgid "Starting:"
msgstr "Başlangıç:"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:218
msgid "Ending:"
msgstr "Bitiş:"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:231
msgid "invalid time"
msgstr "geçersiz saat"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:276
msgid "Evolution Alarm"
msgstr "Evolution Alarmı"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:371
#, c-format
msgid "Alarm on %s"
msgstr "%s tarihinde Alarm"

#: calendar/gui/alarm-notify/alarm-notify.glade.h:1
#: ui/evolution-comp-editor.xml.h:1
msgid "C_lose"
msgstr "_Kapat"

#: calendar/gui/alarm-notify/alarm-notify.glade.h:2
msgid "Snoo_ze"
msgstr ""

#: calendar/gui/alarm-notify/alarm-notify.glade.h:3
msgid "Snooze time (minutes)"
msgstr "Dinlenme zamanı (dakika)"

#: calendar/gui/alarm-notify/alarm-notify.glade.h:4
msgid "_Edit appointment"
msgstr "_Toplantıyı düzenle"

#: calendar/gui/alarm-notify/alarm-queue.c:680
msgid "No description available."
msgstr "Açıklama yok."

#: calendar/gui/alarm-notify/alarm-queue.c:741
msgid ""
"Evolution does not support calendar reminders with\n"
"email notifications yet, but this reminder was\n"
"configured to send an email.  Evolution will display\n"
"a normal reminder dialog box instead."
msgstr ""

#: calendar/gui/alarm-notify/alarm-queue.c:759
#: calendar/gui/tasks-control.c:454 mail/mail-callbacks.c:2924
#: widgets/misc/e-messagebox.c:159
msgid "Warning"
msgstr "Uyarı"

#: calendar/gui/alarm-notify/alarm-queue.c:764
#, c-format
msgid ""
"An Evolution Calendar reminder is about to trigger. This reminder is "
"configured to run the following program:\n"
"\n"
"        %s\n"
"\n"
"Are you sure you want to run this program?"
msgstr ""

#: calendar/gui/alarm-notify/alarm-queue.c:778
msgid "Do not ask me about this program again."
msgstr ""

#: calendar/gui/alarm-notify/notify-main.c:169 calendar/gui/main.c:62
msgid "Could not initialize GNOME"
msgstr "GNOME başlatılamıyor"

#: calendar/gui/alarm-notify/notify-main.c:184
msgid "Could not create the alarm notify service factory"
msgstr "Alarm bilgilendirme servis mimarisi oluşturamadım"

#: calendar/gui/cal-search-bar.c:50
msgid "Summary contains"
msgstr "Özet içeriği"

#: calendar/gui/cal-search-bar.c:51
msgid "Description contains"
msgstr "Açıklama içeriği"

#: calendar/gui/cal-search-bar.c:52
msgid "Comment contains"
msgstr "Yorum içeriği"

#: calendar/gui/cal-search-bar.c:386 mail/mail-ops.c:1115
msgid "Unmatched"
msgstr "Eşleme yok"

#: calendar/gui/calendar-commands.c:405
msgid "%A %d %B %Y"
msgstr "%d %B %A %Y"

#. strftime format %a = abbreviated weekday name, %d = day of month,
#. %b = abbreviated month name. Don't use any other specifiers.
#: calendar/gui/calendar-commands.c:408 calendar/gui/e-day-view-top-item.c:288
#: calendar/gui/e-day-view.c:1436 calendar/gui/e-week-view-main-item.c:333
msgid "%a %d %b"
msgstr "%d %b %a"

#: calendar/gui/calendar-commands.c:410 calendar/gui/calendar-commands.c:415
#: calendar/gui/calendar-commands.c:417
msgid "%a %d %b %Y"
msgstr "%d %b %a %Y"

#: calendar/gui/calendar-commands.c:428 calendar/gui/calendar-commands.c:435
#: calendar/gui/calendar-commands.c:441 calendar/gui/calendar-commands.c:443
msgid "%d %B %Y"
msgstr "%d %B %Y"

#. strftime format %d = day of month, %B = full
#. month name. You can change the order but don't
#. change the specifiers or add anything.
#: calendar/gui/calendar-commands.c:433
#: calendar/gui/e-week-view-main-item.c:341 calendar/gui/print.c:1491
msgid "%d %B"
msgstr "%d %B"

#: calendar/gui/calendar-commands.c:799
msgid "Could not create the calendar view.  Please check your ORBit and OAF setup."
msgstr "Takvim görünümü yaratılamadı. ORBit ve OAF kurulumunu gözden geçirin."

#: calendar/gui/calendar-model.c:424 calendar/gui/calendar-model.c:983
#: calendar/gui/e-calendar-table.c:397
msgid "Private"
msgstr "Özel"

#: calendar/gui/calendar-model.c:427 calendar/gui/calendar-model.c:985
#: calendar/gui/e-calendar-table.c:398
msgid "Confidential"
msgstr "Gizli"

#: calendar/gui/calendar-model.c:430 calendar/gui/e-calendar-table.c:396
msgid "Public"
msgstr "Genel"

#: calendar/gui/calendar-model.c:542
msgid "N"
msgstr "K"

#: calendar/gui/calendar-model.c:542
msgid "S"
msgstr "G"

#: calendar/gui/calendar-model.c:544
msgid "E"
msgstr "D"

#: calendar/gui/calendar-model.c:544
msgid "W"
msgstr "B"

#: calendar/gui/calendar-model.c:609 calendar/gui/calendar-model.c:1153
#: calendar/gui/e-calendar-table.c:470
msgid "Free"
msgstr "Boş"

#: calendar/gui/calendar-model.c:611 calendar/gui/e-calendar-table.c:471
#: calendar/gui/e-meeting-time-sel.c:438
#: shell/evolution-shell-component.c:1165
msgid "Busy"
msgstr "Meşgul"

#: calendar/gui/calendar-model.c:762 calendar/gui/calendar-model.c:1197
#: calendar/gui/dialogs/task-details-page.glade.h:11
#: calendar/gui/e-calendar-table.c:491 calendar/gui/print.c:2290
msgid "Not Started"
msgstr "Başlamadı"

#: calendar/gui/calendar-model.c:765 calendar/gui/calendar-model.c:1199
#: calendar/gui/dialogs/task-details-page.glade.h:7
#: calendar/gui/e-calendar-table.c:492 calendar/gui/print.c:2293
msgid "In Progress"
msgstr "İşlemde"

#: calendar/gui/calendar-model.c:768 calendar/gui/calendar-model.c:1201
#: calendar/gui/dialogs/task-details-page.glade.h:4
#: calendar/gui/e-calendar-table.c:493 calendar/gui/e-meeting-model.c:330
#: calendar/gui/e-meeting-model.c:353 calendar/gui/print.c:2296
msgid "Completed"
msgstr "Tamamlandı"

#: calendar/gui/calendar-model.c:1055
msgid ""
"The geographical position must be entered in the format: \n"
"\n"
"45.436845,125.862501"
msgstr ""
"Coğrafi konum aşağıdaki biçimde girilmelidir:\n"
"\n"
"45.436845,125.862501"

#. An empty string is the same as 'None'.
#: calendar/gui/calendar-model.c:1195 calendar/gui/dialogs/meeting-page.c:309
#: calendar/gui/dialogs/meeting-page.glade.h:1 composer/e-msg-composer.c:1967
#: mail/folder-browser.c:1718 mail/mail-account-gui.c:1230
#: mail/mail-account-gui.c:1650 mail/mail-accounts.c:453
#: mail/mail-accounts.c:468 mail/mail-config.glade.h:79
#: widgets/e-timezone-dialog/e-timezone-dialog.c:204
#: widgets/misc/e-cell-date-edit.c:250 widgets/misc/e-dateedit.c:452
#: widgets/misc/e-dateedit.c:1473 widgets/misc/e-dateedit.c:1588
msgid "None"
msgstr "Yok"

#: calendar/gui/calendar-model.c:1723
msgid "Recurring"
msgstr "Tekrarlama"

#: calendar/gui/calendar-model.c:1725
msgid "Assigned"
msgstr "Görevlendirildi"

#: calendar/gui/calendar-model.c:1731 calendar/gui/e-meeting-model.c:302
#: calendar/gui/e-meeting-model.c:312 calendar/gui/e-meeting-model.c:569
#: calendar/gui/e-meeting-model.c:863
msgid "Yes"
msgstr "Evet"

#: calendar/gui/calendar-model.c:1731 calendar/gui/e-meeting-model.c:314
#: calendar/gui/e-meeting-model.c:864
msgid "No"
msgstr "Hayır"

#: calendar/gui/calendar-view-factory.c:148
msgid "Day View"
msgstr "Gün Görünümü"

#: calendar/gui/calendar-view-factory.c:151
msgid "Work Week View"
msgstr "Çalışma Haftası Görünümü"

#: calendar/gui/calendar-view-factory.c:154
msgid "Week View"
msgstr "Hafta Görünümü"

#: calendar/gui/calendar-view-factory.c:157
msgid "Month View"
msgstr "Ay Görünümü"

#: calendar/gui/component-factory.c:71 calendar/gui/gnome-cal.c:1372
#: importers/netscape-importer.c:1873 my-evolution/my-evolution.glade.h:3
#: shell/e-local-storage.c:176 shell/e-shortcuts.c:1059
msgid "Calendar"
msgstr "Takvim"

#: calendar/gui/component-factory.c:72
msgid "Folder containing appointments and events"
msgstr "Randevuları tutan dizin"

#: calendar/gui/component-factory.c:76
msgid "Public Calendar"
msgstr "Genel Takvim"

#: calendar/gui/component-factory.c:77
#, fuzzy
msgid "Public folder containing appointments and events"
msgstr "Randevuları tutan dizin"

#: calendar/gui/component-factory.c:81 calendar/gui/e-tasks.c:738
#: calendar/gui/print.c:1777 calendar/gui/tasks-control.c:508
#: calendar/importers/icalendar-importer.c:704
#: importers/netscape-importer.c:1875 my-evolution/e-summary-tasks.c:327
#: my-evolution/e-summary-tasks.c:345 shell/e-local-storage.c:182
#: shell/e-shortcuts.c:1063
msgid "Tasks"
msgstr "Görevler"

#: calendar/gui/component-factory.c:82
msgid "Folder containing to-do items"
msgstr "Yapılacaklar listesini tutan dizin"

#: calendar/gui/component-factory.c:86
msgid "Public Tasks"
msgstr "Genel Görevler"

#: calendar/gui/component-factory.c:87
#, fuzzy
msgid "Public folder containing to-do items"
msgstr "Yapılacaklar listesini tutan dizin"

#: calendar/gui/component-factory.c:750
msgid "New appointment"
msgstr "Yeni randevu"

#: calendar/gui/component-factory.c:750
msgid "_Appointment"
msgstr "_Randevu"

#: calendar/gui/component-factory.c:751
msgid "Create a new appointment"
msgstr "Yeni bir randevu oluştur"

#: calendar/gui/component-factory.c:755
msgid "New meeting"
msgstr "Yeni toplantı"

#: calendar/gui/component-factory.c:755
msgid "_Meeting"
msgstr "_Toplantı"

#: calendar/gui/component-factory.c:756
msgid "Create a new meeting request"
msgstr "Yeni bir toplantı isteği oluştur"

#: calendar/gui/component-factory.c:760
msgid "New task"
msgstr "Yeni görev"

#: calendar/gui/component-factory.c:760
msgid "_Task"
msgstr "_Görev"

#: calendar/gui/component-factory.c:761
msgid "Create a new task"
msgstr "Yeni bir görev oluştur"

#: calendar/gui/component-factory.c:765
#, fuzzy
msgid "New All Day Appointment"
msgstr "Yeni Randevu"

#: calendar/gui/component-factory.c:765
#, fuzzy
msgid "All _Day Appointment"
msgstr "Yeni _Randevu"

#: calendar/gui/component-factory.c:766
#, fuzzy
msgid "Create a new all-day appointment"
msgstr "Yeni bir randevu oluştur"

#: calendar/gui/control-factory.c:123
#, c-format
msgid "Could not open the folder in '%s'"
msgstr "`%s' dizini açılamadı."

#: calendar/gui/control-factory.c:167
msgid "The URI that the calendar will display"
msgstr "Takvimin gösterecek olduğu URI"

#: calendar/gui/control-factory.c:174
msgid "The type of view to show"
msgstr ""

#: calendar/gui/dialogs/alarm-options.c:359
msgid "Audio Alarm Options"
msgstr "Ses Alarm Seçenekleri"

#: calendar/gui/dialogs/alarm-options.c:368
msgid "Message Alarm Options"
msgstr "İleti Alarm Seçenekleri"

#: calendar/gui/dialogs/alarm-options.c:377
msgid "Mail Alarm Options"
msgstr "E-posta Alarmı Seçenekleri"

#: calendar/gui/dialogs/alarm-options.c:386
msgid "Program Alarm Options"
msgstr "Program Alarm Seçenekleri"

#: calendar/gui/dialogs/alarm-options.c:395
msgid "Unknown Alarm Options"
msgstr "Bilinmeyen Alarm Seçenekleri"

#: calendar/gui/dialogs/alarm-options.glade.h:1
msgid "Alarm Repeat"
msgstr "Alarm Tekrarı"

#: calendar/gui/dialogs/alarm-options.glade.h:2
msgid ""
"Evolution does not yet support email notification for reminders.  You will "
"not be able to edit the options for this reminder."
msgstr ""

#: calendar/gui/dialogs/alarm-options.glade.h:3
msgid "Message to Display"
msgstr "Gösterilecek İleti"

#: calendar/gui/dialogs/alarm-options.glade.h:4
msgid "Play sound:"
msgstr "Ses çal:"

#: calendar/gui/dialogs/alarm-options.glade.h:5
msgid "Repeat the alarm"
msgstr "Alarmı tekrar et"

#: calendar/gui/dialogs/alarm-options.glade.h:6
msgid "Run program:"
msgstr "Program çalıştır:"

#: calendar/gui/dialogs/alarm-options.glade.h:7
msgid "With these arguments:"
msgstr "Bu argümanlarla:"

#: calendar/gui/dialogs/alarm-options.glade.h:8 filter/filter-datespec.c:73
#: filter/filter.glade.h:20
msgid "days"
msgstr "gün"

#: calendar/gui/dialogs/alarm-options.glade.h:9
msgid "extra times every"
msgstr ""

#: calendar/gui/dialogs/alarm-options.glade.h:10 filter/filter-datespec.c:72
#: filter/filter.glade.h:21
msgid "hours"
msgstr "saat"

#: calendar/gui/dialogs/alarm-options.glade.h:11 filter/filter-datespec.c:71
#: filter/filter.glade.h:22
msgid "minutes"
msgstr "dakika"

#: calendar/gui/dialogs/alarm-page.c:319
#, c-format
msgid "%d days"
msgstr "%d gün"

#: calendar/gui/dialogs/alarm-page.c:322
msgid "1 day"
msgstr "1 gün"

#: calendar/gui/dialogs/alarm-page.c:327
#, c-format
msgid "%d weeks"
msgstr "%d hafta"

#: calendar/gui/dialogs/alarm-page.c:330
msgid "1 week"
msgstr "1 hafta"

#: calendar/gui/dialogs/alarm-page.c:335
#, c-format
msgid "%d hours"
msgstr "%d saat"

#: calendar/gui/dialogs/alarm-page.c:338
msgid "1 hour"
msgstr "1 saat"

#: calendar/gui/dialogs/alarm-page.c:343
#, c-format
msgid "%d minutes"
msgstr "%d dakika"

#: calendar/gui/dialogs/alarm-page.c:346
msgid "1 minute"
msgstr "1 dakika"

#: calendar/gui/dialogs/alarm-page.c:351
#, c-format
msgid "%d seconds"
msgstr "%d saniye"

#: calendar/gui/dialogs/alarm-page.c:354
msgid "1 second"
msgstr "1 saniye"

#: calendar/gui/dialogs/alarm-page.c:383
#: calendar/gui/dialogs/alarm-page.glade.h:4
msgid "Play a sound"
msgstr "Bir ses çal"

#: calendar/gui/dialogs/alarm-page.c:387
#: calendar/gui/dialogs/alarm-page.glade.h:3
msgid "Display a message"
msgstr "Bir mesaj göster"

#: calendar/gui/dialogs/alarm-page.c:391
msgid "Send an email"
msgstr "Bir e-posta gönder"

#: calendar/gui/dialogs/alarm-page.c:395
#: calendar/gui/dialogs/alarm-page.glade.h:6
msgid "Run a program"
msgstr "Bir program çalıştır"

#: calendar/gui/dialogs/alarm-page.c:401
msgid "Unknown action to be performed"
msgstr "Bilinmeyen eylem"

#: calendar/gui/dialogs/alarm-page.c:413
#, fuzzy, c-format
msgid "%s %s before the start of the appointment"
msgstr "randevu başlangıcı"

#: calendar/gui/dialogs/alarm-page.c:416
#, fuzzy, c-format
msgid "%s %s after the start of the appointment"
msgstr "randevu başlangıcı"

#: calendar/gui/dialogs/alarm-page.c:421
#, fuzzy, c-format
msgid "%s at the start of the appointment"
msgstr "randevu başlangıcı"

#: calendar/gui/dialogs/alarm-page.c:430
#, fuzzy, c-format
msgid "%s %s before the end of the appointment"
msgstr "Randevuyu sil"

#: calendar/gui/dialogs/alarm-page.c:433
#, fuzzy, c-format
msgid "%s %s after the end of the appointment"
msgstr "randevu başlangıcı"

#: calendar/gui/dialogs/alarm-page.c:438
#, fuzzy, c-format
msgid "%s at the end of the appointment"
msgstr "randevu sonu"

#: calendar/gui/dialogs/alarm-page.c:462
#, fuzzy, c-format
msgid "%s at %s"
msgstr "%s sunucu %s"

#: calendar/gui/dialogs/alarm-page.c:468
#, c-format
msgid "%s for an unknown trigger type"
msgstr ""

#: calendar/gui/dialogs/alarm-page.glade.h:1
#: calendar/gui/dialogs/recurrence-page.glade.h:2
msgid "Basics"
msgstr "Temel"

#: calendar/gui/dialogs/alarm-page.glade.h:2
#: calendar/gui/dialogs/recurrence-page.glade.h:3
msgid "Date/Time:"
msgstr "Tarih/Zaman:"

#: calendar/gui/dialogs/alarm-page.glade.h:5
msgid "Reminders"
msgstr "Hatırlatıcılar"

#: calendar/gui/dialogs/alarm-page.glade.h:7
#: calendar/gui/dialogs/recurrence-page.glade.h:8
#: calendar/gui/e-itip-control.c:1027 calendar/gui/e-itip-control.glade.h:11
msgid "Summary:"
msgstr "Özet:"

#: calendar/gui/dialogs/alarm-page.glade.h:10
msgid "_Options..."
msgstr "_Seçenekler..."

#: calendar/gui/dialogs/alarm-page.glade.h:11
msgid "after"
msgstr "sonra"

#: calendar/gui/dialogs/alarm-page.glade.h:12
msgid "before"
msgstr "önce"

#: calendar/gui/dialogs/alarm-page.glade.h:13
#: calendar/gui/dialogs/recurrence-page.glade.h:14
msgid "day(s)"
msgstr "gün"

#: calendar/gui/dialogs/alarm-page.glade.h:14
msgid "end of appointment"
msgstr "randevu sonu"

#: calendar/gui/dialogs/alarm-page.glade.h:15
msgid "hour(s)"
msgstr "saat"

#: calendar/gui/dialogs/alarm-page.glade.h:16 mail/mail-config.glade.h:182
msgid "minute(s)"
msgstr "dakika"

#: calendar/gui/dialogs/alarm-page.glade.h:17
msgid "start of appointment"
msgstr "randevu başlangıcı"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:1
msgid "05 minutes"
msgstr "5 dakika"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:2
msgid "10 minutes"
msgstr "10 dakika"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:3
msgid "15 minutes"
msgstr "15 dakika"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:4
msgid "30 minutes"
msgstr "30 dakika"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:5
msgid "60 minutes"
msgstr "60 dakika"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:6 mail/mail-config.glade.h:14
msgid "Alerts"
msgstr "Alarmlar"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:7
msgid "Calendar and Tasks Settings"
msgstr "Takvim ve Görev Ayarları"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:8
msgid "Color for overdue tasks"
msgstr "Tamamlanamayan görevlerin rengi"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:9
msgid "Color for tasks due today"
msgstr "Bugün tamamlanması gereken görevlerin rengi"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:10
msgid "Day _ends:"
msgstr "Gün _bitimi:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:11
msgid "Days"
msgstr "Gün"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:12
#: calendar/gui/dialogs/recurrence-page.c:1135
#: calendar/gui/e-itip-control.c:655
msgid "Friday"
msgstr "Cuma"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:13
msgid "Hours"
msgstr "Saat"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:14
msgid "Minutes"
msgstr "Dakika"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:15
#: calendar/gui/dialogs/recurrence-page.c:1131
#: calendar/gui/e-itip-control.c:651
msgid "Monday"
msgstr "Pazartesi"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:16
msgid "S_un"
msgstr "_Paz"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:17
#: calendar/gui/dialogs/recurrence-page.c:1136
#: calendar/gui/e-itip-control.c:656
msgid "Saturday"
msgstr "Cumartesi"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:18
msgid "Sh_ow a reminder"
msgstr ""

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:19
msgid "Show week _numbers in date navigator"
msgstr ""

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:20
#: calendar/gui/dialogs/recurrence-page.c:1137
#: calendar/gui/e-itip-control.c:650
msgid "Sunday"
msgstr "Pazar"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:21
#, fuzzy
msgid "T_asks due today:"
msgstr "_Bugünün işleri:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:22
msgid "T_hu"
msgstr "P_er"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:23
msgid "Task List"
msgstr "Görev Listesi"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:24
#: calendar/gui/dialogs/recurrence-page.c:1134
#: calendar/gui/e-itip-control.c:654
msgid "Thursday"
msgstr "Perşembe"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:25
msgid "Time"
msgstr "Zaman"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:26
msgid "Time _zone:"
msgstr "Zaman _dilimi:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:27
msgid "Time format:"
msgstr "Zaman biçimi:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:28
#: calendar/gui/dialogs/recurrence-page.c:1132
#: calendar/gui/e-itip-control.c:652
msgid "Tuesday"
msgstr "Salı"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:29
msgid "W_eek starts:"
msgstr "_Hafta başı:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:30
#: calendar/gui/dialogs/recurrence-page.c:1133
#: calendar/gui/e-itip-control.c:653
msgid "Wednesday"
msgstr "Çarşamba"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:31
#: ui/evolution-calendar.xml.h:24
msgid "Work Week"
msgstr "Çalışma Haftası"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:32
msgid "Work days:"
msgstr "Çalışma günleri:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:33
msgid "_12 hour (AM/PM)"
msgstr "_12 saat (ÖÖ/ÖS)"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:34
msgid "_24 hour"
msgstr "_24 saat"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:35
msgid "_Ask for confirmation when deleting items"
msgstr "Öğ_eleri silmeden önce sor"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:36
msgid "_Compress weekends in month view"
msgstr ""

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:37
msgid "_Day begins:"
msgstr "_Gün başı:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:38
msgid "_Display"
msgstr "_Göster"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:39
msgid "_Fri"
msgstr "_Cum"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:40
#: mail/mail-config.glade.h:157
msgid "_General"
msgstr "_Genel"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:41
#, fuzzy
msgid "_Hide completed tasks after"
msgstr "_Silenen İletileri Gizle"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:42
msgid "_Mon"
msgstr "P_zt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:43
#, fuzzy
msgid "_Overdue tasks:"
msgstr "_Zamanı geçen görevler:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:44
msgid "_Sat"
msgstr "_Cmt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:45
msgid "_Show appointment end times in week and month views"
msgstr ""

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:46
#, fuzzy
msgid "_Time divisions:"
msgstr "_Zaman bölümleri:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:47
msgid "_Tue"
msgstr "_Sal"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:48
msgid "_Wed"
msgstr "Ç_ar"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:49
msgid "before every appointment"
msgstr "her randevudan önce"

#: calendar/gui/dialogs/cancel-comp.c:56
msgid ""
"The event being deleted is a meeting, would you like to send a cancellation "
"notice?"
msgstr ""

#: calendar/gui/dialogs/cancel-comp.c:59
msgid "Are you sure you want to cancel and delete this meeting?"
msgstr "Gerçekten bu toplantıyı iptal edip silmek istiyor musunuz?"

#: calendar/gui/dialogs/cancel-comp.c:65
msgid ""
"The task being deleted is assigned, would you like to send a cancellation "
"notice?"
msgstr ""

#: calendar/gui/dialogs/cancel-comp.c:68
msgid "Are you sure you want to cancel and delete this task?"
msgstr "Gerçekten bu görevi iptal edip silmek istiyor musunuz?"

#: calendar/gui/dialogs/cancel-comp.c:74
msgid ""
"The journal entry being deleted is published, would you like to send a "
"cancellation notice?"
msgstr ""

#: calendar/gui/dialogs/cancel-comp.c:77
#, fuzzy
msgid "Are you sure you want to cancel and delete this journal entry?"
msgstr "`%s' başlıksız günlük girdisini silmek istiyor musunuz?"

#: calendar/gui/dialogs/changed-comp.c:59
msgid "This event has been deleted."
msgstr "Olay silindi."

#: calendar/gui/dialogs/changed-comp.c:63
msgid "This task has been deleted."
msgstr "Bu görev silindi."

#: calendar/gui/dialogs/changed-comp.c:67
#, fuzzy
msgid "This journal entry has been deleted."
msgstr "Olay silindi."

#: calendar/gui/dialogs/changed-comp.c:76
#, c-format
msgid "%s  You have made changes. Forget those changes and close the editor?"
msgstr ""

#: calendar/gui/dialogs/changed-comp.c:78
#, c-format
msgid "%s  You have made no changes, close the editor?"
msgstr "%s  Hiç değişiklik yapılmadı. Düzenleyici kapatılsın mı?"

#: calendar/gui/dialogs/changed-comp.c:83
msgid "This event has been changed."
msgstr "Bu olay değiştirildi."

#: calendar/gui/dialogs/changed-comp.c:87
msgid "This task has been changed."
msgstr "Görev değiştirildi."

#: calendar/gui/dialogs/changed-comp.c:91
#, fuzzy
msgid "This journal entry has been changed."
msgstr "Görev değiştirildi."

#: calendar/gui/dialogs/changed-comp.c:100
#, c-format
msgid "%s  You have made changes. Forget those changes and update the editor?"
msgstr ""

#: calendar/gui/dialogs/changed-comp.c:102
#, c-format
msgid "%s  You have made no changes, update the editor?"
msgstr "%s  Hiç değişiklik yapılmadı. Düzenleyici güncellensin mi?"

#: calendar/gui/dialogs/comp-editor-page.c:414
#, c-format
msgid "Validation error: %s"
msgstr "Onaylama hatası: %s"

#: calendar/gui/dialogs/comp-editor-util.c:188 calendar/gui/print.c:2208
msgid " to "
msgstr ""

#: calendar/gui/dialogs/comp-editor-util.c:192 calendar/gui/print.c:2212
msgid " (Completed "
msgstr " (Tamamlanan "

#: calendar/gui/dialogs/comp-editor-util.c:194 calendar/gui/print.c:2214
msgid "Completed "
msgstr "Tamamlanan "

#: calendar/gui/dialogs/comp-editor-util.c:199 calendar/gui/print.c:2219
#, fuzzy
msgid " (Due "
msgstr "Tarihe göre "

#: calendar/gui/dialogs/comp-editor-util.c:201 calendar/gui/print.c:2221
msgid "Due "
msgstr "Tarihe göre "

#: calendar/gui/dialogs/comp-editor.c:343
msgid "Could not update invalid object"
msgstr "Öğe güncellenemedi"

#: calendar/gui/dialogs/comp-editor.c:346
msgid "Object not found, not updated"
msgstr "Öğe bulunamadı ve güncellenemedi"

#: calendar/gui/dialogs/comp-editor.c:349
msgid "You don't have permissions to update this object"
msgstr "Bu öğeyi güncellemek için izniniz yoktur."

#: calendar/gui/dialogs/comp-editor.c:352
msgid "Could not update object"
msgstr "Öğe güncellenemedi"

#: calendar/gui/dialogs/comp-editor.c:798
msgid "Edit Appointment"
msgstr "Randevuyu Düzenle"

#: calendar/gui/dialogs/comp-editor.c:803
#, c-format
msgid "Appointment - %s"
msgstr "Randevu - %s"

#: calendar/gui/dialogs/comp-editor.c:806
#, c-format
msgid "Task - %s"
msgstr "Görev - %s"

#: calendar/gui/dialogs/comp-editor.c:809
#, c-format
msgid "Journal entry - %s"
msgstr ""

#: calendar/gui/dialogs/comp-editor.c:823
msgid "No summary"
msgstr "Özet yok"

#: calendar/gui/dialogs/comp-editor.c:1221
#: calendar/gui/e-calendar-table.c:1073 calendar/gui/e-day-view.c:3982
#: calendar/gui/e-week-view.c:3762 composer/e-msg-composer.c:1151
msgid "Save as..."
msgstr "Farklı kaydet..."

#: calendar/gui/dialogs/comp-editor.c:1322
#: calendar/gui/dialogs/comp-editor.c:1346
#: calendar/gui/dialogs/comp-editor.c:1370
msgid "Changes made to this item may be discarded if an update arrives via email"
msgstr ""

#: calendar/gui/dialogs/comp-editor.c:1397
msgid "Unable to obtain current version!"
msgstr ""

#: calendar/gui/dialogs/delete-comp.c:96
#, c-format
msgid "Are you sure you want to delete the appointment `%s'?"
msgstr "Gerçekten '%s' randevusunu silmek istiyor musunuz?"

#: calendar/gui/dialogs/delete-comp.c:99
msgid "Are you sure you want to delete this untitled appointment?"
msgstr "Gerçekten bu randevuyu silmek istiyor musunuz?"

#: calendar/gui/dialogs/delete-comp.c:105
#, c-format
msgid "Are you sure you want to delete the task `%s'?"
msgstr "Gerçekten %s görevini silmek istiyor musunuz?"

#: calendar/gui/dialogs/delete-comp.c:108
msgid "Are you sure you want to delete this untitled task?"
msgstr "Gerçekten bu görevi silmek istiyor musunuz?"

#: calendar/gui/dialogs/delete-comp.c:114
#, c-format
msgid "Are you sure you want to delete the journal entry `%s'?"
msgstr "`%s' başlıksız günlük girdisini silmek istiyor musunuz?"

#: calendar/gui/dialogs/delete-comp.c:117
msgid "Are you sure want to delete this untitled journal entry?"
msgstr "Bu başlıksız günlük girdisini silmek istiyor musunuz?"

#: calendar/gui/dialogs/delete-comp.c:132
#, c-format
msgid "Are you sure you want to delete %d appointments?"
msgstr "Gerçekten %d randevuyu silmek istiyor musunuz?"

#: calendar/gui/dialogs/delete-comp.c:137
#, c-format
msgid "Are you sure you want to delete %d tasks?"
msgstr "Gerçekten %d görevi silmek istiyor musunuz?"

#: calendar/gui/dialogs/delete-comp.c:142
#, c-format
msgid "Are you sure you want to delete %d journal entries?"
msgstr "Gerçekten %d günlük girdisini silmek istiyor musunuz?"

#: calendar/gui/dialogs/e-delegate-dialog.glade.h:1
msgid "Addressbook..."
msgstr "Adres Defteri..."

#: calendar/gui/dialogs/e-delegate-dialog.glade.h:2
msgid "Delegate To:"
msgstr "Dağıt:"

#: calendar/gui/dialogs/e-delegate-dialog.glade.h:3
#, fuzzy
msgid "Enter Delegate"
msgstr "Bitiş Tarihi"

#: calendar/gui/dialogs/event-editor.c:217 calendar/gui/print.c:2247
msgid "Appointment"
msgstr "Randevu"

#: calendar/gui/dialogs/event-editor.c:222
msgid "Reminder"
msgstr "Hatırlatıcı"

#: calendar/gui/dialogs/event-editor.c:227
msgid "Recurrence"
msgstr "Tekrarlama"

#: calendar/gui/dialogs/event-editor.c:232
#: calendar/gui/dialogs/event-editor.c:299
#: calendar/gui/dialogs/event-editor.c:435
msgid "Scheduling"
msgstr "Zaman Düzenleme"

#: calendar/gui/dialogs/event-editor.c:237
#: calendar/gui/dialogs/event-editor.c:302
#: calendar/gui/dialogs/event-editor.c:438 ui/evolution-event-editor.xml.h:6
msgid "Meeting"
msgstr "Toplantı"

#: calendar/gui/dialogs/event-page.c:656 calendar/gui/dialogs/task-page.c:567
#, fuzzy
msgid "Start date is wrong"
msgstr "Başlangıç Tarihi"

#: calendar/gui/dialogs/event-page.c:666
msgid "End date is wrong"
msgstr "Bitiş tarihi yanlış"

#: calendar/gui/dialogs/event-page.c:689
msgid "Start time is wrong"
msgstr "Başlangıç tarihi yanlış"

#: calendar/gui/dialogs/event-page.c:696
msgid "End time is wrong"
msgstr "Bitiş tarihi yanlış"

#: calendar/gui/dialogs/event-page.glade.h:1
msgid "A_ll day event"
msgstr "_Tüm gün olayları"

#: calendar/gui/dialogs/event-page.glade.h:2
msgid "B_usy"
msgstr "Meşgu_l"

#: calendar/gui/dialogs/event-page.glade.h:4
#: calendar/gui/dialogs/task-page.glade.h:2
#: calendar/gui/e-calendar-table.etspec.h:5
msgid "Classification"
msgstr "Sınıflandırma"

#: calendar/gui/dialogs/event-page.glade.h:5
#: calendar/gui/dialogs/task-page.glade.h:3
msgid "Con_fidential"
msgstr "_Gizli"

#: calendar/gui/dialogs/event-page.glade.h:6
#: calendar/gui/dialogs/task-page.glade.h:4
msgid "Date & Time"
msgstr "Tarih & Zaman"

#: calendar/gui/dialogs/event-page.glade.h:7
msgid "F_ree"
msgstr "_Boş"

#: calendar/gui/dialogs/event-page.glade.h:8
msgid "L_ocation:"
msgstr "_Konum: "

#: calendar/gui/dialogs/event-page.glade.h:9
#: calendar/gui/dialogs/task-page.glade.h:6
msgid "Pri_vate"
msgstr "Ö_zel"

#: calendar/gui/dialogs/event-page.glade.h:10
#: calendar/gui/dialogs/task-page.glade.h:7
msgid "Pu_blic"
msgstr "_Genel"

#: calendar/gui/dialogs/event-page.glade.h:11
#: calendar/gui/e-calendar-table.etspec.h:13
msgid "Show Time As"
msgstr "Zamanı Farklı Göster"

#: calendar/gui/dialogs/event-page.glade.h:12
#: calendar/gui/dialogs/task-page.glade.h:9
msgid "Su_mmary:"
msgstr "Ö_zet:"

#: calendar/gui/dialogs/event-page.glade.h:13
#: calendar/gui/dialogs/task-page.glade.h:10
msgid "_Contacts..."
msgstr "_Bağlantılar..."

#: calendar/gui/dialogs/event-page.glade.h:14
msgid "_End time:"
msgstr "B_itiş tarihi:"

#: calendar/gui/dialogs/event-page.glade.h:15
msgid "_Start time:"
msgstr "B_aşlangıç tarihi:"

#: calendar/gui/dialogs/meeting-page.c:414
msgid "An organizer is required."
msgstr "Bir düzenleyen kişi olmak zorunda."

#: calendar/gui/dialogs/meeting-page.c:438
msgid "At least one attendee is required."
msgstr "En az bir katılan olmalıdır."

#: calendar/gui/dialogs/meeting-page.c:594
msgid "That person is already attending the meeting!"
msgstr "Bu kişi toplantıya zaten katılıyor!"

#: calendar/gui/dialogs/meeting-page.c:669
msgid "_Delegate To..."
msgstr "_Dağıt..."

#: calendar/gui/dialogs/meeting-page.etspec.h:1
#: calendar/gui/e-meeting-time-sel.etspec.h:1
msgid "Attendee"
msgstr "Katılımcı"

#: calendar/gui/dialogs/meeting-page.etspec.h:2
#: calendar/gui/e-meeting-time-sel.etspec.h:2
msgid "Click here to add an attendee"
msgstr "Katılımcı eklemek için tıklayın"

#: calendar/gui/dialogs/meeting-page.etspec.h:3
#: calendar/gui/e-meeting-time-sel.etspec.h:3
msgid "Common Name"
msgstr "Ortak İsim"

#: calendar/gui/dialogs/meeting-page.etspec.h:4
#: calendar/gui/e-meeting-time-sel.etspec.h:4
#, fuzzy
msgid "Delegated From"
msgstr "Dağıt:"

#: calendar/gui/dialogs/meeting-page.etspec.h:5
#: calendar/gui/e-meeting-time-sel.etspec.h:5
#, fuzzy
msgid "Delegated To"
msgstr "Dağıt:"

#: calendar/gui/dialogs/meeting-page.etspec.h:6
#: calendar/gui/e-meeting-time-sel.etspec.h:6
msgid "Language"
msgstr "Dil"

#: calendar/gui/dialogs/meeting-page.etspec.h:7
#: calendar/gui/e-meeting-time-sel.etspec.h:7
msgid "Member"
msgstr "Üye"

#: calendar/gui/dialogs/meeting-page.etspec.h:8
#: calendar/gui/e-itip-control.c:1151
#: calendar/gui/e-meeting-time-sel.etspec.h:8
msgid "RSVP"
msgstr "RSVP"

#: calendar/gui/dialogs/meeting-page.etspec.h:9
#: calendar/gui/e-meeting-time-sel.etspec.h:9
msgid "Role"
msgstr "Görev"

#: calendar/gui/dialogs/meeting-page.etspec.h:10
#: calendar/gui/e-calendar-table.etspec.h:15
#: calendar/gui/e-meeting-time-sel.etspec.h:10 filter/libfilter-i18n.h:58
#: mail/message-list.etspec.h:12
msgid "Status"
msgstr "Durum"

#: calendar/gui/dialogs/meeting-page.etspec.h:11
#: calendar/gui/e-calendar-table.etspec.h:18
#: calendar/gui/e-meeting-time-sel.etspec.h:11
#: shell/glade/e-active-connection-dialog.glade.h:5
msgid "Type"
msgstr "Tür"

#: calendar/gui/dialogs/meeting-page.glade.h:2
#: calendar/gui/e-itip-control.glade.h:9
msgid "Organizer:"
msgstr "Organizatör:"

#: calendar/gui/dialogs/meeting-page.glade.h:3
msgid "_Change Organizer"
msgstr "O_rganizatörü Değiştir"

#: calendar/gui/dialogs/meeting-page.glade.h:4
#: calendar/gui/e-meeting-time-sel.c:456
msgid "_Invite Others..."
msgstr "_Başkalarını Davet Et..."

#: calendar/gui/dialogs/recurrence-page.c:126
#: calendar/gui/dialogs/recurrence-page.c:146
#: calendar/gui/dialogs/recurrence-page.c:156
#: calendar/gui/e-itip-control.c:603 calendar/gui/e-itip-control.c:623
#: calendar/gui/e-itip-control.c:633
msgid "st"
msgstr "."

#: calendar/gui/dialogs/recurrence-page.c:127
#: calendar/gui/dialogs/recurrence-page.c:147
#: calendar/gui/e-itip-control.c:604 calendar/gui/e-itip-control.c:624
msgid "nd"
msgstr "."

#: calendar/gui/dialogs/recurrence-page.c:128
#: calendar/gui/dialogs/recurrence-page.c:148
#: calendar/gui/e-itip-control.c:605 calendar/gui/e-itip-control.c:625
msgid "rd"
msgstr "."

#: calendar/gui/dialogs/recurrence-page.c:129
#: calendar/gui/dialogs/recurrence-page.c:130
#: calendar/gui/dialogs/recurrence-page.c:131
#: calendar/gui/dialogs/recurrence-page.c:132
#: calendar/gui/dialogs/recurrence-page.c:133
#: calendar/gui/dialogs/recurrence-page.c:134
#: calendar/gui/dialogs/recurrence-page.c:135
#: calendar/gui/dialogs/recurrence-page.c:136
#: calendar/gui/dialogs/recurrence-page.c:137
#: calendar/gui/dialogs/recurrence-page.c:138
#: calendar/gui/dialogs/recurrence-page.c:139
#: calendar/gui/dialogs/recurrence-page.c:140
#: calendar/gui/dialogs/recurrence-page.c:141
#: calendar/gui/dialogs/recurrence-page.c:142
#: calendar/gui/dialogs/recurrence-page.c:143
#: calendar/gui/dialogs/recurrence-page.c:144
#: calendar/gui/dialogs/recurrence-page.c:145
#: calendar/gui/dialogs/recurrence-page.c:149
#: calendar/gui/dialogs/recurrence-page.c:150
#: calendar/gui/dialogs/recurrence-page.c:151
#: calendar/gui/dialogs/recurrence-page.c:152
#: calendar/gui/dialogs/recurrence-page.c:153
#: calendar/gui/dialogs/recurrence-page.c:154
#: calendar/gui/dialogs/recurrence-page.c:155
#: calendar/gui/e-itip-control.c:606 calendar/gui/e-itip-control.c:607
#: calendar/gui/e-itip-control.c:608 calendar/gui/e-itip-control.c:609
#: calendar/gui/e-itip-control.c:610 calendar/gui/e-itip-control.c:611
#: calendar/gui/e-itip-control.c:612 calendar/gui/e-itip-control.c:613
#: calendar/gui/e-itip-control.c:614 calendar/gui/e-itip-control.c:615
#: calendar/gui/e-itip-control.c:616 calendar/gui/e-itip-control.c:617
#: calendar/gui/e-itip-control.c:618 calendar/gui/e-itip-control.c:619
#: calendar/gui/e-itip-control.c:620 calendar/gui/e-itip-control.c:621
#: calendar/gui/e-itip-control.c:622 calendar/gui/e-itip-control.c:626
#: calendar/gui/e-itip-control.c:627 calendar/gui/e-itip-control.c:628
#: calendar/gui/e-itip-control.c:629 calendar/gui/e-itip-control.c:630
#: calendar/gui/e-itip-control.c:631 calendar/gui/e-itip-control.c:632
msgid "th"
msgstr "."

#: calendar/gui/dialogs/recurrence-page.c:629
msgid "This appointment contains recurrences that Evolution cannot edit."
msgstr "Bu randevuyu Evolution düzenleyemiyor."

#: calendar/gui/dialogs/recurrence-page.c:898
msgid "Recurrent date is wrong"
msgstr ""

#: calendar/gui/dialogs/recurrence-page.c:1007
msgid "on"
msgstr "tarih"

#: calendar/gui/dialogs/recurrence-page.c:1072
msgid "first"
msgstr "birinci"

#: calendar/gui/dialogs/recurrence-page.c:1073 filter/filter-datespec.c:70
msgid "second"
msgstr "ikinci"

#: calendar/gui/dialogs/recurrence-page.c:1074
msgid "third"
msgstr "üçüncü"

#: calendar/gui/dialogs/recurrence-page.c:1075
msgid "fourth"
msgstr "dördüncü"

#: calendar/gui/dialogs/recurrence-page.c:1076
msgid "last"
msgstr "sonuncu"

#: calendar/gui/dialogs/recurrence-page.c:1102
msgid "Other Date"
msgstr "Başka Tarih"

#: calendar/gui/dialogs/recurrence-page.c:1130 filter/filter-datespec.c:73
msgid "day"
msgstr "gün"

#: calendar/gui/dialogs/recurrence-page.c:1270
msgid "on the"
msgstr " "

#: calendar/gui/dialogs/recurrence-page.c:1455
msgid "occurrences"
msgstr "tekrarlar"

#: calendar/gui/dialogs/recurrence-page.glade.h:1
msgid "A_dd"
msgstr "_Ekle"

#: calendar/gui/dialogs/recurrence-page.glade.h:4
msgid "Every"
msgstr "Her"

#: calendar/gui/dialogs/recurrence-page.glade.h:5
msgid "Exceptions"
msgstr "İstisnalar"

#: calendar/gui/dialogs/recurrence-page.glade.h:6
msgid "Preview"
msgstr "Önizleme"

#: calendar/gui/dialogs/recurrence-page.glade.h:7
msgid "Recurrence Rule"
msgstr "Tekrarlama Kuralı"

#: calendar/gui/dialogs/recurrence-page.glade.h:9
msgid "_Custom recurrence"
msgstr "_Özel tekrar"

#: calendar/gui/dialogs/recurrence-page.glade.h:10
msgid "_Modify"
msgstr "_Düzenle"

#: calendar/gui/dialogs/recurrence-page.glade.h:11
msgid "_No recurrence"
msgstr "_Tekrarlama yok"

#: calendar/gui/dialogs/recurrence-page.glade.h:13
msgid "_Simple recurrence"
msgstr "_Basit tekrar"

#: calendar/gui/dialogs/recurrence-page.glade.h:15
msgid "for"
msgstr "için"

#: calendar/gui/dialogs/recurrence-page.glade.h:16
msgid "forever"
msgstr "daima"

#: calendar/gui/dialogs/recurrence-page.glade.h:17
msgid "month(s)"
msgstr "ay"

#: calendar/gui/dialogs/recurrence-page.glade.h:18
msgid "until"
msgstr "tarihe kadar"

#: calendar/gui/dialogs/recurrence-page.glade.h:19
msgid "week(s)"
msgstr "hafta"

#: calendar/gui/dialogs/recurrence-page.glade.h:20
msgid "year(s)"
msgstr "yıl"

#: calendar/gui/dialogs/send-comp.c:56
msgid "The meeting information has been created. Send it?"
msgstr "Toplantı bilgisi oluşturuldu. Gönderilsin mi?"

#: calendar/gui/dialogs/send-comp.c:59
msgid "The meeting information has changed. Send an updated version?"
msgstr "Toplantı bilgisi değiştirildi. Güncel bir sürümü gönderilsin mi?"

#: calendar/gui/dialogs/send-comp.c:66
msgid "The task assignment information has been created. Send it?"
msgstr "Görev bilgisi oluşturuldu. Gönderilsin mi?"

#: calendar/gui/dialogs/send-comp.c:70
msgid "The task information has changed. Send an updated version?"
msgstr "Görev bilgisi değiştirildi. Güncel bir sürümü gönderilsin mi?"

#: calendar/gui/dialogs/task-details-page.c:420
msgid "Completed date is wrong"
msgstr "Tamamlanma tarihi yanlış"

#: calendar/gui/dialogs/task-details-page.glade.h:2
#: calendar/gui/e-calendar-table.etspec.h:2
#, no-c-format
msgid "% Complete"
msgstr "Biten %"

#: calendar/gui/dialogs/task-details-page.glade.h:5
msgid "Date Completed:"
msgstr "Tamamlama Tarihi:"

#: calendar/gui/dialogs/task-details-page.glade.h:9
#: calendar/gui/e-meeting-model.c:320 calendar/gui/e-meeting-model.c:343
#: calendar/gui/e-meeting-model.c:575 calendar/gui/e-meeting-model.c:876
msgid "Needs Action"
msgstr "İşlem Gerektiriyor"

#: calendar/gui/dialogs/task-details-page.glade.h:12
msgid "Progress"
msgstr "İşlem"

#: calendar/gui/dialogs/task-details-page.glade.h:13
#: my-evolution/e-summary-preferences.c:860
msgid "URL:"
msgstr "URL:"

#: calendar/gui/dialogs/task-details-page.glade.h:15
msgid "_Priority:"
msgstr "Ö_ncelik:"

#: calendar/gui/dialogs/task-details-page.glade.h:16
msgid "_Status:"
msgstr "_Durum:"

#: calendar/gui/dialogs/task-editor.c:206
msgid "Basic"
msgstr "Temel"

#: calendar/gui/dialogs/task-editor.c:216
#: calendar/gui/dialogs/task-editor.c:261
#: calendar/gui/dialogs/task-editor.c:386
msgid "Assignment"
msgstr "Görevlendirme"

#: calendar/gui/dialogs/task-page.c:540
msgid "Due date is wrong"
msgstr "Bitiş tarihi hatalı"

#: calendar/gui/dialogs/task-page.glade.h:5 calendar/gui/e-itip-control.c:1081
#: calendar/gui/e-itip-control.glade.h:6
#: composer/e-msg-composer-attachment.glade.h:2 mail/mail-config.glade.h:44
msgid "Description:"
msgstr "Açıklama:"

#: calendar/gui/dialogs/task-page.glade.h:8
msgid "Sta_rt Date:"
msgstr "_Başlangıç Tarihi:"

#: calendar/gui/dialogs/task-page.glade.h:11
msgid "_Due Date:"
msgstr "_Tarihe Göre:"

#: calendar/gui/e-calendar-table.c:440
msgid "0%"
msgstr "%0"

#: calendar/gui/e-calendar-table.c:441
msgid "10%"
msgstr "%10"

#: calendar/gui/e-calendar-table.c:442
msgid "20%"
msgstr "%20"

#: calendar/gui/e-calendar-table.c:443
msgid "30%"
msgstr "%30"

#: calendar/gui/e-calendar-table.c:444
msgid "40%"
msgstr "%40"

#: calendar/gui/e-calendar-table.c:445
msgid "50%"
msgstr "%50"

#: calendar/gui/e-calendar-table.c:446
msgid "60%"
msgstr "%60"

#: calendar/gui/e-calendar-table.c:447
msgid "70%"
msgstr "%70"

#: calendar/gui/e-calendar-table.c:448
msgid "80%"
msgstr "%80"

#: calendar/gui/e-calendar-table.c:449
msgid "90%"
msgstr "%90"

#: calendar/gui/e-calendar-table.c:450
msgid "100%"
msgstr "%100"

#: calendar/gui/e-calendar-table.c:753 calendar/gui/e-day-view.c:2865
#: calendar/gui/e-week-view.c:1917
msgid "Deleting selected objects"
msgstr "Seçilen bağlantılar siliniyor"

#: calendar/gui/e-calendar-table.c:987 calendar/gui/e-day-view.c:3748
#: calendar/gui/e-week-view.c:3545 mail/folder-browser.c:1729
#: shell/e-shortcuts-view.c:408 ui/evolution-addressbook.xml.h:36
msgid "_Open"
msgstr "_Aç"

#: calendar/gui/e-calendar-table.c:988
msgid "_Save as..."
msgstr "_Farklı kaydet..."

#: calendar/gui/e-calendar-table.c:989 calendar/gui/e-day-view.c:3750
#: calendar/gui/e-week-view.c:3520 calendar/gui/e-week-view.c:3547
#: ui/evolution-addressbook.xml.h:38 ui/evolution-calendar.xml.h:30
#: ui/evolution-contact-editor.xml.h:14 ui/evolution-mail-message.xml.h:108
#: ui/evolution-tasks.xml.h:20 ui/my-evolution.xml.h:6
msgid "_Print..."
msgstr "_Yazdır..."

#: calendar/gui/e-calendar-table.c:993 calendar/gui/e-day-view.c:3755
#: calendar/gui/e-week-view.c:3552 ui/evolution-addressbook.xml.h:1
#: ui/evolution-calendar.xml.h:1 ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "_Kes"

#: calendar/gui/e-calendar-table.c:994 calendar/gui/e-day-view.c:3756
#: calendar/gui/e-week-view.c:3553 ui/evolution-addressbook.xml.h:30
#: ui/evolution-calendar.xml.h:26 ui/evolution-mail-list.xml.h:24
#: ui/evolution-tasks.xml.h:15
msgid "_Copy"
msgstr "_Kopyala"

#: calendar/gui/e-calendar-table.c:995 calendar/gui/e-day-view.c:3721
#: calendar/gui/e-day-view.c:3757 calendar/gui/e-week-view.c:3524
#: calendar/gui/e-week-view.c:3554 ui/evolution-addressbook.xml.h:37
#: ui/evolution-calendar.xml.h:29 ui/evolution-mail-list.xml.h:29
#: ui/evolution-tasks.xml.h:19
msgid "_Paste"
msgstr "_Yapıştır"

#: calendar/gui/e-calendar-table.c:999
msgid "_Assign Task"
msgstr "_Görev Ata"

#: calendar/gui/e-calendar-table.c:1000
msgid "_Forward as iCalendar"
msgstr "i_Calendar Olarak Yönlendir"

#: calendar/gui/e-calendar-table.c:1001
msgid "_Mark as Complete"
msgstr "_Bitmiş Olarak İşaretle"

#: calendar/gui/e-calendar-table.c:1002
#, fuzzy
msgid "_Mark Selected Tasks as Complete"
msgstr "Görevleri _Bitmiş Olarak İşaretle"

#: calendar/gui/e-calendar-table.c:1007
msgid "_Delete Selected Tasks"
msgstr "_Seçilen Görevleri Sil"

#: calendar/gui/e-calendar-table.c:1278 calendar/gui/e-day-view.c:7586
#: calendar/gui/e-week-view.c:4241
msgid "Updating objects"
msgstr "Öğeler güncelleniyor"

#: calendar/gui/e-calendar-table.c:1361
#: calendar/gui/e-calendar-table.etspec.h:6
msgid "Click to add a task"
msgstr "Görev eklemek için tıklayın"

#: calendar/gui/e-calendar-table.etspec.h:3
msgid "Alarms"
msgstr "Uyarılar"

#: calendar/gui/e-calendar-table.etspec.h:7 camel/camel-filter-driver.c:1001
#: camel/camel-filter-driver.c:1096
msgid "Complete"
msgstr "Tamamlandı"

#: calendar/gui/e-calendar-table.etspec.h:8
msgid "Completion Date"
msgstr "Tamamlanma Tarihi"

#: calendar/gui/e-calendar-table.etspec.h:9
msgid "Due Date"
msgstr "Tarihe göre:"

#: calendar/gui/e-calendar-table.etspec.h:10
msgid "End Date"
msgstr "Bitiş Tarihi"

#: calendar/gui/e-calendar-table.etspec.h:11
msgid "Geographical Position"
msgstr "Coğrafi Konum"

#: calendar/gui/e-calendar-table.etspec.h:12
msgid "Priority"
msgstr "Öncelik"

#: calendar/gui/e-calendar-table.etspec.h:14
msgid "Start Date"
msgstr "Başlangıç Tarihi"

#: calendar/gui/e-calendar-table.etspec.h:16
#: my-evolution/component-factory.c:51 shell/e-shell.c:748
#: shell/e-shortcuts.c:1051
msgid "Summary"
msgstr "Özet"

#: calendar/gui/e-calendar-table.etspec.h:17
msgid "Task sort"
msgstr "Görev sıralama"

#: calendar/gui/e-calendar-table.etspec.h:19
msgid "URL"
msgstr "URL"

#. strftime format of a weekday, a date and a time, 24-hour.
#: calendar/gui/e-cell-date-edit-text.c:118 e-util/e-time-utils.c:167
#: e-util/e-time-utils.c:380
msgid "%a %m/%d/%Y %H:%M:%S"
msgstr "%d/%m/%Y %A %H:%M:%S"

#. strftime format of a weekday, a date and a time, 12-hour.
#: calendar/gui/e-cell-date-edit-text.c:121 e-util/e-time-utils.c:162
#: e-util/e-time-utils.c:389
msgid "%a %m/%d/%Y %I:%M:%S %p"
msgstr "%d/%m/%Y %A %I:%M:%S %p"

#: calendar/gui/e-cell-date-edit-text.c:126
#, c-format
msgid ""
"The date must be entered in the format: \n"
"\n"
"%s"
msgstr ""
"Gün, aşağıdaki biçimde girilmelidir: \n"
"\n"
"%s"

#: calendar/gui/e-day-view-time-item.c:518
#, c-format
msgid "%02i minute divisions"
msgstr "%02i dakika bölmeleri"

#. strftime format %A = full weekday name, %d = day of month,
#. %B = full month name. Don't use any other specifiers.
#: calendar/gui/e-day-view-top-item.c:284 calendar/gui/e-day-view.c:1422
#: calendar/gui/e-week-view-main-item.c:324 calendar/gui/print.c:1507
msgid "%A %d %B"
msgstr "%d %B %A"

#. strftime format %d = day of month, %b = abbreviated month name.
#. Don't use any other specifiers.
#: calendar/gui/e-day-view-top-item.c:292 calendar/gui/e-day-view.c:1449
#: calendar/gui/e-week-view-main-item.c:347
msgid "%d %b"
msgstr "%d %b"

#. String to use in 12-hour time format for times in the morning.
#: calendar/gui/e-day-view.c:636 calendar/gui/e-week-view.c:375
#: calendar/gui/print.c:791
msgid "am"
msgstr "öö"

#. String to use in 12-hour time format for times in the afternoon.
#: calendar/gui/e-day-view.c:639 calendar/gui/e-week-view.c:378
#: calendar/gui/print.c:793
msgid "pm"
msgstr "ös"

#: calendar/gui/e-day-view.c:3705
msgid "New _Appointment"
msgstr "Yeni _Randevu"

#: calendar/gui/e-day-view.c:3707 calendar/gui/e-week-view.c:3514
msgid "New All Day _Event"
msgstr "Y_eni Tüm Gün Olayı"

#: calendar/gui/e-day-view.c:3709 calendar/gui/e-week-view.c:3515
msgid "New Meeting"
msgstr "Yeni Toplantı"

#: calendar/gui/e-day-view.c:3711 calendar/gui/e-week-view.c:3516
msgid "New Task"
msgstr "Yeni Görev"

#: calendar/gui/e-day-view.c:3716 ui/evolution-comp-editor.xml.h:11
msgid "Print..."
msgstr "Yazdır..."

#: calendar/gui/e-day-view.c:3728 calendar/gui/e-week-view.c:3530
#: ui/evolution-calendar.xml.h:10
msgid "Go to _Today"
msgstr "_Bugüne Git"

#: calendar/gui/e-day-view.c:3730 calendar/gui/e-week-view.c:3531
msgid "_Go to Date..."
msgstr "_Güne Git..."

#: calendar/gui/e-day-view.c:3735 calendar/gui/e-week-view.c:3535
#: ui/evolution-calendar.xml.h:31
msgid "_Publish Free/Busy Information"
msgstr "_Boş/Meşgul Bilgisini Yayınla"

#: calendar/gui/e-day-view.c:3740 calendar/gui/e-week-view.c:3539
#: ui/evolution.xml.h:62
msgid "_Settings..."
msgstr "_Ayarlar..."

#: calendar/gui/e-day-view.c:3749 calendar/gui/e-week-view.c:3546
#: mail/folder-browser.c:1731 ui/evolution-mail-message.xml.h:112
msgid "_Save As..."
msgstr "_Farklı Kaydet..."

#: calendar/gui/e-day-view.c:3761 calendar/gui/e-week-view.c:3558
#, fuzzy
msgid "_Schedule Meeting..."
msgstr "Toplantı Zamanı Düzenle"

#: calendar/gui/e-day-view.c:3762 calendar/gui/e-week-view.c:3559
#, fuzzy
msgid "_Forward as iCalendar..."
msgstr "i_Calendar Olarak Yönlendir"

#: calendar/gui/e-day-view.c:3767 calendar/gui/e-week-view.c:3564
msgid "Make this Occurrence _Movable"
msgstr "Bu _Oluşumu Taşınabilir Yap"

#: calendar/gui/e-day-view.c:3768 calendar/gui/e-week-view.c:3565
msgid "Delete this _Occurrence"
msgstr "_Bu Oluşumu Sil"

#: calendar/gui/e-day-view.c:3769 calendar/gui/e-week-view.c:3566
msgid "Delete _All Occurrences"
msgstr "_Tüm Oluşumları Sil"

#: calendar/gui/e-itip-control.c:684
#, fuzzy
msgid "Yes. (Complex Recurrence)"
msgstr "_Basit tekrar"

#: calendar/gui/e-itip-control.c:696
msgid "Every day"
msgstr "Her gün"

#: calendar/gui/e-itip-control.c:698
#, c-format
msgid "Every %d days"
msgstr "Her %d gün"

#: calendar/gui/e-itip-control.c:704
msgid "Every week"
msgstr "Her hafta"

#: calendar/gui/e-itip-control.c:706
#, c-format
msgid "Every %d weeks"
msgstr "Her %d hafta"

#: calendar/gui/e-itip-control.c:709
#, fuzzy
msgid "Every week on "
msgstr "Evergreen"

#: calendar/gui/e-itip-control.c:711
#, fuzzy, c-format
msgid "Every %d weeks on "
msgstr "%d hafta"

#: calendar/gui/e-itip-control.c:719
msgid " and "
msgstr " ve "

#: calendar/gui/e-itip-control.c:726
#, c-format
msgid "The %s day of "
msgstr ""

#: calendar/gui/e-itip-control.c:739
#, c-format
msgid "The %s %s of "
msgstr ""

#: calendar/gui/e-itip-control.c:744
msgid "every month"
msgstr "her ay"

#: calendar/gui/e-itip-control.c:749
#, c-format
msgid "every %d months"
msgstr "her %d ayda"

#: calendar/gui/e-itip-control.c:755
msgid "Every year"
msgstr "Her yıl"

#: calendar/gui/e-itip-control.c:757
#, c-format
msgid "Every %d years"
msgstr "Her %d yıl"

#: calendar/gui/e-itip-control.c:769
#, c-format
msgid " a total of %d times"
msgstr ""

#: calendar/gui/e-itip-control.c:777
msgid ", ending on "
msgstr ""

#: calendar/gui/e-itip-control.c:801
msgid "<b>Starts:</b> "
msgstr "<b>Başlangıç:</b> "

#: calendar/gui/e-itip-control.c:811
msgid "<b>Ends:</b> "
msgstr "<b>Bitiş: </b>"

#: calendar/gui/e-itip-control.c:831
msgid "<b>Completed:</b> "
msgstr "<b>Tamamlanan:</b> "

#: calendar/gui/e-itip-control.c:841
msgid "<b>Due:</b> "
msgstr ""

#: calendar/gui/e-itip-control.c:878 calendar/gui/e-itip-control.c:928
msgid "iCalendar Information"
msgstr "iCalendar Bilgisi"

#. Title
#: calendar/gui/e-itip-control.c:893
msgid "iCalendar Error"
msgstr "iCalendar Hatası"

#: calendar/gui/e-itip-control.c:959 calendar/gui/e-itip-control.c:975
#: calendar/gui/e-itip-control.c:986 calendar/gui/e-itip-control.c:1003
msgid "An unknown person"
msgstr "Bilinmeyen kişi"

#. Describe what the user can do
#: calendar/gui/e-itip-control.c:1010
msgid ""
"<br> Please review the following information, and then select an action from "
"the menu below."
msgstr ""
"<br> Lütfen bu bilgilerin doğruluğunu denetledikten sonra, aşağıdaki menüden "
"bir işlem seçiniz."

#: calendar/gui/e-itip-control.c:1025
msgid "<i>None</i>"
msgstr "<i>Hiçbiri</i>"

#: calendar/gui/e-itip-control.c:1035
msgid "Location:"
msgstr "Konum: "

#: calendar/gui/e-itip-control.c:1049
msgid "Status:"
msgstr "Durum:"

#: calendar/gui/e-itip-control.c:1054 calendar/gui/e-meeting-model.c:322
#: calendar/gui/e-meeting-model.c:345 calendar/gui/e-meeting-model.c:877
#: calendar/gui/itip-utils.c:490
msgid "Accepted"
msgstr "Onaylandı"

#: calendar/gui/e-itip-control.c:1058 calendar/gui/itip-utils.c:493
#, fuzzy
msgid "Tentatively Accepted"
msgstr "Girişimli"

#: calendar/gui/e-itip-control.c:1062 calendar/gui/e-meeting-model.c:324
#: calendar/gui/e-meeting-model.c:347 calendar/gui/e-meeting-model.c:878
#: calendar/gui/itip-utils.c:496 calendar/gui/itip-utils.c:522
msgid "Declined"
msgstr "Reddedildi"

#: calendar/gui/e-itip-control.c:1066 calendar/gui/e-itip-control.c:1272
#: calendar/gui/e-meeting-model.c:258 calendar/gui/e-meeting-model.c:293
#: calendar/gui/e-meeting-model.c:358 calendar/gui/e-meeting-model.c:835
#: calendar/gui/e-meeting-model.c:851 camel/camel-tcp-stream-openssl.c:629
#: camel/providers/smtp/camel-smtp-transport.c:172
#: camel/providers/smtp/camel-smtp-transport.c:227 mail/folder-browser.c:327
#: mail/mail-display.c:901 widgets/misc/e-charset-picker.c:58
#: widgets/misc/e-charset-picker.c:444
msgid "Unknown"
msgstr "Bilinmiyor"

#: calendar/gui/e-itip-control.c:1119 calendar/gui/e-itip-control.c:1147
#: calendar/gui/e-itip-control.c:1173 calendar/gui/e-itip-control.c:1186
#: calendar/gui/e-itip-control.c:1199 calendar/gui/e-itip-control.c:1212
msgid "Choose an action:"
msgstr "Bir eylem seçin:"

#: calendar/gui/e-itip-control.c:1120
msgid "Update"
msgstr "Güncelle"

#: calendar/gui/e-itip-control.c:1121 calendar/gui/e-itip-control.c:1152
#: calendar/gui/e-itip-control.c:1175 calendar/gui/e-itip-control.c:1188
#: calendar/gui/e-itip-control.c:1201 calendar/gui/e-itip-control.c:1214
#: shell/e-shell.c:2176 widgets/misc/e-cell-date-edit.c:258
msgid "OK"
msgstr "Tamam"

#: calendar/gui/e-itip-control.c:1148
msgid "Accept"
msgstr "Onayla"

#: calendar/gui/e-itip-control.c:1149
#, fuzzy
msgid "Tentatively accept"
msgstr "Girişimli"

#: calendar/gui/e-itip-control.c:1150
msgid "Decline"
msgstr "Reddet"

#: calendar/gui/e-itip-control.c:1174
msgid "Send Free/Busy Information"
msgstr "Boş/Meşgul Bilgisi Gönder"

#: calendar/gui/e-itip-control.c:1187
msgid "Update respondent status"
msgstr "Cevaplayan Bilgisini Güncelle"

#: calendar/gui/e-itip-control.c:1200
msgid "Send Latest Information"
msgstr "Güncel Bilgiyi Gönder"

#: calendar/gui/e-itip-control.c:1213 calendar/gui/itip-utils.c:510
#: shell/evolution-shell-component.c:1143 ui/evolution-mail-global.xml.h:1
msgid "Cancel"
msgstr "İptal"

#: calendar/gui/e-itip-control.c:1294
#, c-format
msgid "<b>%s</b> has published meeting information."
msgstr "<b>%s</b>, toplantı bilgisi gönderdi."

#: calendar/gui/e-itip-control.c:1295
msgid "Meeting Information"
msgstr "Toplantı Bilgisi"

#: calendar/gui/e-itip-control.c:1300
#, fuzzy, c-format
msgid "<b>%s</b> requests the presence of %s at a meeting."
msgstr "<b>%s</b> sizin toplantıda olmanızı istiyor."

#: calendar/gui/e-itip-control.c:1302
#, c-format
msgid "<b>%s</b> requests your presence at a meeting."
msgstr "<b>%s</b> sizin toplantıda olmanızı istiyor."

#: calendar/gui/e-itip-control.c:1303
msgid "Meeting Proposal"
msgstr "Toplantı Taslağı"

#: calendar/gui/e-itip-control.c:1307
#, c-format
msgid "<b>%s</b> wishes to add to an existing meeting."
msgstr "<b>%s</b> mevcut bir toplantıya ekleme yapmak istiyor"

#: calendar/gui/e-itip-control.c:1308
msgid "Meeting Update"
msgstr "Toplantı Güncellemesi"

#: calendar/gui/e-itip-control.c:1312
#, c-format
msgid "<b>%s</b> wishes to receive the latest meeting information."
msgstr "<b>%s</b> son toplantı bilgisini almak istiyor."

#: calendar/gui/e-itip-control.c:1313
msgid "Meeting Update Request"
msgstr "Toplantı Güncelleme Bilgisi İsteği"

#: calendar/gui/e-itip-control.c:1320
#, c-format
msgid "<b>%s</b> has replied to a meeting request."
msgstr "<b>%s</b> bir toplantı isteğine cevap verdi."

#: calendar/gui/e-itip-control.c:1321
msgid "Meeting Reply"
msgstr "Toplantı Yanıtı"

#: calendar/gui/e-itip-control.c:1328
#, c-format
msgid "<b>%s</b> has cancelled a meeting."
msgstr "<b>%s</b> bir toplantıyı iptal etti."

#: calendar/gui/e-itip-control.c:1329
msgid "Meeting Cancellation"
msgstr "Toplantı İptali"

#: calendar/gui/e-itip-control.c:1336 calendar/gui/e-itip-control.c:1403
#: calendar/gui/e-itip-control.c:1438
#, c-format
msgid "<b>%s</b> has sent an unintelligible message."
msgstr "<b>%s</b> hatalı bir mesaj gönderdi."

#: calendar/gui/e-itip-control.c:1337
msgid "Bad Meeting Message"
msgstr "Hatalı Toplantı İletisi"

#: calendar/gui/e-itip-control.c:1361
#, c-format
msgid "<b>%s</b> has published task information."
msgstr "<b>%s</b> görev bilgisi yayınladı."

#: calendar/gui/e-itip-control.c:1362
msgid "Task Information"
msgstr "Görev Bilgisi"

#: calendar/gui/e-itip-control.c:1367
#, fuzzy, c-format
msgid "<b>%s</b> requests %s to perform a task."
msgstr "<b>%s</b> bir görevi tamamlamanızı istiyor."

#: calendar/gui/e-itip-control.c:1369
#, c-format
msgid "<b>%s</b> requests you perform a task."
msgstr "<b>%s</b> bir görevi tamamlamanızı istiyor."

#: calendar/gui/e-itip-control.c:1370
msgid "Task Proposal"
msgstr "Görev Taslağı"

#: calendar/gui/e-itip-control.c:1374
#, c-format
msgid "<b>%s</b> wishes to add to an existing task."
msgstr "<b>%s</b> mevcut bir göreve eklenti yapmak istiyor."

#: calendar/gui/e-itip-control.c:1375
msgid "Task Update"
msgstr "Görev Güncellemesi"

#: calendar/gui/e-itip-control.c:1379
#, c-format
msgid "<b>%s</b> wishes to receive the latest task information."
msgstr "<b>%s</b> en güncel görev bilgisini almak istiyor."

#: calendar/gui/e-itip-control.c:1380
msgid "Task Update Request"
msgstr "Güncel Görev Bilgisi İsteği"

#: calendar/gui/e-itip-control.c:1387
#, c-format
msgid "<b>%s</b> has replied to a task assignment."
msgstr "<b>%s</b> bir görev tanımına cevap verdi."

#: calendar/gui/e-itip-control.c:1388
msgid "Task Reply"
msgstr "Görev Yanıtı"

#: calendar/gui/e-itip-control.c:1395
#, c-format
msgid "<b>%s</b> has cancelled a task."
msgstr "<b>%s</b> bir görevi iptal etti."

#: calendar/gui/e-itip-control.c:1396
msgid "Task Cancellation"
msgstr "Görev İptali"

#: calendar/gui/e-itip-control.c:1404
msgid "Bad Task Message"
msgstr "Hatalı Görev İletisi"

#: calendar/gui/e-itip-control.c:1423
#, c-format
msgid "<b>%s</b> has published free/busy information."
msgstr "<b>%s</b> boş/meşgul bilgisi gönderdi."

#: calendar/gui/e-itip-control.c:1424
msgid "Free/Busy Information"
msgstr "Boş/Meşgul Bilgisi"

#: calendar/gui/e-itip-control.c:1428
#, c-format
msgid "<b>%s</b> requests your free/busy information."
msgstr "<b>%s</b> sizden boş/meşgul bilgisini almak istiyor."

#: calendar/gui/e-itip-control.c:1429
msgid "Free/Busy Request"
msgstr "Boş/Meşgul İsteği"

#: calendar/gui/e-itip-control.c:1433
#, c-format
msgid "<b>%s</b> has replied to a free/busy request."
msgstr "<b>%s</b> bir boş/meşgul isteğine cevap verdi."

#: calendar/gui/e-itip-control.c:1434
msgid "Free/Busy Reply"
msgstr "Boş/Meşgul Cevabı"

#: calendar/gui/e-itip-control.c:1439
msgid "Bad Free/Busy Message"
msgstr "Hatalı Boş/Meşgul İletisi"

#: calendar/gui/e-itip-control.c:1513
msgid "The message does not appear to be properly formed"
msgstr "Bu mesaj düzgün değil"

#: calendar/gui/e-itip-control.c:1575
msgid "The message contains only unsupported requests."
msgstr "Bu iletide desteklenmeyen bilgiler var."

#: calendar/gui/e-itip-control.c:1603 calendar/gui/e-itip-control.c:1609
msgid "The attachment does not contain a valid calendar message"
msgstr "Bu eklenti geçerli bir takvim mesajını içermiyor."

#: calendar/gui/e-itip-control.c:1634
msgid "The attachment has no viewable calendar items"
msgstr "Bu eklentide görüntülenebilir takvim öğeleri bulunmuyor"

#: calendar/gui/e-itip-control.c:1856 calendar/gui/e-itip-control.c:1948
msgid "Object is invalid and cannot be updated\n"
msgstr ""

#: calendar/gui/e-itip-control.c:1859 calendar/gui/e-itip-control.c:1951
msgid "There was an error on the CORBA system\n"
msgstr ""

#: calendar/gui/e-itip-control.c:1862 calendar/gui/e-itip-control.c:1954
msgid "Object could not be found\n"
msgstr "Öğe bulunamadı\n"

#: calendar/gui/e-itip-control.c:1865
msgid "You do not have the right permissions to update the calendar\n"
msgstr "Bu takvimi güncellemek için yeterli izniniz yoktur\n"

#: calendar/gui/e-itip-control.c:1868
msgid "Update complete\n"
msgstr "Güncelleme tamamlandı\n"

#: calendar/gui/e-itip-control.c:1871
msgid "Calendar file could not be updated!\n"
msgstr "Takvim dosyası güncellenemedi!\n"

#: calendar/gui/e-itip-control.c:1900 calendar/gui/e-itip-control.c:1966
msgid "Attendee status can not be updated because the item no longer exists"
msgstr "Bu öğe yerinde bulunamadığı için katılımcı bilgileri güncellenemedi"

#: calendar/gui/e-itip-control.c:1921
msgid "This response is not from a current attendee.  Add as an attendee?"
msgstr ""

#: calendar/gui/e-itip-control.c:1933
msgid "Attendee status could not be updated because of an invalid status!\n"
msgstr "Katılımcı bilgileri geçersiz bir durum nedeniyle güncellenemedi!\n"

#: calendar/gui/e-itip-control.c:1957
msgid "You don't have the right permissions to update the calendar\n"
msgstr ""

#: calendar/gui/e-itip-control.c:1960
msgid "Attendee status updated\n"
msgstr "Katılımcı bilgileri güncellendi\n"

#: calendar/gui/e-itip-control.c:1963
msgid "Attendee status could not be updated!\n"
msgstr "Katılımcı bilgileri güncellenemedi!\n"

#: calendar/gui/e-itip-control.c:1998
msgid "Removal Complete"
msgstr "Bitiş Tamamlandı"

#: calendar/gui/e-itip-control.c:2028 calendar/gui/e-itip-control.c:2078
msgid "Item sent!\n"
msgstr "Öğe gönderildi!\n"

#: calendar/gui/e-itip-control.c:2030 calendar/gui/e-itip-control.c:2082
msgid "The item could not be sent!\n"
msgstr "Öğe gönderilemedi!\n"

#: calendar/gui/e-itip-control.c:2155
msgid "Select Calendar Folder"
msgstr "Takvim Dizinini Seçin"

#: calendar/gui/e-itip-control.c:2162
msgid "Select Tasks Folder"
msgstr "Görevler Dizinini Seçin"

#: calendar/gui/e-itip-control.glade.h:2
#, no-c-format
msgid "%P %%"
msgstr "%P %% "

#: calendar/gui/e-itip-control.glade.h:3
msgid "--to--"
msgstr "--kime--"

#: calendar/gui/e-itip-control.glade.h:4
msgid "Calendar Message"
msgstr "Takvim İletisi"

#: calendar/gui/e-itip-control.glade.h:5
msgid "Date:"
msgstr "Tarih:"

#: calendar/gui/e-itip-control.glade.h:7
msgid "Loading Calendar"
msgstr "Takvim Yükleniyor"

#: calendar/gui/e-itip-control.glade.h:8
msgid "Loading calendar..."
msgstr "Takvim yükleniyor..."

#: calendar/gui/e-itip-control.glade.h:10
msgid "Server Message:"
msgstr "Sunucu Mesajı:"

#: calendar/gui/e-itip-control.glade.h:12
msgid "date-end"
msgstr "bitiş-tarihi"

#: calendar/gui/e-itip-control.glade.h:13
msgid "date-start"
msgstr "başlangıç-tarihi"

#: calendar/gui/e-meeting-model.c:84
msgid "Chair Persons"
msgstr "Toplantıyı Yönetenler"

#: calendar/gui/e-meeting-model.c:85 calendar/gui/e-meeting-model.c:1764
msgid "Required Participants"
msgstr "Gerekli Katılımcılar"

#: calendar/gui/e-meeting-model.c:86
msgid "Optional Participants"
msgstr "Seçimlik Katılımcılar"

#: calendar/gui/e-meeting-model.c:87
msgid "Resources"
msgstr "Kaynaklar"

#: calendar/gui/e-meeting-model.c:233 calendar/gui/e-meeting-model.c:250
#: calendar/gui/e-meeting-model.c:565 calendar/gui/e-meeting-model.c:831
msgid "Individual"
msgstr "Bireysel"

#: calendar/gui/e-meeting-model.c:235 calendar/gui/e-meeting-model.c:252
#: calendar/gui/e-meeting-model.c:832
msgid "Group"
msgstr "Grup"

#: calendar/gui/e-meeting-model.c:237 calendar/gui/e-meeting-model.c:254
#: calendar/gui/e-meeting-model.c:833
msgid "Resource"
msgstr "Kaynak"

#: calendar/gui/e-meeting-model.c:239 calendar/gui/e-meeting-model.c:256
#: calendar/gui/e-meeting-model.c:834
msgid "Room"
msgstr "Oda"

#: calendar/gui/e-meeting-model.c:268 calendar/gui/e-meeting-model.c:285
#: calendar/gui/e-meeting-model.c:847
msgid "Chair"
msgstr "Sandalye"

#: calendar/gui/e-meeting-model.c:270 calendar/gui/e-meeting-model.c:287
#: calendar/gui/e-meeting-model.c:567 calendar/gui/e-meeting-model.c:848
msgid "Required Participant"
msgstr "Gerekli Katılımcı"

#: calendar/gui/e-meeting-model.c:272 calendar/gui/e-meeting-model.c:289
#: calendar/gui/e-meeting-model.c:849
msgid "Optional Participant"
msgstr "Seçimlik Katılımcı"

#: calendar/gui/e-meeting-model.c:274 calendar/gui/e-meeting-model.c:291
#: calendar/gui/e-meeting-model.c:850
msgid "Non-Participant"
msgstr "Katılmayan"

#: calendar/gui/e-meeting-model.c:326 calendar/gui/e-meeting-model.c:349
#: calendar/gui/e-meeting-model.c:879 calendar/gui/e-meeting-time-sel.c:437
msgid "Tentative"
msgstr "Girişimli"

#: calendar/gui/e-meeting-model.c:328 calendar/gui/e-meeting-model.c:351
#: calendar/gui/e-meeting-model.c:880
msgid "Delegated"
msgstr ""

#: calendar/gui/e-meeting-model.c:332 calendar/gui/e-meeting-model.c:355
msgid "In Process"
msgstr "İşlemde"

#. This is a strftime() format string %A = full weekday name,
#. %B = full month name, %d = month day, %Y = full year.
#: calendar/gui/e-meeting-time-sel-item.c:475
#: calendar/gui/e-meeting-time-sel.c:2114
msgid "%A, %B %d, %Y"
msgstr "%d %B %A, %Y"

#. This is a strftime() format string %a = abbreviated weekday
#. name, %m = month number, %d = month day, %Y = full year.
#: calendar/gui/e-meeting-time-sel-item.c:479
#: calendar/gui/e-meeting-time-sel.c:2144 e-util/e-time-utils.c:190
#: e-util/e-time-utils.c:283 e-util/e-time-utils.c:371
msgid "%a %m/%d/%Y"
msgstr "%d %b %Y %a"

#. This is a strftime() format string %m = month number,
#. %d = month day, %Y = full year.
#: calendar/gui/e-meeting-time-sel-item.c:483 e-util/e-time-utils.c:225
#: e-util/e-time-utils.c:286 widgets/misc/e-dateedit.c:1597
msgid "%m/%d/%Y"
msgstr "%d/%m/%Y"

#: calendar/gui/e-meeting-time-sel.c:439
msgid "Out of Office"
msgstr "Ofiste Değil"

#: calendar/gui/e-meeting-time-sel.c:440
msgid "No Information"
msgstr "Bilgi Yok"

#: calendar/gui/e-meeting-time-sel.c:478
msgid "_Options"
msgstr "_Seçenekler"

#: calendar/gui/e-meeting-time-sel.c:495
msgid "Show _Only Working Hours"
msgstr "_Sadece Çalışma Saatlerini Göster"

#: calendar/gui/e-meeting-time-sel.c:508
msgid "Show _Zoomed Out"
msgstr "_Uzaklaştırılmış Göster"

#: calendar/gui/e-meeting-time-sel.c:526
msgid "_Update Free/Busy"
msgstr "_Boş/Meşgul Olanları Güncelle"

#: calendar/gui/e-meeting-time-sel.c:544
msgid "_<<"
msgstr "_<<"

#: calendar/gui/e-meeting-time-sel.c:561
msgid "_Autopick"
msgstr "_Otomatikman seç"

#: calendar/gui/e-meeting-time-sel.c:575
msgid ">_>"
msgstr ">_>"

#: calendar/gui/e-meeting-time-sel.c:592
msgid "_All People and Resources"
msgstr "_Tüm Kişiler ve Kaynaklar"

#: calendar/gui/e-meeting-time-sel.c:605
msgid "All _People and One Resource"
msgstr "Tüm _Kişiler ve Bir Kaynak"

#: calendar/gui/e-meeting-time-sel.c:618
msgid "_Required People"
msgstr "_Gerekli Kişiler"

#: calendar/gui/e-meeting-time-sel.c:631
msgid "Required People and _One Resource"
msgstr "Gerekli Kişiler ve _Bir Kaynak"

#: calendar/gui/e-meeting-time-sel.c:654
msgid "Meeting _start time:"
msgstr "Toplantı b_aşlama saati :"

#: calendar/gui/e-meeting-time-sel.c:673
msgid "Meeting _end time:"
msgstr "Toplantı _bitiş saati:"

#: calendar/gui/e-tasks.c:358 calendar/gui/gnome-cal.c:2036
#: calendar/gui/gnome-cal.c:2047
#, c-format
msgid "Opening tasks at %s"
msgstr "%s tarihinde görevler açılıyor"

#: calendar/gui/e-tasks.c:387 calendar/gui/tasks-control.c:196
#, c-format
msgid "Could not load the tasks in `%s'"
msgstr "%s içindeki görevler yüklenemedi."

#: calendar/gui/e-tasks.c:402
#, c-format
msgid "The method required to load `%s' is not supported"
msgstr "`%s' yüklemek için gereken yöntem desteklenmiyor"

#: calendar/gui/e-tasks.c:416 calendar/gui/gnome-cal.c:1561
#, fuzzy, c-format
msgid "You don't have permission to open the folder in `%s'"
msgstr "`%s' dizini açılamadı."

#: calendar/gui/e-tasks.c:484 calendar/gui/gnome-cal.c:1765
#, fuzzy, c-format
msgid ""
"Error on %s:\n"
" %s"
msgstr ""
"'%s' sırasında hata:\n"
"%s"

#: calendar/gui/e-tasks.c:556
msgid "Completing tasks..."
msgstr "Görevler tamamlanıyor..."

#: calendar/gui/e-tasks.c:579
msgid "Deleting selected objects..."
msgstr "Seçilen öğeler siliniyor..."

#: calendar/gui/e-tasks.c:672
#, fuzzy
msgid "Expunging"
msgstr "Dizin siliniyor"

#: calendar/gui/e-week-view.c:3513
msgid "New _Appointment..."
msgstr "Yeni _Randevu..."

#: calendar/gui/gnome-cal.c:1533
#, c-format
msgid "Could not open the folder in `%s'"
msgstr "`%s' dizini açılamadı."

#: calendar/gui/gnome-cal.c:1547
#, c-format
msgid "The method required to open `%s' is not supported"
msgstr "`%s' açmak için gereken yöntem desteklenmiyor"

#: calendar/gui/gnome-cal.c:1593
#, fuzzy, c-format
msgid "Adding alarms for %s"
msgstr "%s tarihinde Alarm"

#: calendar/gui/gnome-cal.c:1786
#, c-format
msgid ""
"The calendar backend for\n"
"%s\n"
" has crashed. You will have to restart Evolution in order to use it again"
msgstr ""

#: calendar/gui/gnome-cal.c:1791
#, c-format
msgid ""
"The task backend for\n"
"%s\n"
" has crashed. You will have to restart Evolution in order to use it again"
msgstr ""

#: calendar/gui/gnome-cal.c:2018
#, c-format
msgid "Opening calendar at %s"
msgstr "%s tarihinde takvim açılıyor"

#: calendar/gui/gnome-cal.c:2058
#, fuzzy
msgid "Opening default tasks folder"
msgstr "%s dizini açılıyor"

#: calendar/gui/goto-dialog.glade.h:1
msgid "April"
msgstr "Nisan"

#: calendar/gui/goto-dialog.glade.h:2
msgid "August"
msgstr "Ağustos"

#: calendar/gui/goto-dialog.glade.h:3
msgid "December"
msgstr "Eylül"

#: calendar/gui/goto-dialog.glade.h:4
msgid "February"
msgstr "Şubat"

#: calendar/gui/goto-dialog.glade.h:5
msgid "Go To Date"
msgstr "Tarihe Git"

#: calendar/gui/goto-dialog.glade.h:6
msgid "Go To Today"
msgstr "Bugüne Git"

#: calendar/gui/goto-dialog.glade.h:7
msgid "January"
msgstr "Ocak"

#: calendar/gui/goto-dialog.glade.h:8
msgid "July"
msgstr "Temmuz"

#: calendar/gui/goto-dialog.glade.h:9
msgid "June"
msgstr "Haziran"

#: calendar/gui/goto-dialog.glade.h:10
msgid "March"
msgstr "Mart"

#: calendar/gui/goto-dialog.glade.h:11
msgid "May"
msgstr "Mayıs"

#: calendar/gui/goto-dialog.glade.h:12
msgid "November"
msgstr "Kasım"

#: calendar/gui/goto-dialog.glade.h:13
msgid "October"
msgstr "Ekim"

#: calendar/gui/goto-dialog.glade.h:14
msgid "September"
msgstr "Eylül"

#: calendar/gui/itip-utils.c:348 calendar/gui/itip-utils.c:419
msgid "An organizer must be set."
msgstr "Bir düzenleyen kişi olmak zorunda."

#: calendar/gui/itip-utils.c:383
msgid "At least one attendee is necessary"
msgstr "En az bir katılımcı olmak zorunda"

#: calendar/gui/itip-utils.c:462 calendar/gui/itip-utils.c:571
msgid "Event information"
msgstr "Olay bilgisi"

#: calendar/gui/itip-utils.c:464 calendar/gui/itip-utils.c:573
msgid "Task information"
msgstr "Görev bilgisi"

#: calendar/gui/itip-utils.c:466 calendar/gui/itip-utils.c:575
#, fuzzy
msgid "Journal information"
msgstr "Seçimlik Bilgi"

#: calendar/gui/itip-utils.c:468 calendar/gui/itip-utils.c:595
msgid "Free/Busy information"
msgstr "Boş/Meşgul bilgisi"

#: calendar/gui/itip-utils.c:470
msgid "Calendar information"
msgstr "Takvim bilgisi"

#: calendar/gui/itip-utils.c:506
msgid "Updated"
msgstr "Güncellendi"

#: calendar/gui/itip-utils.c:514
msgid "Refresh"
msgstr "Tazele"

#: calendar/gui/itip-utils.c:518
msgid "Counter-proposal"
msgstr ""

#: calendar/gui/itip-utils.c:589
#, c-format
msgid "Free/Busy information (%s to %s)"
msgstr "Boş/Meşgul bilgisi (%s -> %s)"

#: calendar/gui/itip-utils.c:601
msgid "iCalendar information"
msgstr "iCalendar bilgisi"

#: calendar/gui/itip-utils.c:759
msgid "You must be an attendee of the event."
msgstr "Bu olayda bir katılımcı olarak görünmeniz gerekiyor."

#: calendar/gui/main.c:70
msgid "Could not activate Bonobo"
msgstr "Bonobo başlatılamadı"

#: calendar/gui/main.c:99
msgid "Could not create the component editor factory"
msgstr "Bileşen düzenleyici mimarisi oluşturulamadı."

#: calendar/gui/print.c:456
msgid "1st"
msgstr "1."

#: calendar/gui/print.c:456
msgid "2nd"
msgstr "2."

#: calendar/gui/print.c:456
msgid "3rd"
msgstr "3."

#: calendar/gui/print.c:456
msgid "4th"
msgstr "4."

#: calendar/gui/print.c:456
msgid "5th"
msgstr "5."

#: calendar/gui/print.c:457
msgid "6th"
msgstr "6."

#: calendar/gui/print.c:457
msgid "7th"
msgstr "7."

#: calendar/gui/print.c:457
msgid "8th"
msgstr "8."

#: calendar/gui/print.c:457
msgid "9th"
msgstr "8."

#: calendar/gui/print.c:457
msgid "10th"
msgstr "10."

#: calendar/gui/print.c:458
msgid "11th"
msgstr "11."

#: calendar/gui/print.c:458
msgid "12th"
msgstr "12."

#: calendar/gui/print.c:458
msgid "13th"
msgstr "13."

#: calendar/gui/print.c:458
msgid "14th"
msgstr "14."

#: calendar/gui/print.c:458
msgid "15th"
msgstr "15."

#: calendar/gui/print.c:459
msgid "16th"
msgstr "16."

#: calendar/gui/print.c:459
msgid "17th"
msgstr "17."

#: calendar/gui/print.c:459
msgid "18th"
msgstr "18."

#: calendar/gui/print.c:459
msgid "19th"
msgstr "19."

#: calendar/gui/print.c:459
msgid "20th"
msgstr "20."

#: calendar/gui/print.c:460
msgid "21st"
msgstr "21."

#: calendar/gui/print.c:460
msgid "22nd"
msgstr "22."

#: calendar/gui/print.c:460
msgid "23rd"
msgstr "23."

#: calendar/gui/print.c:460
msgid "24th"
msgstr "24."

#: calendar/gui/print.c:460
msgid "25th"
msgstr "25."

#: calendar/gui/print.c:461
msgid "26th"
msgstr "26."

#: calendar/gui/print.c:461
msgid "27th"
msgstr "27."

#: calendar/gui/print.c:461
msgid "28th"
msgstr "28."

#: calendar/gui/print.c:461
msgid "29th"
msgstr "29."

#: calendar/gui/print.c:461
msgid "30th"
msgstr "39."

#: calendar/gui/print.c:462
msgid "31st"
msgstr "31."

#: calendar/gui/print.c:529
msgid "Su"
msgstr "Pz"

#: calendar/gui/print.c:529
msgid "Mo"
msgstr "Pt"

#: calendar/gui/print.c:529
msgid "Tu"
msgstr "Sa"

#: calendar/gui/print.c:529
msgid "We"
msgstr "Ça"

#: calendar/gui/print.c:530
msgid "Th"
msgstr "Pe"

#: calendar/gui/print.c:530
msgid "Fr"
msgstr "Cu"

#: calendar/gui/print.c:530
msgid "Sa"
msgstr "Ct"

#. Day
#: calendar/gui/print.c:1863
msgid "Selected day (%a %b %d %Y)"
msgstr "Seçili gün (%d %b %a %Y)"

#: calendar/gui/print.c:1888 calendar/gui/print.c:1892
msgid "%a %b %d"
msgstr "%d %b %a"

#: calendar/gui/print.c:1889
msgid "%a %d %Y"
msgstr "%d %a %Y"

#: calendar/gui/print.c:1893 calendar/gui/print.c:1895
#: calendar/gui/print.c:1896
msgid "%a %b %d %Y"
msgstr "%d %b %a %Y"

#: calendar/gui/print.c:1900
#, c-format
msgid "Selected week (%s - %s)"
msgstr "Seçili hafta (%s - %s)"

#. Month
#: calendar/gui/print.c:1908
msgid "Selected month (%b %Y)"
msgstr "Seçili ay (%b %Y)"

#. Year
#: calendar/gui/print.c:1915
msgid "Selected year (%Y)"
msgstr "Seçili yıl (%Y)"

#: calendar/gui/print.c:2249
msgid "Task"
msgstr "Görev"

#: calendar/gui/print.c:2306
#, c-format
msgid "Status: %s"
msgstr "Durum: %s"

#: calendar/gui/print.c:2324
#, c-format
msgid "Priority: %s"
msgstr "Öncelik: %s"

#: calendar/gui/print.c:2338
#, c-format
msgid "Percent Complete: %i"
msgstr "Biten Yüzde: %i"

#: calendar/gui/print.c:2350
#, c-format
msgid "URL: %s"
msgstr "URL: %s"

#: calendar/gui/print.c:2364
#, c-format
msgid "Categories: %s"
msgstr "Kategoriler: %s"

#: calendar/gui/print.c:2375
msgid "Contacts: "
msgstr "Bağlantılar: "

#: calendar/gui/print.c:2430
msgid "Print Calendar"
msgstr "Takvimi Yazdır"

#: calendar/gui/print.c:2521 calendar/gui/print.c:2613
#: calendar/gui/tasks-control.c:589 mail/mail-callbacks.c:3216
#: my-evolution/e-summary.c:633
msgid "Print Preview"
msgstr "Önizlemeyi Yazdır"

#: calendar/gui/print.c:2550
msgid "Print Item"
msgstr "Öğeyi Yazdır"

#: calendar/gui/print.c:2631
msgid "Print Setup"
msgstr "Yazdırma Ayarları"

#: calendar/gui/tasks-control-factory.c:75
msgid "Could not create the tasks view.  Please check your ORBit and OAF setup."
msgstr "Takvim görünümü yaratılamadı. ORBit ve OAF kurulumunu gözden geçirin."

#: calendar/gui/tasks-control.c:147
msgid "The URI of the tasks folder to display"
msgstr "Gösterilecek görevler dizininin URI'si"

#: calendar/gui/tasks-control.c:462
msgid ""
"This operation will permanently erase all tasks marked as completed. If you "
"continue, you will not be able to recover these tasks.\n"
"\n"
"Really erase these tasks?"
msgstr ""

#: calendar/gui/tasks-control.c:469 mail/mail-callbacks.c:2696
#: mail/mail-callbacks.c:2938
msgid "Do not ask me again."
msgstr "Tekrar sorma."

#: calendar/gui/tasks-control.c:618
msgid "Print Tasks"
msgstr "Yazdırma Görevleri"

#: calendar/gui/tasks-migrate.c:105
msgid ""
"Evolution has taken the tasks that were in your calendar folder and "
"automatically migrated them to the new tasks folder."
msgstr "Evolution takvim dizininde bulunan tüm görevleri görevler dizinine aktardı."

#: calendar/gui/tasks-migrate.c:108
msgid ""
"Evolution has tried to take the tasks that were in your calendar folder and "
"migrate them to the new tasks folder.\n"
"Some of the tasks could not be migrated, so this process may be attempted "
"again in the future."
msgstr ""
"Evolution takvim dizininde bulunan görevleri yeni görevler dizinine "
"göndermeyi denedi, ancak bazı görevler taşınamadı. Bu işlemi daha sonra "
"tekrar deneyiniz."

#: calendar/gui/tasks-migrate.c:120
#, c-format
msgid ""
"Could not open `%s'; no items from the calendar folder will be migrated to "
"the tasks folder."
msgstr ""
"`%s' açılamadı. Takvim dizininden görevler dizinine gönderilecek öğe "
"bulunmuyor."

#: calendar/gui/tasks-migrate.c:133
#, c-format
msgid ""
"The method required to load `%s' is not supported; no items from the "
"calendar folder will be migrated to the tasks folder."
msgstr "`%s' yüklemek için gereken yöntem desteklemiyor."

#: calendar/gui/weekday-picker.c:314 calendar/gui/weekday-picker.c:409
msgid "SMTWTFS"
msgstr "PPSÇPCCP"

#: calendar/importers/GNOME_Evolution_Calendar_Importer.oaf.in.h:1
#, fuzzy
msgid "Factory to import iCalendar files into Evolution"
msgstr "VCard dosyalarını Evolution'a aktarım mimarisi."

#: calendar/importers/GNOME_Evolution_Calendar_Importer.oaf.in.h:2
#, fuzzy
msgid "Imports iCalendar files into Evolution"
msgstr "VCard dosyalarını Evolution'a aktarır."

#: calendar/importers/GNOME_Evolution_Calendar_Importer.oaf.in.h:3
#, fuzzy
msgid "Imports vCalendar files into Evolution"
msgstr "VCard dosyalarını Evolution'a aktarır."

#: calendar/importers/icalendar-importer.c:168
#, fuzzy, c-format
msgid "Can't get storage list from registry: %s"
msgstr ""
"%s iletisi %s dizininden alınamadı\n"
"  %s"

#: calendar/importers/icalendar-importer.c:180
#, c-format
msgid "Can't call getFolderAtPath on storage: %s"
msgstr ""

#: calendar/importers/icalendar-importer.c:483
msgid "Reminder!!"
msgstr "Hatırlatıcı!!"

#: calendar/importers/icalendar-importer.c:697
msgid "Calendar Events"
msgstr "Takvim Olayları"

#: calendar/importers/icalendar-importer.c:722
#, fuzzy
msgid ""
"Evolution has found Gnome Calendar files.\n"
"Would you like to import them into Evolution?"
msgstr ""
"Evolution, Pine e-posta dosyaları buldu.\n"
"Bunların Evolution'a aktarılmasını istiyor musunuz?"

#: calendar/importers/icalendar-importer.c:729
msgid "Gnome Calendar"
msgstr "Gnome Takvimi"

#: calendar/pcs/query.c:289
msgid "time-now expects 0 arguments"
msgstr "time-now hiç argüman istemiyor"

#: calendar/pcs/query.c:313
msgid "make-time expects 1 argument"
msgstr "make-time 1 argüman istiyor"

#: calendar/pcs/query.c:318
msgid "make-time expects argument 1 to be a string"
msgstr "make-time için birinci argüman bir dizi olmalıdır."

#: calendar/pcs/query.c:326
msgid "make-time argument 1 must be an ISO 8601 date/time string"
msgstr "make-time 1. argümanı ISO 8601 tarih/saat bilgisi olmalıdır"

#: calendar/pcs/query.c:355
msgid "time-add-day expects 2 arguments"
msgstr "time-add-day 2 argüman istiyor"

#: calendar/pcs/query.c:360
#, fuzzy
msgid "time-add-day expects argument 1 to be a time_t"
msgstr "time-day-end birinci argümanı time_t biçiminde istiyor"

#: calendar/pcs/query.c:367
msgid "time-add-day expects argument 2 to be an integer"
msgstr "time-add-day 2. argümanı bir sayı istiyor"

#: calendar/pcs/query.c:394
msgid "time-day-begin expects 1 argument"
msgstr "time-day-begin bir argüman istiyor"

#: calendar/pcs/query.c:399
msgid "time-day-begin expects argument 1 to be a time_t"
msgstr "time-day-begin birinci argümanı time_t biçiminde istiyor"

#: calendar/pcs/query.c:426
msgid "time-day-end expects 1 argument"
msgstr "time-day-end bir argüman istiyor"

#: calendar/pcs/query.c:431
msgid "time-day-end expects argument 1 to be a time_t"
msgstr "time-day-end birinci argümanı time_t biçiminde istiyor"

#: calendar/pcs/query.c:467
msgid "get-vtype expects 0 arguments"
msgstr "get-vtype hiç argüman istemiyor"

#: calendar/pcs/query.c:563
msgid "occur-in-time-range? expects 2 arguments"
msgstr "ocrur-in-time-range? iki argüman istiyor"

#: calendar/pcs/query.c:568
#, fuzzy
msgid "occur-in-time-range? expects argument 1 to be a time_t"
msgstr "time-day-end birinci argümanı time_t biçiminde istiyor"

#: calendar/pcs/query.c:575
#, fuzzy
msgid "occur-in-time-range? expects argument 2 to be a time_t"
msgstr "time-day-end birinci argümanı time_t biçiminde istiyor"

#: calendar/pcs/query.c:705
msgid "contains? expects 2 arguments"
msgstr "contains? iki argüman istiyor"

#: calendar/pcs/query.c:710
msgid "contains? expects argument 1 to be a string"
msgstr "contains? birinci argümanı dizgi şeklinde istiyor"

#: calendar/pcs/query.c:717
msgid "contains? expects argument 2 to be a string"
msgstr "contains? ikinci argümanı dizgi şeklinde istiyor"

#: calendar/pcs/query.c:734
#, fuzzy
msgid ""
"contains? expects argument 1 to be one of \"any\", \"summary\", \"description"
"\""
msgstr "contains? birinci argümanı dizgi şeklinde istiyor"

#: calendar/pcs/query.c:776
#, fuzzy
msgid "has-categories? expects at least 1 argument"
msgstr "make-time 1 argüman istiyor"

#: calendar/pcs/query.c:788
msgid ""
"has-categories? expects all arguments to be strings or one and only one "
"argument to be a boolean false (#f)"
msgstr ""

#: calendar/pcs/query.c:876
#, fuzzy
msgid "is-completed? expects 0 arguments"
msgstr "time-now hiç argüman istemiyor"

#: calendar/pcs/query.c:921
#, fuzzy
msgid "completed-before? expects 1 argument"
msgstr "time-day-begin bir argüman istiyor"

#: calendar/pcs/query.c:926
#, fuzzy
msgid "completed-before? expects argument 1 to be a time_t"
msgstr "time-day-begin birinci argümanı time_t biçiminde istiyor"

#: calendar/pcs/query.c:1229
msgid "Evaluation of the search expression did not yield a boolean value"
msgstr ""

#: calendar/pcs/query.c:1483
msgid "Parse error"
msgstr "Ayrıştırma hatası"

#.
#. * These are the timezone names from the Olson timezone data.
#. * We only place them here so gettext picks them up for translation.
#. * Don't include in any C files.
#.
#: calendar/zones.h:7
msgid "Africa/Abidjan"
msgstr "Afrika/Abidjan"

#: calendar/zones.h:8
msgid "Africa/Accra"
msgstr "Afrika/Accra"

#: calendar/zones.h:9
msgid "Africa/Addis_Ababa"
msgstr "Afrika/Addis_Ababa"

#: calendar/zones.h:10
msgid "Africa/Algiers"
msgstr "Afrika/Algiers"

#: calendar/zones.h:11
msgid "Africa/Asmera"
msgstr "Afrika/Asmera"

#: calendar/zones.h:12
msgid "Africa/Bamako"
msgstr "Afrika/Bamako"

#: calendar/zones.h:13
msgid "Africa/Bangui"
msgstr "Afrika/Bangui"

#: calendar/zones.h:14
msgid "Africa/Banjul"
msgstr "Afrika/Banjul"

#: calendar/zones.h:15
msgid "Africa/Bissau"
msgstr "Afrika/Bissau"

#: calendar/zones.h:16
msgid "Africa/Blantyre"
msgstr "Afrika/Blantyre"

#: calendar/zones.h:17
msgid "Africa/Brazzaville"
msgstr "Afrika/Brazzaville"

#: calendar/zones.h:18
msgid "Africa/Bujumbura"
msgstr "Afrika/Bujumbura"

#: calendar/zones.h:19
msgid "Africa/Cairo"
msgstr "Afrika/Cairo"

#: calendar/zones.h:20
msgid "Africa/Casablanca"
msgstr "Afrika/Casablanca"

#: calendar/zones.h:21
msgid "Africa/Ceuta"
msgstr "Afrika/Ceuta"

#: calendar/zones.h:22
msgid "Africa/Conakry"
msgstr "Afrika/Conakry"

#: calendar/zones.h:23
msgid "Africa/Dakar"
msgstr "Afrika/Dakar"

#: calendar/zones.h:24
msgid "Africa/Dar_es_Salaam"
msgstr "Afrika/Dar_es_Salaam"

#: calendar/zones.h:25
msgid "Africa/Djibouti"
msgstr "Afrika/Djibouti"

#: calendar/zones.h:26
msgid "Africa/Douala"
msgstr "Afrika/Douala"

#: calendar/zones.h:27
msgid "Africa/El_Aaiun"
msgstr "Afrika/El_Aaiun"

#: calendar/zones.h:28
msgid "Africa/Freetown"
msgstr "Afrika/Freetown"

#: calendar/zones.h:29
msgid "Africa/Gaborone"
msgstr "Afrika/Gaborone"

#: calendar/zones.h:30
msgid "Africa/Harare"
msgstr "Afrika/Harare"

#: calendar/zones.h:31
msgid "Africa/Johannesburg"
msgstr "Afrika/Johannesburg"

#: calendar/zones.h:32
msgid "Africa/Kampala"
msgstr "Afrika/Kampala"

#: calendar/zones.h:33
msgid "Africa/Khartoum"
msgstr "Afrika/Khartoum"

#: calendar/zones.h:34
msgid "Africa/Kigali"
msgstr "Afrika/Kigali"

#: calendar/zones.h:35
msgid "Africa/Kinshasa"
msgstr "Afrika/Kinshasa"

#: calendar/zones.h:36
msgid "Africa/Lagos"
msgstr "Afrika/Lagos"

#: calendar/zones.h:37
msgid "Africa/Libreville"
msgstr "Afrika/Libreville"

#: calendar/zones.h:38
msgid "Africa/Lome"
msgstr "Afrika/Lome"

#: calendar/zones.h:39
msgid "Africa/Luanda"
msgstr "Afrika/Luanda"

#: calendar/zones.h:40
msgid "Africa/Lubumbashi"
msgstr "Afrika/Lubumbashi"

#: calendar/zones.h:41
msgid "Africa/Lusaka"
msgstr "Afrika/Lusaka"

#: calendar/zones.h:42
msgid "Africa/Malabo"
msgstr "Afrika/Malabo"

#: calendar/zones.h:43
msgid "Africa/Maputo"
msgstr "Afrika/Maputo"

#: calendar/zones.h:44
msgid "Africa/Maseru"
msgstr "Afrika/Maseru"

#: calendar/zones.h:45
msgid "Africa/Mbabane"
msgstr "Afrika/Mbabane"

#: calendar/zones.h:46
msgid "Africa/Mogadishu"
msgstr "Afrika/Mogadishu"

#: calendar/zones.h:47
msgid "Africa/Monrovia"
msgstr "Afrika/Monrovia"

#: calendar/zones.h:48
msgid "Africa/Nairobi"
msgstr "Afrika/Nairobi"

#: calendar/zones.h:49
msgid "Africa/Ndjamena"
msgstr "Afrika/Ndjamena"

#: calendar/zones.h:50
msgid "Africa/Niamey"
msgstr "Afrika/Niamey"

#: calendar/zones.h:51
msgid "Africa/Nouakchott"
msgstr "Afrika/Nouakchott"

#: calendar/zones.h:52
msgid "Africa/Ouagadougou"
msgstr "Afrika/Ouagadougou"

#: calendar/zones.h:53
msgid "Africa/Porto-Novo"
msgstr "Afrika/Porto-Novo"

#: calendar/zones.h:54
msgid "Africa/Sao_Tome"
msgstr "Afrika/Sao_Tome"

#: calendar/zones.h:55
msgid "Africa/Timbuktu"
msgstr "Afrika/Timbuktu"

#: calendar/zones.h:56
msgid "Africa/Tripoli"
msgstr "Afrika/Tripoli"

#: calendar/zones.h:57
msgid "Africa/Tunis"
msgstr "Afrika/Tunis"

#: calendar/zones.h:58
msgid "Africa/Windhoek"
msgstr "Afrika/Windhoek"

#: calendar/zones.h:59
msgid "America/Adak"
msgstr "Amerika/Adak"

#: calendar/zones.h:60
msgid "America/Anchorage"
msgstr "Amerika/Anchorage"

#: calendar/zones.h:61
msgid "America/Anguilla"
msgstr "Amerika/Anguilla"

#: calendar/zones.h:62
msgid "America/Antigua"
msgstr "Amerika/Antigua"

#: calendar/zones.h:63
msgid "America/Araguaina"
msgstr "Amerika/Araguaina"

#: calendar/zones.h:64
msgid "America/Aruba"
msgstr "Amerika/Aruba"

#: calendar/zones.h:65
msgid "America/Asuncion"
msgstr "Amerika/Asuncion"

#: calendar/zones.h:66
msgid "America/Barbados"
msgstr "Amerika/Barbados"

#: calendar/zones.h:67
msgid "America/Belem"
msgstr "Amerika/Belem"

#: calendar/zones.h:68
msgid "America/Belize"
msgstr "Amerika/Belize"

#: calendar/zones.h:69
msgid "America/Boa_Vista"
msgstr "Amerika/Boa_Vista"

#: calendar/zones.h:70
msgid "America/Bogota"
msgstr "Amerika/Bogota"

#: calendar/zones.h:71
msgid "America/Boise"
msgstr "Amerika/Boise"

#: calendar/zones.h:72
msgid "America/Buenos_Aires"
msgstr "Amerika/Buenos_Aires"

#: calendar/zones.h:73
msgid "America/Cambridge_Bay"
msgstr "Amerika/Cambridge_Bay"

#: calendar/zones.h:74
msgid "America/Cancun"
msgstr "Amerika/Cancun"

#: calendar/zones.h:75
msgid "America/Caracas"
msgstr "Amerika/Caracas"

#: calendar/zones.h:76
msgid "America/Catamarca"
msgstr "Amerika/Catamarca"

#: calendar/zones.h:77
msgid "America/Cayenne"
msgstr "Amerika/Cayenne"

#: calendar/zones.h:78
msgid "America/Cayman"
msgstr "Amerika/Cayman"

#: calendar/zones.h:79
msgid "America/Chicago"
msgstr "Amerika/Chicago"

#: calendar/zones.h:80
msgid "America/Chihuahua"
msgstr "Amerika/Chihuahua"

#: calendar/zones.h:81
msgid "America/Cordoba"
msgstr "Amerika/Cordoba"

#: calendar/zones.h:82
msgid "America/Costa_Rica"
msgstr "Amerika/Costa_Rica"

#: calendar/zones.h:83
msgid "America/Cuiaba"
msgstr "Amerika/Cuiaba"

#: calendar/zones.h:84
msgid "America/Curacao"
msgstr "Amerika/Curacao"

#: calendar/zones.h:85
msgid "America/Danmarkshavn"
msgstr "Amerika/Danmarkshavn"

#: calendar/zones.h:86
msgid "America/Dawson"
msgstr "Amerika/Dawson"

#: calendar/zones.h:87
msgid "America/Dawson_Creek"
msgstr "Amerika/Dawson_Creek"

#: calendar/zones.h:88
msgid "America/Denver"
msgstr "Amerika/Denver"

#: calendar/zones.h:89
msgid "America/Detroit"
msgstr "Amerika/Detroit"

#: calendar/zones.h:90
msgid "America/Dominica"
msgstr "Amerika/Dominica"

#: calendar/zones.h:91
msgid "America/Edmonton"
msgstr "Amerika/Edmonton"

#: calendar/zones.h:92
msgid "America/Eirunepe"
msgstr "Amerika/Eirunepe"

#: calendar/zones.h:93
msgid "America/El_Salvador"
msgstr "Amerika/El_Salvador"

#: calendar/zones.h:94
msgid "America/Fortaleza"
msgstr "Amerika/Fortaleza"

#: calendar/zones.h:95
msgid "America/Glace_Bay"
msgstr "Amerika/Glace_Bay"

#: calendar/zones.h:96
msgid "America/Godthab"
msgstr "Amerika/Godthab"

#: calendar/zones.h:97
msgid "America/Goose_Bay"
msgstr "Amerika/Goose_Bay"

#: calendar/zones.h:98
msgid "America/Grand_Turk"
msgstr "Amerika/Grand_Turk"

#: calendar/zones.h:99
msgid "America/Grenada"
msgstr "Amerika/Grenada"

#: calendar/zones.h:100
msgid "America/Guadeloupe"
msgstr "Amerika/Guadeloupe"

#: calendar/zones.h:101
msgid "America/Guatemala"
msgstr "Amerika/Guatemala"

#: calendar/zones.h:102
msgid "America/Guayaquil"
msgstr "Amerika/Guayaquil"

#: calendar/zones.h:103
msgid "America/Guyana"
msgstr "Amerika/Guyana"

#: calendar/zones.h:104
msgid "America/Halifax"
msgstr "Amerika/Halifax"

#: calendar/zones.h:105
msgid "America/Havana"
msgstr "Amerika/Havana"

#: calendar/zones.h:106
msgid "America/Hermosillo"
msgstr "Amerika/Hermosillo"

#: calendar/zones.h:107
msgid "America/Indiana/Indianapolis"
msgstr "Amerika/Indiana/Indianapolis"

#: calendar/zones.h:108
msgid "America/Indiana/Knox"
msgstr "Amerika/Indiana/Knox"

#: calendar/zones.h:109
msgid "America/Indiana/Marengo"
msgstr "Amerika/Indiana/Marengo"

#: calendar/zones.h:110
msgid "America/Indiana/Vevay"
msgstr "Amerika/Indiana/Vevay"

#: calendar/zones.h:111
msgid "America/Indianapolis"
msgstr "Amerika/Indianapolis"

#: calendar/zones.h:112
msgid "America/Inuvik"
msgstr "Amerika/Inuvik"

#: calendar/zones.h:113
msgid "America/Iqaluit"
msgstr "Amerika/Iqaluit"

#: calendar/zones.h:114
msgid "America/Jamaica"
msgstr "Amerika/Jamaica"

#: calendar/zones.h:115
msgid "America/Jujuy"
msgstr "Amerika/Jujuy"

#: calendar/zones.h:116
msgid "America/Juneau"
msgstr "Amerika/Juneau"

#: calendar/zones.h:117
msgid "America/Kentucky/Louisville"
msgstr "Amerika/Kentucky/Louisville"

#: calendar/zones.h:118
msgid "America/Kentucky/Monticello"
msgstr "Amerika/Kentucky/Monticello"

#: calendar/zones.h:119
msgid "America/La_Paz"
msgstr "Amerika/La_Paz"

#: calendar/zones.h:120
msgid "America/Lima"
msgstr "Amerika/Lima"

#: calendar/zones.h:121
msgid "America/Los_Angeles"
msgstr "Amerika/Los_Angeles"

#: calendar/zones.h:122
msgid "America/Louisville"
msgstr "Amerika/Louisville"

#: calendar/zones.h:123
msgid "America/Maceio"
msgstr "Amerika/Maceio"

#: calendar/zones.h:124
msgid "America/Managua"
msgstr "Amerika/Managua"

#: calendar/zones.h:125
msgid "America/Manaus"
msgstr "Amerika/Manaus"

#: calendar/zones.h:126
msgid "America/Martinique"
msgstr "Amerika/Martinique"

#: calendar/zones.h:127
msgid "America/Mazatlan"
msgstr "Amerika/Mazatlan"

#: calendar/zones.h:128
msgid "America/Mendoza"
msgstr "Amerika/Mendoza"

#: calendar/zones.h:129
msgid "America/Menominee"
msgstr "Amerika/Menominee"

#: calendar/zones.h:130
msgid "America/Merida"
msgstr "Amerika/Merida"

#: calendar/zones.h:131
msgid "America/Mexico_City"
msgstr "Amerika/Mexico_City"

#: calendar/zones.h:132
msgid "America/Miquelon"
msgstr "Amerika/Miquelon"

#: calendar/zones.h:133
msgid "America/Monterrey"
msgstr "Amerika/Monterrey"

#: calendar/zones.h:134
msgid "America/Montevideo"
msgstr "Amerika/Montevideo"

#: calendar/zones.h:135
msgid "America/Montreal"
msgstr "Amerika/Montreal"

#: calendar/zones.h:136
msgid "America/Montserrat"
msgstr "Amerika/Montserrat"

#: calendar/zones.h:137
msgid "America/Nassau"
msgstr "Amerika/Nassau"

#: calendar/zones.h:138
msgid "America/New_York"
msgstr "Amerika/New_York"

#: calendar/zones.h:139
msgid "America/Nipigon"
msgstr "Amerika/Nipigon"

#: calendar/zones.h:140
msgid "America/Nome"
msgstr "Amerika/Nome"

#: calendar/zones.h:141
msgid "America/Noronha"
msgstr "Amerika/Noronha"

#: calendar/zones.h:142
msgid "America/North_Dakota/Center"
msgstr "Amerika/North_Dakota/Center"

#: calendar/zones.h:143
msgid "America/Panama"
msgstr "Amerika/Panama"

#: calendar/zones.h:144
msgid "America/Pangnirtung"
msgstr "Amerika/Pangnirtung"

#: calendar/zones.h:145
msgid "America/Paramaribo"
msgstr "Amerika/Paramaribo"

#: calendar/zones.h:146
msgid "America/Phoenix"
msgstr "Amerika/Phoenix"

#: calendar/zones.h:147
msgid "America/Port-au-Prince"
msgstr "Amerika/Port-au-Prince"

#: calendar/zones.h:148
msgid "America/Port_of_Spain"
msgstr "Amerika/Port_of_Spain"

#: calendar/zones.h:149
msgid "America/Porto_Velho"
msgstr "Amerika/Porto_Velho"

#: calendar/zones.h:150
msgid "America/Puerto_Rico"
msgstr "Amerika/Puerto_Rico"

#: calendar/zones.h:151
msgid "America/Rainy_River"
msgstr "Amerika/Rainy_River"

#: calendar/zones.h:152
msgid "America/Rankin_Inlet"
msgstr "Amerika/Rankin_Inlet"

#: calendar/zones.h:153
msgid "America/Recife"
msgstr "Amerika/Recife"

#: calendar/zones.h:154
msgid "America/Regina"
msgstr "Amerika/Regina"

#: calendar/zones.h:155
msgid "America/Rio_Branco"
msgstr "Amerika/Rio_Branco"

#: calendar/zones.h:156
msgid "America/Rosario"
msgstr "Amerika/Rosario"

#: calendar/zones.h:157
msgid "America/Santiago"
msgstr "Amerika/Santiago"

#: calendar/zones.h:158
msgid "America/Santo_Domingo"
msgstr "Amerika/Santo_Domingo"

#: calendar/zones.h:159
msgid "America/Sao_Paulo"
msgstr "Amerika/Sao_Paulo"

#: calendar/zones.h:160
msgid "America/Scoresbysund"
msgstr "Amerika/Scoresbysund"

#: calendar/zones.h:161
msgid "America/Shiprock"
msgstr "Amerika/Shiprock"

#: calendar/zones.h:162
msgid "America/St_Johns"
msgstr "Amerika/St_Johns"

#: calendar/zones.h:163
msgid "America/St_Kitts"
msgstr "Amerika/St_Kitts"

#: calendar/zones.h:164
msgid "America/St_Lucia"
msgstr "Amerika/St_Lucia"

#: calendar/zones.h:165
msgid "America/St_Thomas"
msgstr "Amerika/St_Thomas"

#: calendar/zones.h:166
msgid "America/St_Vincent"
msgstr "Amerika/St_Vincent"

#: calendar/zones.h:167
msgid "America/Swift_Current"
msgstr "Amerika/Swift_Current"

#: calendar/zones.h:168
msgid "America/Tegucigalpa"
msgstr "Amerika/Tegucigalpa"

#: calendar/zones.h:169
msgid "America/Thule"
msgstr "Amerika/Thule"

#: calendar/zones.h:170
msgid "America/Thunder_Bay"
msgstr "Amerika/Thunder_Bay"

#: calendar/zones.h:171
msgid "America/Tijuana"
msgstr "Amerika/Tijuana"

#: calendar/zones.h:172
msgid "America/Tortola"
msgstr "Amerika/Tortola"

#: calendar/zones.h:173
msgid "America/Vancouver"
msgstr "Amerika/Vancouver"

#: calendar/zones.h:174
msgid "America/Whitehorse"
msgstr "Amerika/Whitehorse"

#: calendar/zones.h:175
msgid "America/Winnipeg"
msgstr "Amerika/Winnipeg"

#: calendar/zones.h:176
msgid "America/Yakutat"
msgstr "Amerika/Yakutat"

#: calendar/zones.h:177
msgid "America/Yellowknife"
msgstr "Amerika/Yellowknife"

#: calendar/zones.h:178
msgid "Antarctica/Casey"
msgstr "Antarktika/Casey"

#: calendar/zones.h:179
msgid "Antarctica/Davis"
msgstr "Antarktika/Davis"

#: calendar/zones.h:180
msgid "Antarctica/DumontDUrville"
msgstr "Antarktika/DumontDUrville"

#: calendar/zones.h:181
msgid "Antarctica/Mawson"
msgstr "Antarktika/Mawson"

#: calendar/zones.h:182
msgid "Antarctica/McMurdo"
msgstr "Antarktika/McMurdo"

#: calendar/zones.h:183
msgid "Antarctica/Palmer"
msgstr "Antarktika/Palmer"

#: calendar/zones.h:184
msgid "Antarctica/South_Pole"
msgstr "Antarktika/South_Pole"

#: calendar/zones.h:185
msgid "Antarctica/Syowa"
msgstr "Antarktika/Syowa"

#: calendar/zones.h:186
msgid "Antarctica/Vostok"
msgstr "Antarktika/Vostok"

#: calendar/zones.h:187
msgid "Arctic/Longyearbyen"
msgstr "Arctic/Longyearbyen"

#: calendar/zones.h:188
msgid "Asia/Aden"
msgstr "Asya/Aden"

#: calendar/zones.h:189
msgid "Asia/Almaty"
msgstr "Asya/Almaty"

#: calendar/zones.h:190
msgid "Asia/Amman"
msgstr "Asya/Amman"

#: calendar/zones.h:191
msgid "Asia/Anadyr"
msgstr "Asya/Anadyr"

#: calendar/zones.h:192
msgid "Asia/Aqtau"
msgstr "Asya/Aqtau"

#: calendar/zones.h:193
msgid "Asia/Aqtobe"
msgstr "Asya/Aqtobe"

#: calendar/zones.h:194
msgid "Asia/Ashgabat"
msgstr "Asya/Ashgabat"

#: calendar/zones.h:195
msgid "Asia/Baghdad"
msgstr "Asya/Baghdad"

#: calendar/zones.h:196
msgid "Asia/Bahrain"
msgstr "Asya/Bahrain"

#: calendar/zones.h:197
msgid "Asia/Baku"
msgstr "Asya/Baku"

#: calendar/zones.h:198
msgid "Asia/Bangkok"
msgstr "Asya/Bangkok"

#: calendar/zones.h:199
msgid "Asia/Beirut"
msgstr "Asya/Beirut"

#: calendar/zones.h:200
msgid "Asia/Bishkek"
msgstr "Asya/Bishkek"

#: calendar/zones.h:201
msgid "Asia/Brunei"
msgstr "Asya/Brunei"

#: calendar/zones.h:202
msgid "Asia/Calcutta"
msgstr "Asya/Calcutta"

#: calendar/zones.h:203
msgid "Asia/Choibalsan"
msgstr "Asya/Choibalsan"

#: calendar/zones.h:204
msgid "Asia/Chongqing"
msgstr "Asya/Chongqing"

#: calendar/zones.h:205
msgid "Asia/Colombo"
msgstr "Asya/Colombo"

#: calendar/zones.h:206
msgid "Asia/Damascus"
msgstr "Asya/Damascus"

#: calendar/zones.h:207
msgid "Asia/Dhaka"
msgstr "Asya/Dhaka"

#: calendar/zones.h:208
msgid "Asia/Dili"
msgstr "Asya/Dili"

#: calendar/zones.h:209
msgid "Asia/Dubai"
msgstr "Asya/Dubai"

#: calendar/zones.h:210
msgid "Asia/Dushanbe"
msgstr "Asya/Dushanbe"

#: calendar/zones.h:211
msgid "Asia/Gaza"
msgstr "Asya/Gaza"

#: calendar/zones.h:212
msgid "Asia/Harbin"
msgstr "Asya/Harbin"

#: calendar/zones.h:213
msgid "Asia/Hong_Kong"
msgstr "Asya/Hong_Kong"

#: calendar/zones.h:214
msgid "Asia/Hovd"
msgstr "Asya/Hovd"

#: calendar/zones.h:215
msgid "Asia/Irkutsk"
msgstr "Asya/Irkutsk"

#: calendar/zones.h:216
msgid "Asia/Istanbul"
msgstr "Asya/İstanbul"

#: calendar/zones.h:217
msgid "Asia/Jakarta"
msgstr "Asya/Jakarta"

#: calendar/zones.h:218
msgid "Asia/Jayapura"
msgstr "Asya/Jayapura"

#: calendar/zones.h:219
msgid "Asia/Jerusalem"
msgstr "Asya/Jerusalem"

#: calendar/zones.h:220
msgid "Asia/Kabul"
msgstr "Asya/Kabul"

#: calendar/zones.h:221
msgid "Asia/Kamchatka"
msgstr "Asya/Kamchatka"

#: calendar/zones.h:222
msgid "Asia/Karachi"
msgstr "Asya/Karachi"

#: calendar/zones.h:223
msgid "Asia/Kashgar"
msgstr "Asya/Kashgar"

#: calendar/zones.h:224
msgid "Asia/Katmandu"
msgstr "Asya/Katmandu"

#: calendar/zones.h:225
msgid "Asia/Krasnoyarsk"
msgstr "Asya/Krasnoyarsk"

#: calendar/zones.h:226
msgid "Asia/Kuala_Lumpur"
msgstr "Asya/Kuala_Lumpur"

#: calendar/zones.h:227
msgid "Asia/Kuching"
msgstr "Asya/Kuching"

#: calendar/zones.h:228
msgid "Asia/Kuwait"
msgstr "Asya/Kuwait"

#: calendar/zones.h:229
msgid "Asia/Macao"
msgstr "Asya/Macao"

#: calendar/zones.h:230
msgid "Asia/Macau"
msgstr "Asya/Macau"

#: calendar/zones.h:231
msgid "Asia/Magadan"
msgstr "Asya/Magadan"

#: calendar/zones.h:232
msgid "Asia/Makassar"
msgstr "Asya/Makassar"

#: calendar/zones.h:233
msgid "Asia/Manila"
msgstr "Asya/Manila"

#: calendar/zones.h:234
msgid "Asia/Muscat"
msgstr "Asya/Muscat"

#: calendar/zones.h:235
msgid "Asia/Nicosia"
msgstr "Asya/Nicosia"

#: calendar/zones.h:236
msgid "Asia/Novosibirsk"
msgstr "Asya/Novosibirsk"

#: calendar/zones.h:237
msgid "Asia/Omsk"
msgstr "Asya/Omsk"

#: calendar/zones.h:238
msgid "Asia/Oral"
msgstr "Asya/Oral"

#: calendar/zones.h:239
msgid "Asia/Phnom_Penh"
msgstr "Asya/Phnom_Penh"

#: calendar/zones.h:240
msgid "Asia/Pontianak"
msgstr "Asya/Pontianak"

#: calendar/zones.h:241
msgid "Asia/Pyongyang"
msgstr "Asya/Pyongyang"

#: calendar/zones.h:242
msgid "Asia/Qatar"
msgstr "Asya/Qatar"

#: calendar/zones.h:243
msgid "Asia/Qyzylorda"
msgstr "Asya/Qyzylorda"

#: calendar/zones.h:244
msgid "Asia/Rangoon"
msgstr "Asya/Rangoon"

#: calendar/zones.h:245
msgid "Asia/Riyadh"
msgstr "Asya/Riyadh"

#: calendar/zones.h:246
msgid "Asia/Saigon"
msgstr "Asya/Saigon"

#: calendar/zones.h:247
msgid "Asia/Sakhalin"
msgstr "Asya/Sakhalin"

#: calendar/zones.h:248
msgid "Asia/Samarkand"
msgstr "Asya/Samarkand"

#: calendar/zones.h:249
msgid "Asia/Seoul"
msgstr "Asya/Seoul"

#: calendar/zones.h:250
msgid "Asia/Shanghai"
msgstr "Asya/Shanghai"

#: calendar/zones.h:251
msgid "Asia/Singapore"
msgstr "Asya/Singapore"

#: calendar/zones.h:252
msgid "Asia/Taipei"
msgstr "Asya/Taipei"

#: calendar/zones.h:253
msgid "Asia/Tashkent"
msgstr "Asya/Tashkent"

#: calendar/zones.h:254
msgid "Asia/Tbilisi"
msgstr "Asya/Tbilisi"

#: calendar/zones.h:255
msgid "Asia/Tehran"
msgstr "Asya/Tehran"

#: calendar/zones.h:256
msgid "Asia/Thimphu"
msgstr "Asya/Thimphu"

#: calendar/zones.h:257
msgid "Asia/Tokyo"
msgstr "Asya/Tokyo"

#: calendar/zones.h:258
msgid "Asia/Ujung_Pandang"
msgstr "Asya/Ujung_Pandang"

#: calendar/zones.h:259
msgid "Asia/Ulaanbaatar"
msgstr "Asya/Ulaanbaatar"

#: calendar/zones.h:260
msgid "Asia/Urumqi"
msgstr "Asya/Urumqi"

#: calendar/zones.h:261
msgid "Asia/Vientiane"
msgstr "Asya/Vientiane"

#: calendar/zones.h:262
msgid "Asia/Vladivostok"
msgstr "Asya/Vladivostok"

#: calendar/zones.h:263
msgid "Asia/Yakutsk"
msgstr "Asya/Yakutsk"

#: calendar/zones.h:264
msgid "Asia/Yekaterinburg"
msgstr "Asya/Yekaterinburg"

#: calendar/zones.h:265
msgid "Asia/Yerevan"
msgstr "Asya/Yerevan"

#: calendar/zones.h:266
msgid "Atlantic/Azores"
msgstr "Atlantik/Azores"

#: calendar/zones.h:267
msgid "Atlantic/Bermuda"
msgstr "Atlantik/Bermuda"

#: calendar/zones.h:268
msgid "Atlantic/Canary"
msgstr "Atlantik/Canary"

#: calendar/zones.h:269
msgid "Atlantic/Cape_Verde"
msgstr "Atlantik/Cape_Verde"

#: calendar/zones.h:270
msgid "Atlantic/Faeroe"
msgstr "Atlantik/Faeroe"

#: calendar/zones.h:271
msgid "Atlantic/Jan_Mayen"
msgstr "Atlantik/Jan_Mayen"

#: calendar/zones.h:272
msgid "Atlantic/Madeira"
msgstr "Atlantik/Madeira"

#: calendar/zones.h:273
msgid "Atlantic/Reykjavik"
msgstr "Atlantik/Reykjavik"

#: calendar/zones.h:274
msgid "Atlantic/South_Georgia"
msgstr "Atlantik/South_Georgia"

#: calendar/zones.h:275
msgid "Atlantic/St_Helena"
msgstr "Atlantik/St_Helena"

#: calendar/zones.h:276
msgid "Atlantic/Stanley"
msgstr "Atlantik/Stanley"

#: calendar/zones.h:277
msgid "Australia/Adelaide"
msgstr "Avustralya/Adelaide"

#: calendar/zones.h:278
msgid "Australia/Brisbane"
msgstr "Avustralya/Brisbane"

#: calendar/zones.h:279
msgid "Australia/Broken_Hill"
msgstr "Avustralya/Broken_Hill"

#: calendar/zones.h:280
msgid "Australia/Darwin"
msgstr "Avustralya/Darwin"

#: calendar/zones.h:281
msgid "Australia/Hobart"
msgstr "Avustralya/Hobart"

#: calendar/zones.h:282
msgid "Australia/Lindeman"
msgstr "Avustralya/Lindeman"

#: calendar/zones.h:283
msgid "Australia/Lord_Howe"
msgstr "Avustralya/Lord_Howe"

#: calendar/zones.h:284
msgid "Australia/Melbourne"
msgstr "Avustralya/Melbourne"

#: calendar/zones.h:285
msgid "Australia/Perth"
msgstr "Avustralya/Perth"

#: calendar/zones.h:286
msgid "Australia/Sydney"
msgstr "Avustralya/Sydney"

#: calendar/zones.h:287
msgid "Europe/Amsterdam"
msgstr "Avrupa/Amsterdam"

#: calendar/zones.h:288
msgid "Europe/Andorra"
msgstr "Avrupa/Andorra"

#: calendar/zones.h:289
msgid "Europe/Athens"
msgstr "Avrupa/Athens"

#: calendar/zones.h:290
msgid "Europe/Belfast"
msgstr "Avrupa/Belfast"

#: calendar/zones.h:291
msgid "Europe/Belgrade"
msgstr "Avrupa/Belgrade"

#: calendar/zones.h:292
msgid "Europe/Berlin"
msgstr "Avrupa/Berlin"

#: calendar/zones.h:293
msgid "Europe/Bratislava"
msgstr "Avrupa/Bratislava"

#: calendar/zones.h:294
msgid "Europe/Brussels"
msgstr "Avrupa/Brussels"

#: calendar/zones.h:295
msgid "Europe/Bucharest"
msgstr "Avrupa/Bucharest"

#: calendar/zones.h:296
msgid "Europe/Budapest"
msgstr "Avrupa/Budapest"

#: calendar/zones.h:297
msgid "Europe/Chisinau"
msgstr "Avrupa/Chisinau"

#: calendar/zones.h:298
msgid "Europe/Copenhagen"
msgstr "Avrupa/Copenhagen"

#: calendar/zones.h:299
msgid "Europe/Dublin"
msgstr "Avrupa/Dublin"

#: calendar/zones.h:300
msgid "Europe/Gibraltar"
msgstr "Avrupa/Gibraltar"

#: calendar/zones.h:301
msgid "Europe/Helsinki"
msgstr "Avrupa/Helsinki"

#: calendar/zones.h:302
msgid "Europe/Istanbul"
msgstr "Avrupa/İstanbul"

#: calendar/zones.h:303
msgid "Europe/Kaliningrad"
msgstr "Avrupa/Kaliningrad"

#: calendar/zones.h:304
msgid "Europe/Kiev"
msgstr "Avrupa/Kiev"

#: calendar/zones.h:305
msgid "Europe/Lisbon"
msgstr "Avrupa/Lisbon"

#: calendar/zones.h:306
msgid "Europe/Ljubljana"
msgstr "Avrupa/Ljubljana"

#: calendar/zones.h:307
msgid "Europe/London"
msgstr "Avrupa/London"

#: calendar/zones.h:308
msgid "Europe/Luxembourg"
msgstr "Avrupa/Luxembourg"

#: calendar/zones.h:309
msgid "Europe/Madrid"
msgstr "Avrupa/Madrid"

#: calendar/zones.h:310
msgid "Europe/Malta"
msgstr "Avrupa/Malta"

#: calendar/zones.h:311
msgid "Europe/Minsk"
msgstr "Avrupa/Minsk"

#: calendar/zones.h:312
msgid "Europe/Monaco"
msgstr "Avrupa/Monaco"

#: calendar/zones.h:313
msgid "Europe/Moscow"
msgstr "Avrupa/Moscow"

#: calendar/zones.h:314
msgid "Europe/Nicosia"
msgstr "Avrupa/Nicosia"

#: calendar/zones.h:315
msgid "Europe/Oslo"
msgstr "Avrupa/Oslo"

#: calendar/zones.h:316
msgid "Europe/Paris"
msgstr "Avrupa/Paris"

#: calendar/zones.h:317
msgid "Europe/Prague"
msgstr "Avrupa/Prague"

#: calendar/zones.h:318
msgid "Europe/Riga"
msgstr "Avrupa/Riga"

#: calendar/zones.h:319
msgid "Europe/Rome"
msgstr "Avrupa/Rome"

#: calendar/zones.h:320
msgid "Europe/Samara"
msgstr "Avrupa/Samara"

#: calendar/zones.h:321
msgid "Europe/San_Marino"
msgstr "Avrupa/San_Marino"

#: calendar/zones.h:322
msgid "Europe/Sarajevo"
msgstr "Avrupa/Sarajevo"

#: calendar/zones.h:323
msgid "Europe/Simferopol"
msgstr "Avrupa/Simferopol"

#: calendar/zones.h:324
msgid "Europe/Skopje"
msgstr "Avrupa/Skopje"

#: calendar/zones.h:325
msgid "Europe/Sofia"
msgstr "Avrupa/Sofya"

#: calendar/zones.h:326
msgid "Europe/Stockholm"
msgstr "Avrupa/Stockholm"

#: calendar/zones.h:327
msgid "Europe/Tallinn"
msgstr "Avrupa/Tallinn"

#: calendar/zones.h:328
msgid "Europe/Tirane"
msgstr "Avrupa/Tiran"

#: calendar/zones.h:329
msgid "Europe/Uzhgorod"
msgstr "Avrupa/Uzhgorod"

#: calendar/zones.h:330
msgid "Europe/Vaduz"
msgstr "Avrupa/Vaduz"

#: calendar/zones.h:331
msgid "Europe/Vatican"
msgstr "Avrupa/Vatikan"

#: calendar/zones.h:332
msgid "Europe/Vienna"
msgstr "Avrupa/Viyana"

#: calendar/zones.h:333
msgid "Europe/Vilnius"
msgstr "Avrupa/Vilnius"

#: calendar/zones.h:334
msgid "Europe/Warsaw"
msgstr "Avrupa/Varşova"

#: calendar/zones.h:335
msgid "Europe/Zagreb"
msgstr "Avrupa/Zagreb"

#: calendar/zones.h:336
msgid "Europe/Zaporozhye"
msgstr "Avrupa/Zaporozhye"

#: calendar/zones.h:337
msgid "Europe/Zurich"
msgstr "Avrupa/Zurich"

#: calendar/zones.h:338
msgid "Indian/Antananarivo"
msgstr "Hindistan/Antananarivo"

#: calendar/zones.h:339
msgid "Indian/Chagos"
msgstr "Hindistan/Chagos"

#: calendar/zones.h:340
msgid "Indian/Christmas"
msgstr "Hindistan/Christmas"

#: calendar/zones.h:341
msgid "Indian/Cocos"
msgstr "Hindistan/Cocos"

#: calendar/zones.h:342
msgid "Indian/Comoro"
msgstr "Indian/Comoro"

#: calendar/zones.h:343
msgid "Indian/Kerguelen"
msgstr "Indian/Kerguelen"

#: calendar/zones.h:344
msgid "Indian/Mahe"
msgstr "Indian/Mahe"

#: calendar/zones.h:345
msgid "Indian/Maldives"
msgstr "Indian/Maldives"

#: calendar/zones.h:346
msgid "Indian/Mauritius"
msgstr "Indian/Mauritius"

#: calendar/zones.h:347
msgid "Indian/Mayotte"
msgstr "Indian/Mayotte"

#: calendar/zones.h:348
msgid "Indian/Reunion"
msgstr "Indian/Reunion"

#: calendar/zones.h:349
msgid "Pacific/Apia"
msgstr "Pacific/Apia"

#: calendar/zones.h:350
msgid "Pacific/Auckland"
msgstr "Pacific/Auckland"

#: calendar/zones.h:351
msgid "Pacific/Chatham"
msgstr "Pacific/Chatham"

#: calendar/zones.h:352
msgid "Pacific/Easter"
msgstr "Pacific/Easter"

#: calendar/zones.h:353
msgid "Pacific/Efate"
msgstr "Pacific/Efate"

#: calendar/zones.h:354
msgid "Pacific/Enderbury"
msgstr "Pacific/Enderbury"

#: calendar/zones.h:355
msgid "Pacific/Fakaofo"
msgstr "Pacific/Fakaofo"

#: calendar/zones.h:356
msgid "Pacific/Fiji"
msgstr "Pacific/Fiji"

#: calendar/zones.h:357
msgid "Pacific/Funafuti"
msgstr "Pacific/Funafuti"

#: calendar/zones.h:358
msgid "Pacific/Galapagos"
msgstr "Pacific/Galapagos"

#: calendar/zones.h:359
msgid "Pacific/Gambier"
msgstr "Pacific/Gambier"

#: calendar/zones.h:360
msgid "Pacific/Guadalcanal"
msgstr "Pacific/Guadalcanal"

#: calendar/zones.h:361
msgid "Pacific/Guam"
msgstr "Pacific/Guam"

#: calendar/zones.h:362
msgid "Pacific/Honolulu"
msgstr "Pacific/Honolulu"

#: calendar/zones.h:363
msgid "Pacific/Johnston"
msgstr "Pacific/Johnston"

#: calendar/zones.h:364
msgid "Pacific/Kiritimati"
msgstr "Pacific/Kiritimati"

#: calendar/zones.h:365
msgid "Pacific/Kosrae"
msgstr "Pacific/Kosrae"

#: calendar/zones.h:366
msgid "Pacific/Kwajalein"
msgstr "Pacific/Kwajalein"

#: calendar/zones.h:367
msgid "Pacific/Majuro"
msgstr "Pacific/Majuro"

#: calendar/zones.h:368
msgid "Pacific/Marquesas"
msgstr "Pacific/Marquesas"

#: calendar/zones.h:369
msgid "Pacific/Midway"
msgstr "Pacific/Midway"

#: calendar/zones.h:370
msgid "Pacific/Nauru"
msgstr "Pacific/Nauru"

#: calendar/zones.h:371
msgid "Pacific/Niue"
msgstr "Pacific/Niue"

#: calendar/zones.h:372
msgid "Pacific/Norfolk"
msgstr "Pacific/Norfolk"

#: calendar/zones.h:373
msgid "Pacific/Noumea"
msgstr "Pacific/Noumea"

#: calendar/zones.h:374
msgid "Pacific/Pago_Pago"
msgstr "Pacific/Pago_Pago"

#: calendar/zones.h:375
msgid "Pacific/Palau"
msgstr "Pacific/Palau"

#: calendar/zones.h:376
msgid "Pacific/Pitcairn"
msgstr "Pacific/Pitcairn"

#: calendar/zones.h:377
msgid "Pacific/Ponape"
msgstr "Pacific/Ponape"

#: calendar/zones.h:378
msgid "Pacific/Port_Moresby"
msgstr "Pacific/Port_Moresby"

#: calendar/zones.h:379
msgid "Pacific/Rarotonga"
msgstr "Pacific/Rarotonga"

#: calendar/zones.h:380
msgid "Pacific/Saipan"
msgstr "Pacific/Saipan"

#: calendar/zones.h:381
msgid "Pacific/Tahiti"
msgstr "Pacific/Tahiti"

#: calendar/zones.h:382
msgid "Pacific/Tarawa"
msgstr "Pacific/Tarawa"

#: calendar/zones.h:383
msgid "Pacific/Tongatapu"
msgstr "Pacific/Tongatapu"

#: calendar/zones.h:384
msgid "Pacific/Truk"
msgstr "Pacific/Truk"

#: calendar/zones.h:385
msgid "Pacific/Wake"
msgstr "Pacific/Wake"

#: calendar/zones.h:386
msgid "Pacific/Wallis"
msgstr "Pacific/Wallis"

#: calendar/zones.h:387
msgid "Pacific/Yap"
msgstr "Pacific/Yap"

#: camel/camel-cipher-context.c:170
msgid "Signing is not supported by this cipher"
msgstr "Bu şifreleme ile imza desteklenmiyor"

#: camel/camel-cipher-context.c:210
msgid "Verifying is not supported by this cipher"
msgstr "Bu şifreleme ile onaylama desteklenmiyor"

#: camel/camel-cipher-context.c:254
msgid "Encryption is not supported by this cipher"
msgstr "Bu şifre ile şifreleme desteklenmiyor"

#: camel/camel-cipher-context.c:296
msgid "Decryption is not supported by this cipher"
msgstr "Bu şifreleme ile geriye dönük şifreleme desteklenmiyor"

#: camel/camel-data-cache.c:169
msgid "Unable to create cache path"
msgstr ""

#: camel/camel-data-cache.c:443
#, c-format
msgid "Could not remove cache entry: %s: %s"
msgstr ""

#: camel/camel-disco-diary.c:185
#, c-format
msgid ""
"Could not write log entry: %s\n"
"Further operations on this server will not be replayed when you\n"
"reconnect to the network."
msgstr ""

#: camel/camel-disco-diary.c:248
#, c-format
msgid ""
"Could not open `%s':\n"
"%s\n"
"Changes made to this folder will not be resynchronized."
msgstr ""
"`%s' açılamadı:\n"
"%s\n"
"Bu dizine yapılacak değişiklikler senkronize edilmeyecektir."

#: camel/camel-disco-diary.c:282
msgid "Resynchronizing with server"
msgstr "Sunucu ile eşzamanlama yapılıyor"

#: camel/camel-disco-folder.c:278
#, fuzzy, c-format
msgid "Preparing folder '%s' for offline"
msgstr "'%s' dizinine kaydediliyor"

#: camel/camel-disco-store.c:367
msgid "You must be working online to complete this operation"
msgstr "Bu işlemi bitirmek için İnternet bağlantısı sağlamalısınız"

#: camel/camel-filter-driver.c:768 camel/camel-filter-driver.c:777
msgid "Syncing folders"
msgstr "Dizinler eşzamanlı hale getiriliyor"

#: camel/camel-filter-driver.c:866 camel/camel-filter-driver.c:1239
#, c-format
msgid "Error parsing filter: %s: %s"
msgstr "%s filtresini ayrıştırırken hata oldu: %s"

#: camel/camel-filter-driver.c:875 camel/camel-filter-driver.c:1245
#, c-format
msgid "Error executing filter: %s: %s"
msgstr "%s filtresini çalıştırırken hata oldu: %s"

#: camel/camel-filter-driver.c:942
msgid "Unable to open spool folder"
msgstr "Spool dizini açılamadı"

#: camel/camel-filter-driver.c:951
msgid "Unable to process spool folder"
msgstr "Spool dizini işlenemedi"

#: camel/camel-filter-driver.c:966
#, c-format
msgid "Getting message %d (%d%%)"
msgstr "%d (%%%d) iletisi alınıyor"

#: camel/camel-filter-driver.c:970
msgid "Cannot open message"
msgstr "İleti açılamadı"

#: camel/camel-filter-driver.c:971 camel/camel-filter-driver.c:983
#, c-format
msgid "Failed on message %d"
msgstr "%d iletisinde hata"

#: camel/camel-filter-driver.c:997 camel/camel-filter-driver.c:1091
msgid "Syncing folder"
msgstr "Dizin eşzamanlı hale getiriliyor"

#: camel/camel-filter-driver.c:1058
#, c-format
msgid "Getting message %d of %d"
msgstr "%d/%d ileti alınıyor"

#: camel/camel-filter-driver.c:1073
#, c-format
msgid "Failed at message %d of %d"
msgstr "%d/%d iletisinde hata"

#: camel/camel-filter-search.c:139
#, fuzzy
msgid "Failed to retrieve message"
msgstr "İletinin açılmasında hata."

#: camel/camel-filter-search.c:387
#, fuzzy
msgid "Invalid arguments to (system-flag)"
msgstr "Geçersiz argümanlar"

#: camel/camel-filter-search.c:402
#, fuzzy
msgid "Invalid arguments to (user-tag)"
msgstr "Geçersiz argümanlar"

#: camel/camel-filter-search.c:514
#, fuzzy, c-format
msgid "Failed to create pipe to '%s': %s"
msgstr "%s iletisi önbelleğe yazılamadı: %s"

#: camel/camel-filter-search.c:550
#, fuzzy, c-format
msgid "Failed to create child process '%s': %s"
msgstr "%s iletisi önbelleğe yazılamadı: %s"

#: camel/camel-filter-search.c:656 camel/camel-filter-search.c:664
#, c-format
msgid "Error executing filter search: %s: %s"
msgstr "%s filtre taramasını çalıştırırken hata oldu: %s"

#: camel/camel-folder-search.c:343
#, c-format
msgid ""
"Cannot parse search expression: %s:\n"
"%s"
msgstr ""
"Arama deyimi ayrıştırılamadı: %s:\n"
"%s"

#: camel/camel-folder-search.c:353
#, c-format
msgid ""
"Error executing search expression: %s:\n"
"%s"
msgstr ""
"Arama deyimi çalıştırılamadı: %s:\n"
"%s"

#: camel/camel-folder-search.c:570 camel/camel-folder-search.c:598
msgid "(match-all) requires a single bool result"
msgstr "(hepsini-eşle) boolean sonuç içermelidir"

#: camel/camel-folder-search.c:650
#, c-format
msgid "Performing query on unknown header: %s"
msgstr "Bilinmeyen başlık üzerinde arama yapılıyor: %s"

#: camel/camel-folder.c:583
#, c-format
msgid "Unsupported operation: append message: for %s"
msgstr "Desteklenmeyen işlem: mesaja ekle: %s için"

#: camel/camel-folder.c:1161
#, c-format
msgid "Unsupported operation: search by expression: for %s"
msgstr "Desteklenmeyen işlem: ifade ile ara: %s için"

#: camel/camel-folder.c:1201
#, c-format
msgid "Unsupported operation: search by uids: for %s"
msgstr "Desteklenmeyen işlem: uid ile ara: %s için"

#: camel/camel-folder.c:1319
msgid "Moving messages"
msgstr "İletiler taşınıyor"

#: camel/camel-folder.c:1319
#, fuzzy
msgid "Copying messages"
msgstr "İletiler %s'e kopyalanıyor"

#: camel/camel-gpg-context.c:697
#, c-format
msgid ""
"Unexpected GnuPG status message encountered:\n"
"\n"
"%s"
msgstr ""

#: camel/camel-gpg-context.c:711
msgid "Failed to parse gpg userid hint."
msgstr ""

#: camel/camel-gpg-context.c:734
msgid "Failed to parse gpg passphrase request."
msgstr ""

#: camel/camel-gpg-context.c:742
#, c-format
msgid ""
"You need a passphrase to unlock the key for\n"
"user: \"%s\""
msgstr ""

#: camel/camel-gpg-context.c:753 camel/camel-gpg-context.c:1206
#: camel/camel-gpg-context.c:1313 camel/camel-gpg-context.c:1388
#: camel/camel-gpg-context.c:1445 mail/mail-send-recv.c:540
msgid "Cancelled."
msgstr "İptal edildi."

#: camel/camel-gpg-context.c:771
msgid "Failed to unlock secret key: 3 bad passphrases given."
msgstr ""

#: camel/camel-gpg-context.c:777
#, fuzzy, c-format
msgid "Unexpected response from GnuPG: %s"
msgstr "POP sunucusundan beklenmeyen cevap: %s"

#: camel/camel-gpg-context.c:787
#, fuzzy
msgid "No data provided"
msgstr "Dosya adı belirtilmedi."

#: camel/camel-gpg-context.c:830
msgid "Failed to encrypt: No valid recipients specified."
msgstr ""

#: camel/camel-gpg-context.c:1082
#, fuzzy, c-format
msgid ""
"Failed to GPG %s message: %s\n"
"\n"
"%.*s"
msgstr "%s iletisi önbelleğe yazılamadı: %s"

#: camel/camel-gpg-context.c:1088
#, fuzzy, c-format
msgid "Failed to GPG %s message: %s\n"
msgstr "%s iletisi önbelleğe yazılamadı: %s"

#: camel/camel-gpg-context.c:1197
#, fuzzy, c-format
msgid "Failed to execute gpg: %s"
msgstr "%s iletisi önbelleğe yazılamadı: %s"

#: camel/camel-gpg-context.c:1227 camel/camel-gpg-context.c:1305
#: camel/camel-gpg-context.c:1379 camel/camel-gpg-context.c:1409
#: camel/camel-gpg-context.c:1436 camel/camel-gpg-context.c:1466
#, fuzzy
msgid "Failed to execute gpg."
msgstr "İletinin açılmasında hata."

#: camel/camel-gpg-context.c:1290
#, c-format
msgid "Cannot verify message signature: could not create temp file: %s"
msgstr ""

#: camel/camel-lock-client.c:111
#, c-format
msgid "Cannot build locking helper pipe: %s"
msgstr "Boru yaratılamadı: %s"

#: camel/camel-lock-client.c:124
#, fuzzy, c-format
msgid "Cannot fork locking helper: %s"
msgstr "Boru yaratılamadı: %s"

#: camel/camel-lock-client.c:202 camel/camel-lock-client.c:225
#, c-format
msgid "Could not lock '%s': protocol error with lock-helper"
msgstr ""

#: camel/camel-lock-client.c:215
#, c-format
msgid "Could not lock '%s'"
msgstr "%s kilitlenemedi"

#. well, this is really only a programatic error
#: camel/camel-lock.c:93 camel/camel-lock.c:112
#, c-format
msgid "Could not create lock file for %s: %s"
msgstr "%s için kilitleme dosyası oluşturulamadı: %s"

#: camel/camel-lock.c:152
#, c-format
msgid "Timed out trying to get lock file on %s. Try again later."
msgstr ""
"%s dosyasının kilidinin açılmasını beklerken zaman aşımı. Daha sonra yeniden "
"deneyiniz."

#: camel/camel-lock.c:206
#, c-format
msgid "Failed to get lock using fcntl(2): %s"
msgstr "fcntl(2) kullanılırken kilitleme hatası: %s"

#: camel/camel-lock.c:268
#, c-format
msgid "Failed to get lock using flock(2): %s"
msgstr "flock(2) kullanılırken kilitleme hatası: %s"

#: camel/camel-movemail.c:107
#, c-format
msgid "Could not check mail file %s: %s"
msgstr "E-posta dosyası %s denetlenemedi: %s"

#: camel/camel-movemail.c:121
#, c-format
msgid "Could not open mail file %s: %s"
msgstr "E-posta dosyası %s açılamadı: %s"

#: camel/camel-movemail.c:129
#, c-format
msgid "Could not open temporary mail file %s: %s"
msgstr "Geçici e-posta dosyası %s açılamadı: %s"

#: camel/camel-movemail.c:158
#, c-format
msgid "Failed to store mail in temp file %s: %s"
msgstr "%s geçici mektup dosyasını oluştururken hata: %s"

#: camel/camel-movemail.c:188
#, c-format
msgid "Could not create pipe: %s"
msgstr "Boru yaratılamadı: %s"

#: camel/camel-movemail.c:200
#, c-format
msgid "Could not fork: %s"
msgstr "Çatallama yapılamadı: %s"

#: camel/camel-movemail.c:238
#, c-format
msgid "Movemail program failed: %s"
msgstr "Movemail programında hata: %s"

#: camel/camel-movemail.c:239
msgid "(Unknown error)"
msgstr "(Bilinmeyen hata)"

#: camel/camel-movemail.c:262
#, c-format
msgid "Error reading mail file: %s"
msgstr "%s posta dosyasını okurken hata oluştu"

#: camel/camel-movemail.c:273
#, c-format
msgid "Error writing mail temp file: %s"
msgstr "Geçici mektup dosyasına yazarken hata: %s"

#: camel/camel-movemail.c:466 camel/camel-movemail.c:533
#, c-format
msgid "Error copying mail temp file: %s"
msgstr "Geçici mektup dosyasına yazarken hata: %s"

#: camel/camel-multipart-encrypted.c:259 camel/camel-multipart-encrypted.c:274
msgid "Failed to decrypt MIME part: protocol error"
msgstr ""

#: camel/camel-multipart-encrypted.c:287
msgid "Failed to decrypt MIME part: invalid structure"
msgstr ""

#: camel/camel-multipart-encrypted.c:327
msgid "Failed to decrypt MIME part: parse error"
msgstr ""

#: camel/camel-multipart-signed.c:625
msgid "This is a digitally signed message part"
msgstr ""

#: camel/camel-multipart-signed.c:679
msgid "parse error"
msgstr "ayrıştırma hatası"

#: camel/camel-provider.c:131
#, c-format
msgid "Could not load %s: Module loading not supported on this system."
msgstr "%s yüklenemedi: Bu sistemde modül yükleneme desteklenmiyor."

#: camel/camel-provider.c:140
#, c-format
msgid "Could not load %s: %s"
msgstr "%s yüklenemedi: %s"

#: camel/camel-provider.c:148
#, c-format
msgid "Could not load %s: No initialization code in module."
msgstr "%s yüklenemedi: Modülde başlangıç kodu bulunamadı"

#: camel/camel-sasl-anonymous.c:33
msgid "Anonymous"
msgstr "Anonim"

#: camel/camel-sasl-anonymous.c:35
msgid "This option will connect to the server using an anonymous login."
msgstr "Bu seçenek sunucuya anonim bağlantı kuracaktır."

#: camel/camel-sasl-anonymous.c:110 camel/camel-sasl-plain.c:87
msgid "Authentication failed."
msgstr "Kimlik denetimi başarısız."

#: camel/camel-sasl-anonymous.c:119
#, c-format
msgid ""
"Invalid email address trace information:\n"
"%s"
msgstr ""
"Geçersiz e-posta adres izleme bilgisi:\n"
"%s"

#: camel/camel-sasl-anonymous.c:131
#, c-format
msgid ""
"Invalid opaque trace information:\n"
"%s"
msgstr ""
"Hatalı opak izleme bilgisi:\n"
"%s"

#: camel/camel-sasl-anonymous.c:143
#, c-format
msgid ""
"Invalid trace information:\n"
"%s"
msgstr ""
"Hatalı izleme bilgisi:\n"
"%s"

#: camel/camel-sasl-cram-md5.c:35
msgid "CRAM-MD5"
msgstr "CRAM-MD5"

#: camel/camel-sasl-cram-md5.c:37
msgid ""
"This option will connect to the server using a secure CRAM-MD5 password, if "
"the server supports it."
msgstr "Bu seçenek sunucuya güvenli CRAM-MD5 sistemi ile bağlantı kuracaktır. "

#: camel/camel-sasl-digest-md5.c:43
msgid "DIGEST-MD5"
msgstr "DIGEST-MD5"

#: camel/camel-sasl-digest-md5.c:45
msgid ""
"This option will connect to the server using a secure DIGEST-MD5 password, "
"if the server supports it."
msgstr "Bu seçenek sunucuya güvenli DIGEST-MD5 sistemi ile bağlantı kuracaktır. "

#: camel/camel-sasl-digest-md5.c:810
msgid "Server challenge too long (>2048 octets)\n"
msgstr "Sunucu cevabı çok uzun (>2048 bayt)\n"

#: camel/camel-sasl-digest-md5.c:819
msgid "Server challenge invalid\n"
msgstr "Sunucudan hatalı cevap\n"

#: camel/camel-sasl-digest-md5.c:825
msgid "Server challenge contained invalid \"Quality of Protection\" token\n"
msgstr "Sunucudan hatalı \"Quality of Protection\" anahtarı geldi\n"

#: camel/camel-sasl-digest-md5.c:847
msgid "Server response did not contain authorization data\n"
msgstr "Sunucu cevabı kimlik denetim bilgisi içermiyor\n"

#: camel/camel-sasl-digest-md5.c:865
msgid "Server response contained incomplete authorization data\n"
msgstr "Sunucu cevabı yetersiz kimlik denetim bilgisis içeriyor\n"

#: camel/camel-sasl-digest-md5.c:875
msgid "Server response does not match\n"
msgstr "Sunucu cevabı uyuşmuyor\n"

#: camel/camel-sasl-kerberos4.c:40
msgid "Kerberos 4"
msgstr "Kerberos 4"

#: camel/camel-sasl-kerberos4.c:42
msgid "This option will connect to the server using Kerberos 4 authentication."
msgstr "Bu seçenek sunucuya Kerberos 4 kimlik denetimi ile bağlanacaktır."

#: camel/camel-sasl-kerberos4.c:161
#, c-format
msgid ""
"Could not get Kerberos ticket:\n"
"%s"
msgstr ""
"Kerberos bileti alınamadı:\n"
"%s"

#: camel/camel-sasl-kerberos4.c:218
#: camel/providers/imap/camel-imap-store.c:1059
msgid "Bad authentication response from server."
msgstr "Sunucudan hatalı kimlik sınama yanıtı."

#: camel/camel-sasl-login.c:32
msgid "Login"
msgstr "Giriş"

#: camel/camel-sasl-login.c:34 camel/camel-sasl-plain.c:34
msgid "This option will connect to the server using a simple password."
msgstr "Bu seçenek sunucuya basit bir parola kullanarak bağlantı kuracaktır."

#: camel/camel-sasl-login.c:127
msgid "Unknown authentication state."
msgstr "Bilinmeyen kimlik denetim konumu."

#: camel/camel-sasl-ntlm.c:31
msgid "NTLM / SPA"
msgstr "NTLM / SPA"

#: camel/camel-sasl-ntlm.c:33
#, fuzzy
msgid ""
"This option will connect to a Windows-based server using NTLM / Secure "
"Password Authentication."
msgstr "Bu seçenek sunucuya Kerberos 4 kimlik denetimi ile bağlanacaktır."

#: camel/camel-sasl-plain.c:32
msgid "PLAIN"
msgstr "DÜZ"

#: camel/camel-sasl-popb4smtp.c:34
msgid "POP before SMTP"
msgstr "SMTP öncesi POP"

#: camel/camel-sasl-popb4smtp.c:36
msgid "This option will authorise a POP connection before attempting SMTP"
msgstr "Bu özellik, SMTP bağlantısı yaratmadan önce bir POP bağlantısı kuracaktır"

#: camel/camel-sasl-popb4smtp.c:107
msgid "POP Source URI"
msgstr "POP Kaynak URI adresi"

#: camel/camel-sasl-popb4smtp.c:111
msgid "POP Before SMTP auth using an unknown transport"
msgstr ""

#: camel/camel-sasl-popb4smtp.c:116
msgid "POP Before SMTP auth using a non-pop source"
msgstr ""

#: camel/camel-search-private.c:113
#, c-format
msgid "Regular expression compilation failed: %s: %s"
msgstr "Düzgün deyim derleme işlemi başarısız: %s: %s"

#: camel/camel-service.c:282
#, c-format
msgid "URL '%s' needs a username component"
msgstr "'%s' URL'inde kullanıcı bilgisi bulunmuyor"

#: camel/camel-service.c:290
#, c-format
msgid "URL '%s' needs a host component"
msgstr "'%s' URL'inde makine adı bilgisi bulunmuyor"

#: camel/camel-service.c:298
#, c-format
msgid "URL '%s' needs a path component"
msgstr "'%s' URL'inde dizin bilgisi bulunmuyor"

#: camel/camel-service.c:743
#, c-format
msgid "Resolving: %s"
msgstr "Çözümleniyor: %s"

#: camel/camel-service.c:774 camel/camel-service.c:885
#, c-format
msgid "Failure in name lookup: %s"
msgstr "İsim çözümlemesinde hata: %s"

#: camel/camel-service.c:799
#, c-format
msgid "Host lookup failed: %s: host not found"
msgstr "Makine adı çözümlemesinde hata: %s: Makine bulunamadı"

#: camel/camel-service.c:801
#, c-format
msgid "Host lookup failed: %s: unknown reason"
msgstr "Makine adı çözümlemesinde hata: %s: bilinmeyen hata"

#: camel/camel-service.c:851
msgid "Resolving address"
msgstr "Adres çözümleniyor"

#: camel/camel-service.c:913
msgid "Host lookup failed: host not found"
msgstr "Makine adı çözümlemesinde hata: Makine bulunamadı"

#: camel/camel-service.c:916
msgid "Host lookup failed: unknown reason"
msgstr "Makine adı çözümlemesinde hata: Bilinmeyen hata"

#: camel/camel-session.c:75
msgid "Virtual folder email provider"
msgstr "Sanal dizin e-posta sağlayıcısı"

#: camel/camel-session.c:77
msgid "For reading mail as a query of another set of folders"
msgstr "diğer bir dizin listesinden alınan iletileri okumak için"

#: camel/camel-session.c:351 camel/camel-session.c:419
#, c-format
msgid "No provider available for protocol `%s'"
msgstr "`%s' protokolü için alıcı yok"

#: camel/camel-session.c:545
#, c-format
msgid ""
"Could not create directory %s:\n"
"%s"
msgstr ""
"%s dizini yaratılamadı:\n"
"%s"

#: camel/camel-smime-context.c:173
#, c-format
msgid "Please enter your password for %s"
msgstr "%s için parolanızı girin"

#: camel/camel-smime-context.c:203
msgid "Please indicate the nickname of a certificate to sign with."
msgstr ""

#: camel/camel-smime-context.c:209
#, c-format
msgid "The signature certificate for \"%s\" does not exist."
msgstr "\"%s\" için imza sertifikası bulunmuyor."

#: camel/camel-smime-context.c:249
#, c-format
msgid "The encryption certificate for \"%s\" does not exist."
msgstr "\"%s\" için şifreleme sertifikası bulunmuyor."

#: camel/camel-smime-context.c:419 camel/camel-smime-context.c:430
#: camel/camel-smime-context.c:536 camel/camel-smime-context.c:546
#, c-format
msgid "Failed to find certificate for \"%s\"."
msgstr "\"%s\" için sertifika bulunamadı."

#: camel/camel-smime-context.c:556
msgid "Failed to find a common bulk algorithm."
msgstr ""

#: camel/camel-smime-context.c:810
msgid "Failed to decode message."
msgstr "İletinin açılmasında hata."

#: camel/camel-smime-context.c:855
msgid "Failed to verify certificates."
msgstr "Sertifika denetlenemedi."

#: camel/camel-store.c:244
msgid "Cannot get folder: Invalid operation on this store"
msgstr "Dizin alınamadı: Gerçersiz"

#: camel/camel-store.c:306
msgid "Cannot create folder: Invalid operation on this store"
msgstr "Dizin oluşturulamadı: Geçersiz işlem"

#: camel/camel-tcp-stream-openssl.c:566
#, fuzzy
msgid "Unable to get issuer's certificate"
msgstr "Sertifika denetlenemedi."

#: camel/camel-tcp-stream-openssl.c:568
msgid "Unable to get Certificate Revocation List"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:570
#, fuzzy
msgid "Unable to decrypt certificate signature"
msgstr "Sertifika denetlenemedi."

#: camel/camel-tcp-stream-openssl.c:572
msgid "Unable to decrypt Certificate Revocation List signature"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:574
msgid "Unable to decode issuer's public key"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:576
#, fuzzy
msgid "Certificate signature failure"
msgstr "İmza dosyası kaydedilemedi."

#: camel/camel-tcp-stream-openssl.c:578
msgid "Certificate Revocation List signature failure"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:580
msgid "Certificate not yet valid"
msgstr "Sertifika geçersiz"

#: camel/camel-tcp-stream-openssl.c:582
msgid "Certificate has expired"
msgstr "Sertifikanın süresi dolmuş"

#: camel/camel-tcp-stream-openssl.c:584
msgid "CRL not yet valid"
msgstr "CRL geçersiz"

#: camel/camel-tcp-stream-openssl.c:586
msgid "CRL has expired"
msgstr "CRL'in süresi dolmuş"

#: camel/camel-tcp-stream-openssl.c:591
msgid "Error in CRL"
msgstr "CRL'de hata"

#: camel/camel-tcp-stream-openssl.c:593
msgid "Out of memory"
msgstr "Bellek yetersiz"

#: camel/camel-tcp-stream-openssl.c:595
msgid "Zero-depth self-signed certificate"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:597
msgid "Self-signed certificate in chain"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:599
msgid "Unable to get issuer's certificate locally"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:601
#, fuzzy
msgid "Unable to verify leaf signature"
msgstr "Sertifika denetlenemedi."

#: camel/camel-tcp-stream-openssl.c:603
msgid "Certificate chain too long"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:605
#, fuzzy
msgid "Certificate Revoked"
msgstr "_Sertifika No:"

#: camel/camel-tcp-stream-openssl.c:607
msgid "Invalid Certificate Authority (CA)"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:609
msgid "Path length exceeded"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:611
#, fuzzy
msgid "Invalid purpose"
msgstr "Geçersiz argüman"

#: camel/camel-tcp-stream-openssl.c:613
#, fuzzy
msgid "Certificate untrusted"
msgstr "_Sertifika No:"

#: camel/camel-tcp-stream-openssl.c:615
#, fuzzy
msgid "Certificate rejected"
msgstr "_Sertifika No:"

#: camel/camel-tcp-stream-openssl.c:618
msgid "Subject/Issuer mismatch"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:620
msgid "AKID/SKID mismatch"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:622
msgid "AKID/Issuer serial mismatch"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:624
msgid "Key usage does not support certificate signing"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:627
msgid "Error in application verification"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:694 camel/camel-tcp-stream-ssl.c:805
#, c-format
msgid ""
"Issuer:            %s\n"
"Subject:           %s\n"
"Fingerprint:       %s\n"
"Signature:         %s"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:700 camel/camel-tcp-stream-ssl.c:811
msgid "GOOD"
msgstr "UYGUN"

#: camel/camel-tcp-stream-openssl.c:700 camel/camel-tcp-stream-ssl.c:811
msgid "BAD"
msgstr "HATALI"

#: camel/camel-tcp-stream-openssl.c:702
#, c-format
msgid ""
"Bad certificate from %s:\n"
"\n"
"%s\n"
"\n"
"%s\n"
"\n"
"Do you wish to accept anyway?"
msgstr ""
"%s adresinden hatalı bir sertifika alındı:\n"
"\n"
"%s\n"
"\n"
"%s\n"
"\n"
"Yine de kabul etmek istiyor musunuz?"

#. construct our user prompt
#: camel/camel-tcp-stream-ssl.c:815
#, c-format
msgid ""
"SSL Certificate check for %s:\n"
"\n"
"%s\n"
"\n"
"Do you wish to accept?"
msgstr ""
"%s için SSL sertifika denetimi:\n"
"\n"
"%s\n"
"\n"
"Yine de kabul etmek istiyor musunuz?"

#: camel/camel-tcp-stream-ssl.c:859
#, c-format
msgid ""
"Certificate problem: %s\n"
"Issuer: %s"
msgstr ""
"Sertifika hatalı:%s\n"
"Veren: %s"

#: camel/camel-tcp-stream-ssl.c:911
#, c-format
msgid ""
"Bad certificate domain: %s\n"
"Issuer: %s"
msgstr ""

#: camel/camel-tcp-stream-ssl.c:929
#, fuzzy, c-format
msgid ""
"Certificate expired: %s\n"
"Issuer: %s"
msgstr "_Sertifika No:"

#: camel/camel-tcp-stream-ssl.c:946
#, fuzzy, c-format
msgid ""
"Certificate revocation list expired: %s\n"
"Issuer: %s"
msgstr "_Sertifika No:"

#: camel/camel-url.c:288
#, c-format
msgid "Could not parse URL `%s'"
msgstr "URL açılamadı: %s"

#: camel/camel-vee-folder.c:618
#, fuzzy, c-format
msgid "Error storing `%s': %s"
msgstr "%s başlatırken hata oluştu"

#: camel/camel-vee-folder.c:656
#, c-format
msgid "No such message %s in %s"
msgstr "Bu isimle bir ileti yok: %s (%s)"

#: camel/camel-vee-folder.c:816 camel/camel-vee-folder.c:822
#, fuzzy
msgid "Cannot copy or move messages into a Virtual Folder"
msgstr "Yeni iletileri tüm dizinlerde denetle"

#: camel/camel-vee-store.c:296
#, c-format
msgid "Cannot delete folder: %s: Invalid operation"
msgstr "%s dizini silinemedi. Geçersiz işlem"

#: camel/camel-vee-store.c:319
#, c-format
msgid "Cannot delete folder: %s: No such folder"
msgstr "%s dizini silinemedi: Böyle bir dizin yok"

#: camel/camel-vee-store.c:332
#, c-format
msgid "Cannot rename folder: %s: Invalid operation"
msgstr "%s dizininin adı değiştirilemedi: Geçersiz işlem"

#: camel/camel-vee-store.c:340
#, c-format
msgid "Cannot rename folder: %s: No such folder"
msgstr "%s dizininin adı değiştirilemedi: Bu isimde bir dizin yok"

#: camel/providers/imap/camel-imap-command.c:224
#: camel/providers/imap/camel-imap-command.c:263
#: camel/providers/imap/camel-imap-command.c:451
#: camel/providers/imap/camel-imap-store.c:2656
msgid "Operation cancelled"
msgstr "İşlem iptal edildi"

#: camel/providers/imap/camel-imap-command.c:308
#: camel/providers/imap/camel-imap-store.c:2659
#, c-format
msgid "Server unexpectedly disconnected: %s"
msgstr "Sunucu beklenmedik bir şekilde bağlantıyı kesti: %s"

#. for imap ALERT codes, account user@host
#: camel/providers/imap/camel-imap-command.c:326
#, fuzzy, c-format
msgid ""
"Alert from IMAP server %s@%s:\n"
"%s"
msgstr "IMAP sunucusundan beklenmeyen cevap: %s"

#: camel/providers/imap/camel-imap-command.c:395
#, c-format
msgid "Unexpected response from IMAP server: %s"
msgstr "IMAP sunucusundan beklenmeyen cevap: %s"

#: camel/providers/imap/camel-imap-command.c:405
#, c-format
msgid "IMAP command failed: %s"
msgstr "IMAP komutu başarısız oldu: %s"

#: camel/providers/imap/camel-imap-command.c:460
msgid "Server response ended too soon."
msgstr "Sunucu cevabı çok erken bitti."

#: camel/providers/imap/camel-imap-command.c:652
#, c-format
msgid "IMAP server response did not contain %s information"
msgstr "IMAP sunucu cevabı %s bilgisini içermiyor"

#: camel/providers/imap/camel-imap-command.c:688
#, c-format
msgid "Unexpected OK response from IMAP server: %s"
msgstr "IMAP sunucudan beklenmeyen cevap: %s"

#: camel/providers/imap/camel-imap-folder.c:221
#, c-format
msgid "Could not create directory %s: %s"
msgstr "%s dizini yaratılamadı: %s"

#: camel/providers/imap/camel-imap-folder.c:240
#, c-format
msgid "Could not load summary for %s"
msgstr "%s için özet bilgisi yüklenemedi"

#: camel/providers/imap/camel-imap-folder.c:306
msgid "Folder was destroyed and recreated on server."
msgstr "Sunucudaki dizin silindi ve yeniden oluşturuldu."

#. Check UIDs and flags of all messages we already know of.
#: camel/providers/imap/camel-imap-folder.c:548
msgid "Scanning for changed messages"
msgstr "Değiştirilen iletiler taranıyor"

#: camel/providers/imap/camel-imap-folder.c:1872
#, fuzzy, c-format
msgid "Unable to retrieve message: %s"
msgstr "%s numaralı ileti alınıyor"

#: camel/providers/imap/camel-imap-folder.c:1908
#: camel/providers/local/camel-maildir-folder.c:212
#: camel/providers/local/camel-maildir-folder.c:224
#: camel/providers/local/camel-maildir-folder.c:233
#: camel/providers/local/camel-mbox-folder.c:347
#: camel/providers/local/camel-mh-folder.c:201
#: camel/providers/local/camel-mh-folder.c:210
#: camel/providers/local/camel-mh-folder.c:218
#, c-format
msgid ""
"Cannot get message: %s\n"
"  %s"
msgstr ""
"İleti alınamadı: %s\n"
"  %s"

#: camel/providers/imap/camel-imap-folder.c:1908
#: camel/providers/local/camel-maildir-folder.c:212
#: camel/providers/local/camel-mbox-folder.c:347
#: camel/providers/local/camel-mh-folder.c:201
msgid "No such message"
msgstr "İleti bulunmuyor"

#: camel/providers/imap/camel-imap-folder.c:1931
#: camel/providers/imap/camel-imap-folder.c:2527
msgid "This message is not currently available"
msgstr "Bu ileti kullanılabilir değil"

#: camel/providers/imap/camel-imap-folder.c:2191
#: camel/providers/imap/camel-imap-folder.c:2261
msgid "Fetching summary information for new messages"
msgstr "Yeni iletilerdeki özet bilgiler alınıyor"

#: camel/providers/imap/camel-imap-folder.c:2565
msgid "Could not find message body in FETCH response."
msgstr "FETCH cevabında ileti gövdesi bulunamadı"

#: camel/providers/imap/camel-imap-message-cache.c:155
#, c-format
msgid "Could not open cache directory: %s"
msgstr "Önbellek dizini yaratılamadı: %s"

#: camel/providers/imap/camel-imap-message-cache.c:252
#: camel/providers/imap/camel-imap-message-cache.c:309
#: camel/providers/imap/camel-imap-message-cache.c:340
#: camel/providers/imap/camel-imap-message-cache.c:372
#, c-format
msgid "Failed to cache message %s: %s"
msgstr "%s iletisi önbelleğe yazılamadı: %s"

#: camel/providers/imap/camel-imap-message-cache.c:417
#, fuzzy, c-format
msgid "Failed to cache %s: %s"
msgstr "%s iletisi önbelleğe yazılamadı: %s"

#: camel/providers/imap/camel-imap-provider.c:43
msgid "Checking for new mail"
msgstr "Yeni iletiler denetleniyor"

#: camel/providers/imap/camel-imap-provider.c:45
msgid "Check for new messages in all folders"
msgstr "Yeni iletileri tüm dizinlerde denetle"

#: camel/providers/imap/camel-imap-provider.c:48 shell/e-shell-view.c:1058
msgid "Folders"
msgstr "Dizinler"

#: camel/providers/imap/camel-imap-provider.c:50
msgid "Show only subscribed folders"
msgstr "Sadece üye olunan dizinleri göster"

#: camel/providers/imap/camel-imap-provider.c:52
msgid "Override server-supplied folder namespace"
msgstr ""

#: camel/providers/imap/camel-imap-provider.c:54
msgid "Namespace"
msgstr "İsim alanı"

#: camel/providers/imap/camel-imap-provider.c:57
msgid "Apply filters to new messages in INBOX on this server"
msgstr "Bu sunucudaki GELEN kutusunda bulunan yeni iletilere filtreleri uygula"

#: camel/providers/imap/camel-imap-provider.c:63
msgid "IMAP"
msgstr "IMAP"

#: camel/providers/imap/camel-imap-provider.c:65
msgid "For reading and storing mail on IMAP servers."
msgstr "IMAP sunucuları ileti alma ve göndermede kullanmak için"

#: camel/providers/imap/camel-imap-provider.c:80
#: camel/providers/nntp/camel-nntp-store.c:267
#: camel/providers/pop3/camel-pop3-provider.c:69 mail/mail-config.glade.h:87
msgid "Password"
msgstr "Parola"

#: camel/providers/imap/camel-imap-provider.c:82
msgid "This option will connect to the IMAP server using a plaintext password."
msgstr ""
"Bu seçenek IMAP sunucusuna açık metin parola kullanarak bağlantı kurulmasını "
"sağlar."

#: camel/providers/imap/camel-imap-store.c:457
#, c-format
msgid "IMAP server %s"
msgstr "IMAP sunucu %s"

#: camel/providers/imap/camel-imap-store.c:459
#, c-format
msgid "IMAP service for %s on %s"
msgstr ""

#: camel/providers/imap/camel-imap-store.c:584
#: camel/providers/nntp/camel-nntp-store.c:130
#: camel/providers/nntp/camel-nntp-store.c:148
#: camel/providers/pop3/camel-pop3-store.c:180
msgid "Connection cancelled"
msgstr "Bağlantı iptal edildi"

#: camel/providers/imap/camel-imap-store.c:587
#: camel/providers/nntp/camel-nntp-store.c:133
#: camel/providers/smtp/camel-smtp-transport.c:272
#, c-format
msgid "Could not connect to %s (port %d): %s"
msgstr "%s adresine bağlantı kurulamadı (%d): %s"

#: camel/providers/imap/camel-imap-store.c:646
#: camel/providers/imap/camel-imap-store.c:677
#, fuzzy, c-format
msgid "Failed to connect to IMAP server %s in secure mode: %s"
msgstr ""
"POP sunucusuyla bağlantı kurulamadı.\n"
"Parola iletiminde hata: %s"

#: camel/providers/imap/camel-imap-store.c:647
#: camel/providers/pop3/camel-pop3-store.c:213
#, fuzzy
msgid "SSL/TLS extension not supported."
msgstr "İşlem desteklenmiyor"

#: camel/providers/imap/camel-imap-store.c:678
#: camel/providers/pop3/camel-pop3-store.c:254
#, fuzzy
msgid "SSL negotiations failed"
msgstr "Kimlik denetimi başarısız."

#: camel/providers/imap/camel-imap-store.c:1082
#, c-format
msgid "IMAP server %s does not support requested authentication type %s"
msgstr "%s IMAP sunucusu %s kimlik sınama yöntemini desteklemiyor"

#: camel/providers/imap/camel-imap-store.c:1092
#: camel/providers/smtp/camel-smtp-transport.c:482
#, c-format
msgid "No support for authentication type %s"
msgstr "%s kimlik sınama yöntemi desteklenmiyor"

#: camel/providers/imap/camel-imap-store.c:1116
#, c-format
msgid "%sPlease enter the IMAP password for %s@%s"
msgstr "%sLütfen %s@%s için IMAP parolasını giriniz"

#: camel/providers/imap/camel-imap-store.c:1131
#: camel/providers/smtp/camel-smtp-transport.c:523
msgid "You didn't enter a password."
msgstr "Bir parola girmediniz."

#: camel/providers/imap/camel-imap-store.c:1160
#, c-format
msgid ""
"Unable to authenticate to IMAP server.\n"
"%s\n"
"\n"
msgstr ""
"IMAP sunucuyla kimlik denetimi başarısız oldu\n"
"%s\n"
"\n"

#: camel/providers/imap/camel-imap-store.c:1505
#: camel/providers/imap/camel-imap-store.c:1647
#, c-format
msgid "No such folder %s"
msgstr "Bu isimde bir dizin yok: `%s'"

#: camel/providers/imap/camel-imap-store.c:1848
#, fuzzy, c-format
msgid "The folder name \"%s\" is invalid because it containes the character \"%c\""
msgstr "Dizin içinde yeni satır karakteri bulunamaz."

#: camel/providers/imap/camel-imap-store.c:1860
#, fuzzy, c-format
msgid "Unknown parent folder: %s"
msgstr "Bilinmeyen hata: %s"

#: camel/providers/imap/camel-imap-store.c:1896
msgid "The parent folder is not allowed to contain subfolders"
msgstr "Ana dizin üzerinde alt dizin açılamaz"

#. $HOME relative path + protocol string
#: camel/providers/local/camel-local-folder.c:352
#, fuzzy, c-format
msgid "~%s (%s)"
msgstr "%s (%d)"

#. /var/spool/mail relative path + protocol
#: camel/providers/local/camel-local-folder.c:356
#: camel/providers/local/camel-local-folder.c:359
#, fuzzy, c-format
msgid "mailbox:%s (%s)"
msgstr "%s posta kutusu açılamadı: %s\n"

#. a full path + protocol
#: camel/providers/local/camel-local-folder.c:363
#, c-format
msgid "%s (%s)"
msgstr "%s (%s)"

#: camel/providers/local/camel-local-provider.c:43
msgid "Use the `.folders' folder summary file (exmh)"
msgstr ""

#: camel/providers/local/camel-local-provider.c:49
msgid "MH-format mail directories"
msgstr "MH biçimli e-posta dizinleri"

#: camel/providers/local/camel-local-provider.c:50
msgid "For storing local mail in MH-like mail directories."
msgstr "MH benzeri e-posta dizinleri içinde yerel postalar tutmak için."

#: camel/providers/local/camel-local-provider.c:65
msgid "Local delivery"
msgstr "Yerel aktarım"

#: camel/providers/local/camel-local-provider.c:66
#, fuzzy
msgid ""
"For retrieving (moving) local mail from standard mbox formated spools into "
"folders managed by Evolution."
msgstr "Standart UNIX posta kutularından ileti alma ve göndermede kullanmak için"

#: camel/providers/local/camel-local-provider.c:77
#: camel/providers/local/camel-local-provider.c:94
msgid "Apply filters to new messages in INBOX"
msgstr "GELEN kutusu içindeki yeni iletilere filtre uygula"

#: camel/providers/local/camel-local-provider.c:83
msgid "Maildir-format mail directories"
msgstr "Maildir biçimli ileti dizinleri"

#: camel/providers/local/camel-local-provider.c:84
#, fuzzy
msgid "For storing local mail in maildir directories."
msgstr "MH benzeri e-posta dizinleri içinde yerel postalar tutmak için."

#: camel/providers/local/camel-local-provider.c:95
msgid "Store status headers in Elm/Pine/Mutt format"
msgstr ""

#: camel/providers/local/camel-local-provider.c:101
#, fuzzy
msgid "Standard Unix mbox spool or directory"
msgstr "Standart UNIX posta kutusu dosyası"

#: camel/providers/local/camel-local-provider.c:102
#, fuzzy
msgid ""
"For reading and storing local mail in external standard mbox spool files.\n"
"May also be used to read a tree of Elm, Pine, or Mutt style folders."
msgstr "Standart UNIX posta kutularından ileti alma ve göndermede kullanmak için"

#: camel/providers/local/camel-local-store.c:139
#: camel/providers/local/camel-local-store.c:227
#: camel/providers/local/camel-spool-store.c:112
#, c-format
msgid "Store root %s is not an absolute path"
msgstr "%s saklama dizininde hata"

#: camel/providers/local/camel-local-store.c:146
#, c-format
msgid "Store root %s is not a regular directory"
msgstr "%s saklama dizini geçersiz"

#: camel/providers/local/camel-local-store.c:155
#: camel/providers/local/camel-local-store.c:171
#: camel/providers/local/camel-local-store.c:238
#, c-format
msgid "Cannot get folder: %s: %s"
msgstr "%s dizini alınamadı: %s"

#: camel/providers/local/camel-local-store.c:186
msgid "Local stores do not have an inbox"
msgstr "Yerel disklerde gelen dizini bulunmasın"

#: camel/providers/local/camel-local-store.c:198
#, c-format
msgid "Local mail file %s"
msgstr "Yerel mektup dosyası %s"

#: camel/providers/local/camel-local-store.c:306 mail/mail-local.c:909
#, c-format
msgid "Could not rename folder %s to %s: %s"
msgstr "%s dizininin adı %s olarak değiştirilemedi: %s"

#: camel/providers/local/camel-local-store.c:363
#, c-format
msgid "Could not rename '%s': %s"
msgstr "'%s' adı değiştirilemedi: %s"

#: camel/providers/local/camel-local-store.c:384
#, c-format
msgid "Could not delete folder summary file `%s': %s"
msgstr "`%s' dizin özet dosyası silinemedi: %s"

#: camel/providers/local/camel-local-store.c:394
#, c-format
msgid "Could not delete folder index file `%s': %s"
msgstr "`%s' dizin indeks dosyası silinemedi: %s"

#: camel/providers/local/camel-local-summary.c:398
#, c-format
msgid "Could not save summary: %s: %s"
msgstr "Özet kaydedilemedi: %s: %s"

#: camel/providers/local/camel-local-summary.c:454
msgid "Unable to add message to summary: unknown reason"
msgstr "İleti özete eklenemedi: bilinmeyen neden"

#: camel/providers/local/camel-maildir-folder.c:184
#, fuzzy
msgid "Maildir append message cancelled"
msgstr "İleti aktarımı iptal edildi"

#: camel/providers/local/camel-maildir-folder.c:187
#, c-format
msgid "Cannot append message to maildir folder: %s: %s"
msgstr "%s dizinine ileti eklenemedi: %s"

#: camel/providers/local/camel-maildir-folder.c:234
#: camel/providers/local/camel-mh-folder.c:219
msgid "Invalid message contents"
msgstr "Geçersiz ileti içeriği"

#: camel/providers/local/camel-maildir-store.c:106
#: camel/providers/local/camel-mh-store.c:202
#: camel/providers/local/camel-spool-store.c:160
#, c-format
msgid ""
"Could not open folder `%s':\n"
"%s"
msgstr ""
"Dizin açılamadı: `%s':\n"
"%s"

#: camel/providers/local/camel-maildir-store.c:110
#: camel/providers/local/camel-mbox-store.c:101
#: camel/providers/local/camel-mh-store.c:209
#: camel/providers/local/camel-spool-store.c:164
#, c-format
msgid "Folder `%s' does not exist."
msgstr "%s dizini bulunamadı."

#: camel/providers/local/camel-maildir-store.c:117
#: camel/providers/local/camel-mh-store.c:216
#: camel/providers/local/camel-spool-store.c:168
#, c-format
msgid ""
"Could not create folder `%s':\n"
"%s"
msgstr ""
"'%s dizini yaratılamadı:\n"
"%s"

#: camel/providers/local/camel-maildir-store.c:132
#, c-format
msgid "`%s' is not a maildir directory."
msgstr "`%s' bir maildir dizini."

#: camel/providers/local/camel-maildir-store.c:167
#: camel/providers/local/camel-maildir-store.c:204
#: camel/providers/local/camel-mh-store.c:252
#, c-format
msgid "Could not delete folder `%s': %s"
msgstr "`%s' dizini silinemedi: %s"

#: camel/providers/local/camel-maildir-store.c:168
msgid "not a maildir directory"
msgstr "maildir dizini değil"

#: camel/providers/local/camel-maildir-store.c:335
#: camel/providers/local/camel-spool-store.c:282
#: camel/providers/local/camel-spool-store.c:312
#, c-format
msgid "Could not scan folder `%s': %s"
msgstr "'%s dizini taranamadı: %s"

#: camel/providers/local/camel-maildir-summary.c:416
#: camel/providers/local/camel-maildir-summary.c:545
#, c-format
msgid "Cannot open maildir directory path: %s: %s"
msgstr "Maildir dizini açılamadı: %s: %s"

#: camel/providers/local/camel-maildir-summary.c:539
#, fuzzy
msgid "Checking folder consistency"
msgstr "Yeni iletiler denetleniyor"

#: camel/providers/local/camel-maildir-summary.c:640
#, fuzzy
msgid "Checking for new messages"
msgstr "Yeni iletiler taranıyor"

#: camel/providers/local/camel-maildir-summary.c:729
#: camel/providers/local/camel-mbox-summary.c:345
#: camel/providers/local/camel-mbox-summary.c:583
#: camel/providers/local/camel-mbox-summary.c:673
#: camel/providers/local/camel-spool-summary.c:145
#, fuzzy
msgid "Storing folder"
msgstr "'%s' dizinine kaydediliyor"

#: camel/providers/local/camel-mbox-folder.c:158
#: camel/providers/local/camel-spool-folder.c:148
#, c-format
msgid "Cannot create folder lock on %s: %s"
msgstr "%s üzerinde dizin kilitlemesi yaratılamadı: %s"

#: camel/providers/local/camel-mbox-folder.c:215
#, c-format
msgid "Cannot open mailbox: %s: %s\n"
msgstr "%s posta kutusu açılamadı: %s\n"

#: camel/providers/local/camel-mbox-folder.c:274
msgid "Mail append cancelled"
msgstr "İleti aktarımı iptal edildi"

#: camel/providers/local/camel-mbox-folder.c:277
#, c-format
msgid "Cannot append message to mbox file: %s: %s"
msgstr "İleti mbox dosyasına eklenemedi (%s): %s"

#: camel/providers/local/camel-mbox-folder.c:365
#: camel/providers/local/camel-mbox-folder.c:396
#: camel/providers/local/camel-mbox-folder.c:404
#, c-format
msgid ""
"Cannot get message: %s from folder %s\n"
"  %s"
msgstr ""
"%s iletisi %s dizininden alınamadı\n"
"  %s"

#: camel/providers/local/camel-mbox-folder.c:397
msgid "The folder appears to be irrecoverably corrupted."
msgstr "Dizin onarılamayacak şekilde bozulmuş."

#: camel/providers/local/camel-mbox-folder.c:405
msgid "Message construction failed: Corrupt mailbox?"
msgstr "İletiler düzenlenemiyor: İleti kutusu bozulmuş olabilir."

#: camel/providers/local/camel-mbox-store.c:94
#, c-format
msgid ""
"Could not open file `%s':\n"
"%s"
msgstr ""
"`%s' dosyası açılamadı:\n"
"%s"

#: camel/providers/local/camel-mbox-store.c:110
#, c-format
msgid ""
"Could not create file `%s':\n"
"%s"
msgstr ""
"`%s' dosyası yaratılamadı:\n"
"%s"

#: camel/providers/local/camel-mbox-store.c:119
#: camel/providers/local/camel-mbox-store.c:146
#, c-format
msgid "`%s' is not a regular file."
msgstr "`%s' normal bir dosya değildir."

#: camel/providers/local/camel-mbox-store.c:138
#: camel/providers/local/camel-mbox-store.c:161
#, c-format
msgid ""
"Could not delete folder `%s':\n"
"%s"
msgstr ""
"`%s' dizini silinemedi:\n"
"%s"

#: camel/providers/local/camel-mbox-store.c:153
#, c-format
msgid "Folder `%s' is not empty. Not deleted."
msgstr "`%s' dizini boş değil. Silinmedi."

#: camel/providers/local/camel-mbox-summary.c:350
#, c-format
msgid "Could not open folder: %s: %s"
msgstr "Dizin açılamadı: `%s': %s"

#: camel/providers/local/camel-mbox-summary.c:398
#, c-format
msgid "Fatal mail parser error near position %ld in folder %s"
msgstr "%ld yakınında e-posta ayrıştırma hatası (dizin: %s)"

#: camel/providers/local/camel-mbox-summary.c:453
#, c-format
msgid "Cannot check folder: %s: %s"
msgstr "%s dizini alınamadı: %s"

#: camel/providers/local/camel-mbox-summary.c:588
#: camel/providers/local/camel-mbox-summary.c:678
#: camel/providers/local/camel-spool-summary.c:150
#, c-format
msgid "Could not open file: %s: %s"
msgstr "%s dosyası açılamadı: %s"

#: camel/providers/local/camel-mbox-summary.c:600
#: camel/providers/local/camel-spool-summary.c:169
#, c-format
msgid "Cannot open temporary mailbox: %s"
msgstr "Geçici posta kutusu açılamadı: %s"

#: camel/providers/local/camel-mbox-summary.c:612
#: camel/providers/local/camel-mbox-summary.c:774
#, c-format
msgid "Could not close source folder %s: %s"
msgstr "Kaynak dizin %s açılamadı: %s"

#: camel/providers/local/camel-mbox-summary.c:621
#, c-format
msgid "Could not close temp folder: %s"
msgstr "geçici dizin kapatılamadı: %s"

#: camel/providers/local/camel-mbox-summary.c:632
#, c-format
msgid "Could not rename folder: %s"
msgstr "Dizinin adı değiştirilemedi: %s"

#: camel/providers/local/camel-mbox-summary.c:716
#: camel/providers/local/camel-mbox-summary.c:724
#: camel/providers/local/camel-mbox-summary.c:913
#: camel/providers/local/camel-mbox-summary.c:921
msgid "Summary and folder mismatch, even after a sync"
msgstr "Özet ve dizin uyuşmazlığı"

#: camel/providers/local/camel-mbox-summary.c:848
#: camel/providers/local/camel-spool-summary.c:332
#, c-format
msgid "Unknown error: %s"
msgstr "Bilinmeyen hata: %s"

#: camel/providers/local/camel-mbox-summary.c:883
#, fuzzy, c-format
msgid "Could not store folder: %s"
msgstr "Dizinin adı değiştirilemedi: %s"

#: camel/providers/local/camel-mbox-summary.c:976
#: camel/providers/local/camel-mbox-summary.c:1001
#, c-format
msgid "Error writing to temp mailbox: %s"
msgstr "Geçici posta kutusuna yazma hatası: %s"

#: camel/providers/local/camel-mbox-summary.c:993
#, c-format
msgid "Writing to tmp mailbox failed: %s: %s"
msgstr "Geçici dosya kutusuna yazma işlemi başarısız: %s: %s"

#: camel/providers/local/camel-mh-folder.c:175
#, fuzzy
msgid "MH append message cancelled"
msgstr "İleti aktarımı iptal edildi"

#: camel/providers/local/camel-mh-folder.c:178
#, c-format
msgid "Cannot append message to mh folder: %s: %s"
msgstr "İleti mh dizinine eklenemedi: %s: %s"

#: camel/providers/local/camel-mh-store.c:229
#, c-format
msgid "`%s' is not a directory."
msgstr "`%s' bir dizin değil."

#: camel/providers/local/camel-mh-summary.c:243
#, c-format
msgid "Cannot open MH directory path: %s: %s"
msgstr "MH dizin yolu açılamadı: %s: %s"

#: camel/providers/local/camel-spool-store.c:118
#, c-format
msgid "Spool `%s' cannot be opened: %s"
msgstr ""

#: camel/providers/local/camel-spool-store.c:130
#, fuzzy, c-format
msgid "Spool `%s' is not a regular file or directory"
msgstr "%s saklama dizini geçersiz"

#: camel/providers/local/camel-spool-store.c:150
#, fuzzy, c-format
msgid "Folder `%s/%s' does not exist."
msgstr "%s dizini bulunamadı."

#: camel/providers/local/camel-spool-store.c:176
#, c-format
msgid "`%s' is not a mailbox file."
msgstr "`%s' bir posta kutusu dosyası değil."

#: camel/providers/local/camel-spool-store.c:193
msgid "Store does not support an INBOX"
msgstr ""

#: camel/providers/local/camel-spool-store.c:205
#, fuzzy, c-format
msgid "Spool mail file %s"
msgstr "Yerel mektup dosyası %s"

#: camel/providers/local/camel-spool-store.c:205
#, fuzzy, c-format
msgid "Spool folder tree %s"
msgstr "'%s' dizinine kaydediliyor"

#: camel/providers/local/camel-spool-store.c:213
msgid "Spool folders cannot be renamed"
msgstr ""

#: camel/providers/local/camel-spool-store.c:221
msgid "Spool folders cannot be deleted"
msgstr ""

#: camel/providers/local/camel-spool-summary.c:181
#: camel/providers/local/camel-spool-summary.c:190
#: camel/providers/local/camel-spool-summary.c:199
#, fuzzy, c-format
msgid "Could not sync temporary folder %s: %s"
msgstr "Geçici e-posta dosyası %s açılamadı: %s"

#: camel/providers/local/camel-spool-summary.c:214
#, fuzzy, c-format
msgid "Could not sync spool folder %s: %s"
msgstr "'%s dizini taranamadı: %s"

#: camel/providers/local/camel-spool-summary.c:244
#: camel/providers/local/camel-spool-summary.c:262
#: camel/providers/local/camel-spool-summary.c:274
#, c-format
msgid ""
"Could not sync spool folder %s: %s\n"
"Folder may be corrupt, copy saved in `%s'"
msgstr ""

#: camel/providers/nntp/camel-nntp-provider.c:41
msgid "USENET news"
msgstr "USENET haber grubu"

#: camel/providers/nntp/camel-nntp-provider.c:43
msgid "This is a provider for reading from and posting toUSENET newsgroups."
msgstr "USENET haber gruplarından ileti okuma ve gönderme için sağlayıcı."

#: camel/providers/nntp/camel-nntp-store.c:151
#, c-format
msgid "Could not read greeting from %s: %s"
msgstr "%s adrsinden karşılama mesajı alınamadı: %s"

#: camel/providers/nntp/camel-nntp-store.c:163
#, c-format
msgid "NNTP server %s returned error code %d: %s"
msgstr ""

#: camel/providers/nntp/camel-nntp-store.c:262
#, c-format
msgid "USENET News via %s"
msgstr "%s üzerinden USENET"

#: camel/providers/nntp/camel-nntp-store.c:269
msgid ""
"This option will authenticate with the NNTP server using a plaintext "
"password."
msgstr ""
"Bu seçenek NNTP sunucusuna açık metin parola üzerinden kimlik denetimi "
"yaptırır."

#: camel/providers/nntp/camel-nntp-summary.c:234
#, c-format
msgid "No such folder: %s"
msgstr "Bu isimde bir dizin yok: %s"

#: camel/providers/nntp/camel-nntp-summary.c:238
#, c-format
msgid "Could not get group: %s"
msgstr "Grup alınamadı: %s"

#: camel/providers/nntp/camel-nntp-summary.c:344
#, c-format
msgid "NNTP Command failed: %s"
msgstr "NNTP komutu başarısız oldu: %s"

#: camel/providers/nntp/camel-nntp-summary.c:404
#: camel/providers/nntp/camel-nntp-summary.c:505
#, c-format
msgid "%s: Scanning new messages"
msgstr "%s: Yeni iletiler taranıyor"

#: camel/providers/nntp/camel-nntp-summary.c:520
#, c-format
msgid "Unknown server response: %s"
msgstr "Bilinmeyen sunucu cevabı: %s"

#: camel/providers/nntp/camel-nntp-summary.c:566
msgid "Use cancel"
msgstr ""

#: camel/providers/nntp/camel-nntp-summary.c:568
#, c-format
msgid "Operation failed: %s"
msgstr "İşlem başarısız oldu: %s"

#: camel/providers/pop3/camel-pop3-folder.c:246
msgid "Retrieving POP summary"
msgstr "POP özeti alınıyor"

#: camel/providers/pop3/camel-pop3-folder.c:262
#: camel/providers/pop3/camel-pop3-folder.c:427
#: camel/providers/pop3/camel-pop3-folder.c:486
#: camel/providers/pop3/camel-pop3-folder.c:503
msgid "User cancelled"
msgstr "Kullanıcı işlemi iptal etti"

#: camel/providers/pop3/camel-pop3-folder.c:264
#, c-format
msgid "Cannot get POP summary: %s"
msgstr "POP özeti alınamadı: %s"

#: camel/providers/pop3/camel-pop3-folder.c:306
msgid "Expunging deleted messages"
msgstr "Silinen iletiler çöpe gönderiliyor"

#: camel/providers/pop3/camel-pop3-folder.c:401
#, c-format
msgid "No message with uid %s"
msgstr "%s kullanıcı numarasıyla ileti yok"

#. Sigh, most of the crap in this function is so that the cancel button
#. returns the proper exception code.  Sigh.
#: camel/providers/pop3/camel-pop3-folder.c:408
#, c-format
msgid "Retrieving POP message %d"
msgstr "%d. POP iletisi alınıyor"

#: camel/providers/pop3/camel-pop3-folder.c:429
#: camel/providers/pop3/camel-pop3-folder.c:488
#: camel/providers/pop3/camel-pop3-folder.c:495
#: camel/providers/pop3/camel-pop3-folder.c:505
#, c-format
msgid "Cannot get message %s: %s"
msgstr "%s. ileti alınamadı: %s"

#: camel/providers/pop3/camel-pop3-folder.c:495
msgid "Unknown reason"
msgstr "Bilinmeyen hata"

#: camel/providers/pop3/camel-pop3-provider.c:38
msgid "Message storage"
msgstr "İleti deposu"

#: camel/providers/pop3/camel-pop3-provider.c:40
msgid "Leave messages on server"
msgstr "İletileri sunucuda bırak"

#: camel/providers/pop3/camel-pop3-provider.c:43
#, c-format
msgid "Delete after %s day(s)"
msgstr "%s günden sonra sil"

#: camel/providers/pop3/camel-pop3-provider.c:52 mail/mail-config.glade.h:86
msgid "POP"
msgstr "POP"

#: camel/providers/pop3/camel-pop3-provider.c:54
msgid "For connecting to and downloading mail from POP servers."
msgstr "POP sunucularından ileti alma ve göndermede kullanmak için"

#: camel/providers/pop3/camel-pop3-provider.c:71
msgid ""
"This option will connect to the POP server using a plaintext password. This "
"is the only option supported by many POP servers."
msgstr ""
"Bu seçenek POP sunucuya açık metin parola kullanarak bağlantı kurar. Pek çok "
"POP sunucusu tarafından desteklenir."

#: camel/providers/pop3/camel-pop3-provider.c:81
msgid ""
"This option will connect to the POP server using an encrypted password via "
"the APOP protocol. This may not work for all users even on servers that "
"claim to support it."
msgstr "Bu seçenek POP sunucuya şifreli APOP protokolünü kullanarak bağlantı kurar."

#: camel/providers/pop3/camel-pop3-store.c:183
#, c-format
msgid "Could not connect to POP server %s (port %d): %s"
msgstr "%s POP sunucusuna bağlantı kurulamadı (port %d): %s"

#: camel/providers/pop3/camel-pop3-store.c:212
#: camel/providers/pop3/camel-pop3-store.c:241
#: camel/providers/pop3/camel-pop3-store.c:253
#, c-format
msgid "Failed to connect to POP server %s in secure mode: %s"
msgstr ""

#: camel/providers/pop3/camel-pop3-store.c:351
#, fuzzy, c-format
msgid "Could not connect to POP server %s"
msgstr "%s üzerindeki POP sunucusuna bağlantı kurulamadı."

#: camel/providers/pop3/camel-pop3-store.c:392
#: camel/providers/pop3/camel-pop3-store.c:502
#, fuzzy, c-format
msgid ""
"Unable to connect to POP server %s: No support for requested authentication "
"mechanism."
msgstr ""
"POP sunucusuyla bağlantı kurulamadı.\n"
"Belirtilen kimlik sınama protokolü desteklenmiyor."

#: camel/providers/pop3/camel-pop3-store.c:408
#, c-format
msgid "SASL `%s' Login failed for POP server %s: %s"
msgstr ""

#: camel/providers/pop3/camel-pop3-store.c:420
#, c-format
msgid "Cannot login to POP server %s: SASL Protocol error"
msgstr ""

#: camel/providers/pop3/camel-pop3-store.c:439
#, c-format
msgid "Failed to authenticate on POP server %s: %s"
msgstr "%s POP sunucusuyla kimlik denetimi başarısız oldu: %s"

#: camel/providers/pop3/camel-pop3-store.c:462
#, fuzzy, c-format
msgid "%sPlease enter the POP password for %s@%s"
msgstr "%sLütfen %s@%s için POP3 parolasını girin"

#: camel/providers/pop3/camel-pop3-store.c:516
#: camel/providers/pop3/camel-pop3-store.c:522
#, fuzzy, c-format
msgid ""
"Unable to connect to POP server %s.\n"
"Error sending password: %s"
msgstr ""
"POP sunucusuyla bağlantı kurulamadı.\n"
"Parola iletiminde hata: %s"

#: camel/providers/pop3/camel-pop3-store.c:614
#, c-format
msgid "No such folder `%s'."
msgstr "Bu isimde bir dizin yok: `%s'"

#: camel/providers/sendmail/camel-sendmail-provider.c:36
#: mail/mail-config.glade.h:111
msgid "Sendmail"
msgstr "Sendmail"

#: camel/providers/sendmail/camel-sendmail-provider.c:38
msgid ""
"For delivering mail by passing it to the \"sendmail\" program on the local "
"system."
msgstr "Yerel sistemdeki sendmail programının iletilerinizi göndermesi için."

#: camel/providers/sendmail/camel-sendmail-transport.c:108
#, fuzzy
msgid "Could not parse recipient list"
msgstr "URL açılamadı: %s"

#: camel/providers/sendmail/camel-sendmail-transport.c:120
#, c-format
msgid "Could not create pipe to sendmail: %s: mail not sent"
msgstr "sendmail ile bağlantı kurulamadı: %s: ileti gönderilemedi"

#: camel/providers/sendmail/camel-sendmail-transport.c:137
#, c-format
msgid "Could not fork sendmail: %s: mail not sent"
msgstr "sendmail çalıştırılamadı: %s: ileti gönderilemedi"

#: camel/providers/sendmail/camel-sendmail-transport.c:164
#, c-format
msgid "Could not send message: %s"
msgstr "İleti gönderilemedi: %s"

#: camel/providers/sendmail/camel-sendmail-transport.c:186
#, c-format
msgid "sendmail exited with signal %s: mail not sent."
msgstr "sendmail %s sinyali ile kapandı: ileti gönderilemedi."

#: camel/providers/sendmail/camel-sendmail-transport.c:193
#, c-format
msgid "Could not execute %s: mail not sent."
msgstr "%s çalıştırılamadı: ileti gönderilemedi."

#: camel/providers/sendmail/camel-sendmail-transport.c:198
#, c-format
msgid "sendmail exited with status %d: mail not sent."
msgstr "sendmail %d durumu ile çıktı: ileti gönderilemedi."

#: camel/providers/sendmail/camel-sendmail-transport.c:212
msgid "sendmail"
msgstr "sendmail"

#: camel/providers/sendmail/camel-sendmail-transport.c:214
msgid "Mail delivery via the sendmail program"
msgstr "Sendmail üzerinden ileti gönderimi"

#: camel/providers/smtp/camel-smtp-provider.c:37 mail/mail-config.glade.h:103
msgid "SMTP"
msgstr "SMTP"

#: camel/providers/smtp/camel-smtp-provider.c:39
msgid "For delivering mail by connecting to a remote mailhub using SMTP.\n"
msgstr "SMTP üzerinden bir sunucuya bağlanıp iletilerinizi göndermek için.\n"

#: camel/providers/smtp/camel-smtp-transport.c:174
msgid "Syntax error, command unrecognized"
msgstr "İmla hatası, bilinmeyen komut"

#: camel/providers/smtp/camel-smtp-transport.c:176
msgid "Syntax error in parameters or arguments"
msgstr "Parametre ya da argümanlarda imla hatası"

#: camel/providers/smtp/camel-smtp-transport.c:178
msgid "Command not implemented"
msgstr "Komut henüz tanınmıyor"

#: camel/providers/smtp/camel-smtp-transport.c:180
msgid "Command parameter not implemented"
msgstr "Komut parametresi henüz tanınmıyor"

#: camel/providers/smtp/camel-smtp-transport.c:182
msgid "System status, or system help reply"
msgstr "Sistem durumu, ya da sistem yardım yanıtı"

#: camel/providers/smtp/camel-smtp-transport.c:184
msgid "Help message"
msgstr "Yardım mesajı"

#: camel/providers/smtp/camel-smtp-transport.c:186
msgid "Service ready"
msgstr "Servis hazır"

#: camel/providers/smtp/camel-smtp-transport.c:188
msgid "Service closing transmission channel"
msgstr "Servis iletişim kanalını kapatıyor"

#: camel/providers/smtp/camel-smtp-transport.c:190
msgid "Service not available, closing transmission channel"
msgstr "Servis uygun değil, iletişim kanalı kapatılıyor"

#: camel/providers/smtp/camel-smtp-transport.c:192
msgid "Requested mail action okay, completed"
msgstr "İstenen ileti işlemi tamamlandı"

#: camel/providers/smtp/camel-smtp-transport.c:194
msgid "User not local; will forward to <forward-path>"
msgstr "Kullanıcı yerel değil, <forward-path> üzerine yönlendirilecek"

#: camel/providers/smtp/camel-smtp-transport.c:196
msgid "Requested mail action not taken: mailbox unavailable"
msgstr "İstenen ileti eylemi yapılmadı: posta kutusu bulunamadı"

#: camel/providers/smtp/camel-smtp-transport.c:198
msgid "Requested action not taken: mailbox unavailable"
msgstr "İstenen eylem yapılmadı: posta kutusu bulunamadı"

#: camel/providers/smtp/camel-smtp-transport.c:200
msgid "Requested action aborted: error in processing"
msgstr "İstenen eylem iptal edildi: işlem sırasında hata"

#: camel/providers/smtp/camel-smtp-transport.c:202
msgid "User not local; please try <forward-path>"
msgstr "Kullanıcı yerel değil; lütfen <forward-path> deneyin"

#: camel/providers/smtp/camel-smtp-transport.c:204
msgid "Requested action not taken: insufficient system storage"
msgstr "İstenen eylem yapılmadı: disk alanı yetersiz"

#: camel/providers/smtp/camel-smtp-transport.c:206
msgid "Requested mail action aborted: exceeded storage allocation"
msgstr "İstenen eylem iptal edildi: disk alanı yetersiz"

#: camel/providers/smtp/camel-smtp-transport.c:208
msgid "Requested action not taken: mailbox name not allowed"
msgstr "İstenen eylem yapılmadı: e-posta kutusu izni yok"

#: camel/providers/smtp/camel-smtp-transport.c:210
msgid "Start mail input; end with <CRLF>.<CRLF>"
msgstr "İleti başlangıcını girin, <CRLF>.<CRLF> ile bitirin."

#: camel/providers/smtp/camel-smtp-transport.c:212
msgid "Transaction failed"
msgstr "İletişim kurulamadı"

#: camel/providers/smtp/camel-smtp-transport.c:216
msgid "A password transition is needed"
msgstr "Parola iletimi gerekiyor"

#: camel/providers/smtp/camel-smtp-transport.c:218
msgid "Authentication mechanism is too weak"
msgstr "Kimlik sınama yöntemi çok zayıf"

#: camel/providers/smtp/camel-smtp-transport.c:220
msgid "Encryption required for requested authentication mechanism"
msgstr "İstenen kimlik sınama yöntemi için şifreleme gerekiyor"

#: camel/providers/smtp/camel-smtp-transport.c:222
msgid "Temporary authentication failure"
msgstr "Geçici kimlik denetim hatası"

#: camel/providers/smtp/camel-smtp-transport.c:224
msgid "Authentication required"
msgstr "Kimlik denetimi isteniyor"

#: camel/providers/smtp/camel-smtp-transport.c:295
msgid "Welcome response error"
msgstr "Karşılama cevabı hatası"

#: camel/providers/smtp/camel-smtp-transport.c:339
#: camel/providers/smtp/camel-smtp-transport.c:378
#, c-format
msgid "Failed to connect to SMTP server %s in secure mode: %s"
msgstr "%s SMTP sunucusuna güvenli kipte bağlantı kurulamadı: %s"

#: camel/providers/smtp/camel-smtp-transport.c:340
msgid "server does not appear to support SSL"
msgstr "Sunucu SSL desteklemiyor"

#: camel/providers/smtp/camel-smtp-transport.c:354
#, c-format
msgid "STARTTLS request timed out: %s"
msgstr "START TLS isteği zaman aşımına uğradı: %s"

#: camel/providers/smtp/camel-smtp-transport.c:369
msgid "STARTTLS response error"
msgstr "STARTTLS cevap hatası"

#: camel/providers/smtp/camel-smtp-transport.c:472
#, fuzzy, c-format
msgid "SMTP server %s does not support requested authentication type %s."
msgstr "%s IMAP sunucusu %s kimlik sınama yöntemini desteklemiyor"

#: camel/providers/smtp/camel-smtp-transport.c:510
#, c-format
msgid "%sPlease enter the SMTP password for %s@%s"
msgstr "%sLütfen %s@%s için SMTP parolasını giriniz"

#: camel/providers/smtp/camel-smtp-transport.c:531
#, c-format
msgid ""
"Unable to authenticate to SMTP server.\n"
"%s\n"
"\n"
msgstr ""
"SMTP sunucuyla kimlik denetimi başarısız oldu\n"
"%s\n"
"\n"

#: camel/providers/smtp/camel-smtp-transport.c:664
#, c-format
msgid "SMTP server %s"
msgstr "SMTP sunucu %s"

#: camel/providers/smtp/camel-smtp-transport.c:666
#, c-format
msgid "SMTP mail delivery via %s"
msgstr "%s üzerinden STMP ileti gönderimi"

#: camel/providers/smtp/camel-smtp-transport.c:684
msgid "Cannot send message: sender address not valid."
msgstr "İleti gönderilemiyor: gönderen adresi geçersiz"

#: camel/providers/smtp/camel-smtp-transport.c:689 mail/mail-ops.c:622
msgid "Sending message"
msgstr "İleti gönderiliyor"

#: camel/providers/smtp/camel-smtp-transport.c:704
msgid "Cannot send message: no recipients defined."
msgstr "MAIL FROM cevap hatası: %s: ileti gönderilmedi"

#: camel/providers/smtp/camel-smtp-transport.c:713
#, fuzzy
msgid "Cannot send message: one or more invalid recipients"
msgstr "MAIL FROM cevap hatası: %s: ileti gönderilmedi"

#: camel/providers/smtp/camel-smtp-transport.c:881
msgid "SMTP Greeting"
msgstr "SMTP Karşılaması"

#: camel/providers/smtp/camel-smtp-transport.c:927
#, fuzzy, c-format
msgid "HELO request timed out: %s"
msgstr "RSET isteği zaman aşımına uğradı: %s"

#: camel/providers/smtp/camel-smtp-transport.c:949
msgid "HELO response error"
msgstr "HELO cevap hatası"

#: camel/providers/smtp/camel-smtp-transport.c:1015
msgid "SMTP Authentication"
msgstr "SMTP Kimlik Denetimi"

#: camel/providers/smtp/camel-smtp-transport.c:1021
msgid "Error creating SASL authentication object."
msgstr "SASL kimlik denetim nesnesi yaratılamadı."

#: camel/providers/smtp/camel-smtp-transport.c:1038
#: camel/providers/smtp/camel-smtp-transport.c:1050
#, c-format
msgid "AUTH request timed out: %s"
msgstr "AUTH isteği zaman aşımına uğradı: %s"

#: camel/providers/smtp/camel-smtp-transport.c:1059
msgid "AUTH request failed."
msgstr "AUTH isteği başarısız."

#: camel/providers/smtp/camel-smtp-transport.c:1120
msgid "Bad authentication response from server.\n"
msgstr "Sunucudan hatalı kimlik sınama yanıtı.\n"

#: camel/providers/smtp/camel-smtp-transport.c:1145
#, c-format
msgid "MAIL FROM request timed out: %s: mail not sent"
msgstr "MAIL FROM zaman aşımı: %s: ileti gönderilmedi"

#: camel/providers/smtp/camel-smtp-transport.c:1165
msgid "MAIL FROM response error"
msgstr "MAIL FROM cevap hatası"

#: camel/providers/smtp/camel-smtp-transport.c:1189
#, c-format
msgid "RCPT TO request timed out: %s: mail not sent"
msgstr "RCPT TO zaman aşımı: %s: ileti gönderilmedi"

#: camel/providers/smtp/camel-smtp-transport.c:1211
#, c-format
msgid "RCPT TO <%s> failed"
msgstr "RCPT TO <%s> başarısız oldu"

#: camel/providers/smtp/camel-smtp-transport.c:1253
#, c-format
msgid "DATA request timed out: %s: mail not sent"
msgstr "DATA isteği zaman aşımına uğradı: %s: ileti gönderilmedi"

#. we should have gotten instructions on how to use the DATA command:
#. * 354 Enter mail, end with "." on a line by itself
#.
#: camel/providers/smtp/camel-smtp-transport.c:1273
msgid "DATA response error"
msgstr "DATA cevap hatası"

#: camel/providers/smtp/camel-smtp-transport.c:1313
#: camel/providers/smtp/camel-smtp-transport.c:1336
#, c-format
msgid "DATA send timed out: message termination: %s: mail not sent"
msgstr "DATA gönderimi zaman aşımına uğradı: %s: ileti gönderilmedi"

#: camel/providers/smtp/camel-smtp-transport.c:1356
msgid "DATA termination response error"
msgstr "DATA cevap hatası"

#: camel/providers/smtp/camel-smtp-transport.c:1379
#, c-format
msgid "RSET request timed out: %s"
msgstr "RSET isteği zaman aşımına uğradı: %s"

#: camel/providers/smtp/camel-smtp-transport.c:1399
msgid "RSET response error"
msgstr "RSET cevap hatası"

#: camel/providers/smtp/camel-smtp-transport.c:1422
#, c-format
msgid "QUIT request timed out: %s"
msgstr "QUIT isteğinde zaman aşımı: %s"

#: camel/providers/smtp/camel-smtp-transport.c:1442
msgid "QUIT response error"
msgstr "QUIT cevap hatası"

#: composer/e-msg-composer-attachment-bar.c:107
#, c-format
msgid "%.0fK"
msgstr "%.0fK"

#: composer/e-msg-composer-attachment-bar.c:110
#, c-format
msgid "%.0fM"
msgstr "%.0fM"

#: composer/e-msg-composer-attachment-bar.c:113
#, c-format
msgid "%.0fG"
msgstr "%.0fG"

#. This is a filename. Translators take note.
#: composer/e-msg-composer-attachment-bar.c:371 mail/mail-display.c:227
msgid "attachment"
msgstr "ek"

#: composer/e-msg-composer-attachment-bar.c:520
msgid "Remove selected items from the attachment list"
msgstr "Seçili dosyaları ekler listesinden sil"

#: composer/e-msg-composer-attachment-bar.c:551
msgid "Add attachment..."
msgstr "Dosya ekle..."

#: composer/e-msg-composer-attachment-bar.c:552
msgid "Attach a file to the message"
msgstr "İletiyi bir dosya ekle"

#: composer/e-msg-composer-attachment.c:169
#: composer/e-msg-composer-attachment.c:185
#, c-format
msgid "Cannot attach file %s: %s"
msgstr "%s dosyası eklenemedi: %s"

#: composer/e-msg-composer-attachment.c:177
#, c-format
msgid "Cannot attach file %s: not a regular file"
msgstr "%s dosyası eklenemedi: Normal bir dosya değil."

#: composer/e-msg-composer-attachment.glade.h:1
msgid "Attachment properties"
msgstr "Ek özellikleri"

#: composer/e-msg-composer-attachment.glade.h:3
msgid "File name:"
msgstr "Dosya adı:"

#: composer/e-msg-composer-attachment.glade.h:4
msgid "MIME type:"
msgstr "MIME türü:"

#: composer/e-msg-composer-attachment.glade.h:5
#: composer/e-msg-composer-select-file.c:163
msgid "Suggest automatic display of attachment"
msgstr "Eklentinin otomatik gösterimini öner"

#: composer/e-msg-composer-hdrs.c:365
msgid "Click here for the address book"
msgstr "Adres defteri için buraya tıklayın"

#.
#. * Reply-To:
#. *
#. * Create this before we call create_from_optionmenu,
#. * because that causes from_changed to be called, which
#. * expects the reply_to fields to be initialized.
#.
#: composer/e-msg-composer-hdrs.c:400
msgid "Reply-To:"
msgstr "Cevapla:"

#.
#. * From
#.
#: composer/e-msg-composer-hdrs.c:411
msgid "From:"
msgstr "Gönderen:"

#.
#. * Subject
#.
#: composer/e-msg-composer-hdrs.c:417
msgid "Subject:"
msgstr "Konu:"

#: composer/e-msg-composer-hdrs.c:431
msgid "To:"
msgstr "Alıcı:"

#: composer/e-msg-composer-hdrs.c:432
msgid "Enter the recipients of the message"
msgstr "İletinin gönderildiği kişiler"

#: composer/e-msg-composer-hdrs.c:435
msgid "Cc:"
msgstr "Bilgi:"

#: composer/e-msg-composer-hdrs.c:436
msgid "Enter the addresses that will receive a carbon copy of the message"
msgstr "İletinin kopyasının gönderilecek olunduğu adresler"

#: composer/e-msg-composer-hdrs.c:439
msgid "Bcc:"
msgstr "Gizli:"

#: composer/e-msg-composer-hdrs.c:440
msgid ""
"Enter the addresses that will receive a carbon copy of the message without "
"appearing in the recipient list of the message."
msgstr ""
"İletinin karbon kopyalarının gönderileceği adresi girin. Ancak buraya "
"girilecek kişiler gönderilenler listesinde görünmeyecektir."

#.
#. * Post-To
#.
#: composer/e-msg-composer-hdrs.c:447
#, fuzzy
msgid "Post To:"
msgstr "Git"

#: composer/e-msg-composer-hdrs.c:449
#, fuzzy
msgid "Posting destination"
msgstr "Açıklama yok"

#: composer/e-msg-composer-select-file.c:275
#: ui/evolution-message-composer.h:26 ui/evolution-message-composer.xml.h:2
msgid "Attach a file"
msgstr "Bir dosya ekle"

#: composer/e-msg-composer.c:514
msgid "Could not create a PGP signature context"
msgstr "PGP imza içeriği yaratılamadı"

#: composer/e-msg-composer.c:787
#, c-format
msgid ""
"Error while reading file %s:\n"
"%s"
msgstr ""
"%s dosyasını yüklerken hata oldu:\n"
"%s"

#: composer/e-msg-composer.c:1160
msgid "Warning!"
msgstr "Uyarı!"

#: composer/e-msg-composer.c:1164
msgid "File exists, overwrite?"
msgstr "Dosya var. Üzerine yazılsın mı?"

#: composer/e-msg-composer.c:1187
#, c-format
msgid "Error saving file: %s"
msgstr "%s dosyasını kaydederken hata oldu"

#: composer/e-msg-composer.c:1207
#, c-format
msgid "Error loading file: %s"
msgstr "`%s' dosyasını yüklerken hata oldu"

#: composer/e-msg-composer.c:1240
#, c-format
msgid "Error accessing file: %s"
msgstr "Dosyaya erişirken hata oldu: %s"

#: composer/e-msg-composer.c:1248
#, fuzzy
msgid "Unable to retrieve message from editor"
msgstr "%s üzerindeki POP sunucusundan iletiler alınamadı: "

#: composer/e-msg-composer.c:1255
#, fuzzy, c-format
msgid ""
"Unable to seek on file: %s\n"
"%s"
msgstr ""
"Çıkış dosyası yaratılamadı: %s\n"
" %s"

#: composer/e-msg-composer.c:1262
#, fuzzy, c-format
msgid ""
"Unable to truncate file: %s\n"
"%s"
msgstr ""
"Çıkış dosyası yaratılamadı: %s\n"
" %s"

#: composer/e-msg-composer.c:1271
#, fuzzy, c-format
msgid ""
"Error autosaving message: %s\n"
" %s"
msgstr ""
"İletilerin kaydında hata: %s:\n"
" %s"

#: composer/e-msg-composer.c:1371
msgid ""
"Ximian Evolution has found unsaved files from a previous session.\n"
"Would you like to try to recover them?"
msgstr ""
"Evolution, önceki oturumlardan kaydedilmemiş dosyalar saptadı.\n"
"Bunları kurtarmak istiyor musunuz?"

#: composer/e-msg-composer.c:1525
#, fuzzy, c-format
msgid ""
"The message \"%s\" has not been sent.\n"
"\n"
"Do you wish to save your changes?"
msgstr ""
"Bu ileti gönderilmedi.\n"
"Değişiklikleri kaydetmek istiyor musunuz?"

#: composer/e-msg-composer.c:1536
msgid "Warning: Modified Message"
msgstr "Uyarı: İleti Değiştirildi"

#: composer/e-msg-composer.c:1569
msgid "Open file"
msgstr "Dosyayı aç"

#: composer/e-msg-composer.c:1927
msgid "Signature:"
msgstr "İmza:"

#: composer/e-msg-composer.c:1968 mail/mail-account-gui.c:1231
msgid "Autogenerated"
msgstr ""

#: composer/e-msg-composer.c:2155 composer/e-msg-composer.c:2779
msgid "Compose a message"
msgstr "Bir ileti yaz"

#: composer/e-msg-composer.c:2796
msgid ""
"Could not create composer window:\n"
"Unable to activate address selector control."
msgstr ""

#: composer/e-msg-composer.c:2822
msgid ""
"Could not create composer window:\n"
"Unable to activate HTML editor component.\n"
"Please make sure you have the correct version\n"
"of gtkhtml and libgtkhtml installed.\n"
msgstr ""

#: composer/e-msg-composer.c:2879
#, fuzzy
msgid ""
"Could not create composer window:\n"
"Unable to activate HTML editor component."
msgstr ""
"E-posta düzenleme penceresi açılmadı, çünkü adınızı ve\n"
"e-posta bilgilerinizi girmediniz."

#: composer/e-msg-composer.c:3860
#, fuzzy
msgid ""
"<b>(The composer contains a non-text message body, which cannot be edited.)"
"<b>"
msgstr "<b>(Burada düzenlenmesi mümkün olmayan bir bilgi vardır.)<b>"

#: composer/evolution-composer.c:394
msgid ""
"Could not create composer window, because you have not yet\n"
"configured any identities in the mail component."
msgstr ""
"E-posta düzenleme penceresi açılmadı, çünkü adınızı ve\n"
"e-posta bilgilerinizi girmediniz."

#: composer/evolution-composer.c:413
#, fuzzy
msgid "Cannot initialize the Evolution composer."
msgstr "Evolution posta programı açılamadı."

#: data/evolution.desktop.in.h:1
msgid "The Evolution groupware suite"
msgstr "Evolution kitlesel işlemler uygulaması"

#: data/evolution.desktop.in.h:2
msgid "Ximian Evolution"
msgstr "Ximian Evolution"

#: data/evolution.keys.in.h:1
msgid "address card"
msgstr "adres kartı"

#: data/evolution.keys.in.h:2
msgid "calendar information"
msgstr "takvim bilgisi"

#: default_user/searches.xml.h:1
msgid "Body contains"
msgstr "Gövde içerir"

#: default_user/searches.xml.h:2
msgid "Body does not contain"
msgstr "Gövde içermez"

#: default_user/searches.xml.h:3
msgid "Body or subject contains"
msgstr "Gövde ya da konu içerir"

#: default_user/searches.xml.h:4
msgid "Message contains"
msgstr "İleti içerir"

#: default_user/searches.xml.h:5
msgid "Recipients contain"
msgstr "Alıcılar içerir"

#: default_user/searches.xml.h:6
msgid "Sender contains"
msgstr "Gönderen içerir"

#: default_user/searches.xml.h:7
msgid "Subject contains"
msgstr "Konu içerir"

#: default_user/searches.xml.h:8
msgid "Subject does not contain"
msgstr "Konu içermez"

#: e-util/e-component-listener.c:131
msgid "ping_timeout_callback: could not determine if the CORBA object is nil or not"
msgstr ""

#: e-util/e-dialog-utils.c:237 mail/mail-callbacks.c:2563
msgid ""
"A file by that name already exists.\n"
"Overwrite it?"
msgstr ""
"Aynı isimde bir dosya zaten var\n"
"Üzerine yazılsın mı?"

#: e-util/e-passwords.c:363
msgid "Remember this password"
msgstr "Bu parolayı hatırla"

#: e-util/e-passwords.c:365
msgid "Remember this password for the remainder of this session"
msgstr "Bu oturumun sonuna kadar girilen parolayı hatırla"

#: e-util/e-pilot-settings.c:96
msgid "Sync Private Records:"
msgstr ""

#: e-util/e-pilot-settings.c:105
#, fuzzy
msgid "Sync Categories:"
msgstr "Kategoriler"

#. strptime format of a weekday, a date and a time,
#. in 12-hour format, without seconds.
#: e-util/e-time-utils.c:172 e-util/e-time-utils.c:385
msgid "%a %m/%d/%Y %I:%M %p"
msgstr "%d/%m/%Y %A %I:%M %p"

#. strptime format of a weekday, a date and a time,
#. in 24-hour format, without seconds.
#: e-util/e-time-utils.c:177 e-util/e-time-utils.c:376
msgid "%a %m/%d/%Y %H:%M"
msgstr "%d/%m/%Y %A %H:%M"

#. strptime format of a weekday, a date and a time,
#. in 12-hour format, without minutes or seconds.
#: e-util/e-time-utils.c:182
msgid "%a %m/%d/%Y %I %p"
msgstr "%d/%m/%Y %A %I %p"

#. strptime format of a weekday, a date and a time,
#. in 24-hour format, without minutes or seconds.
#: e-util/e-time-utils.c:187
msgid "%a %m/%d/%Y %H"
msgstr "%d/%m/%Y %A %H"

#. strptime format of a date and a time, in 12-hour format.
#: e-util/e-time-utils.c:198
msgid "%m/%d/%Y %I:%M:%S %p"
msgstr "%d/%m/%Y %I:%M:%S %p"

#. strptime format of a date and a time, in 24-hour format.
#: e-util/e-time-utils.c:202
msgid "%m/%d/%Y %H:%M:%S"
msgstr "%d/%m/%Y %H:%M:%S"

#. strptime format of a date and a time, in 12-hour format,
#. without seconds.
#: e-util/e-time-utils.c:207
msgid "%m/%d/%Y %I:%M %p"
msgstr "%d/%m/%Y %I:%M %p"

#. strptime format of a date and a time, in 24-hour format,
#. without seconds.
#: e-util/e-time-utils.c:212
msgid "%m/%d/%Y %H:%M"
msgstr "%d/%m/%Y %H:%M"

#. strptime format of a date and a time, in 12-hour format,
#. without minutes or seconds.
#: e-util/e-time-utils.c:217
msgid "%m/%d/%Y %I %p"
msgstr "%d/%m/%Y %I %p"

#. strptime format of a date and a time, in 24-hour format,
#. without minutes or seconds.
#: e-util/e-time-utils.c:222
msgid "%m/%d/%Y %H"
msgstr "%d/%m/%Y %H"

#. strptime format for a time of day, in 12-hour format.
#: e-util/e-time-utils.c:326 e-util/e-time-utils.c:425
msgid "%I:%M:%S %p"
msgstr "%I:%M:%S %p"

#. strptime format for a time of day, in 24-hour format.
#: e-util/e-time-utils.c:330 e-util/e-time-utils.c:417
msgid "%H:%M:%S"
msgstr "%H:%M:%S"

#. strptime format for time of day, without seconds,
#. in 12-hour format.
#: e-util/e-time-utils.c:335 e-util/e-time-utils.c:422
#: widgets/misc/e-dateedit.c:1420 widgets/misc/e-dateedit.c:1632
msgid "%I:%M %p"
msgstr "%I:%M %p"

#. strptime format for time of day, without seconds 24-hour format.
#: e-util/e-time-utils.c:339 e-util/e-time-utils.c:414
#: widgets/misc/e-dateedit.c:1417 widgets/misc/e-dateedit.c:1629
msgid "%H:%M"
msgstr "%H:%M"

#. strptime format for hour and AM/PM, 12-hour format.
#: e-util/e-time-utils.c:343
msgid "%I %p"
msgstr "%I %p"

#: filter/filter-datespec.c:70 filter/filter.glade.h:24
#: mail/mail-config.glade.h:183
msgid "seconds"
msgstr "saniye"

#: filter/filter-datespec.c:71
msgid "minute"
msgstr "dakika"

#: filter/filter-datespec.c:72
msgid "hour"
msgstr "saat"

#: filter/filter-datespec.c:74
msgid "week"
msgstr "hafta"

#: filter/filter-datespec.c:74 filter/filter.glade.h:29
msgid "weeks"
msgstr "hafta"

#: filter/filter-datespec.c:75
msgid "month"
msgstr "ay"

#: filter/filter-datespec.c:75 filter/filter.glade.h:23
msgid "months"
msgstr "ay"

#: filter/filter-datespec.c:76
msgid "year"
msgstr "yılda bir güncelle"

#: filter/filter-datespec.c:76 filter/filter.glade.h:33
msgid "years"
msgstr "yılda bir güncelle"

#: filter/filter-datespec.c:174
msgid "You must choose a date."
msgstr "Bir tarih seçmelisiniz."

#: filter/filter-datespec.c:269
msgid "<click here to select a date>"
msgstr "<bir tarih seçmek için tıklayınız>"

#: filter/filter-datespec.c:272 filter/filter-datespec.c:283
msgid "now"
msgstr "şimdi"

#. strftime for date filter display, only needs to show a day date (i.e. no time)
#: filter/filter-datespec.c:279
msgid "%d-%b-%Y"
msgstr "%d %b %Y"

#. 1 (minute|day|...) ago (singular time ago)
#: filter/filter-datespec.c:292 filter/filter-datespec.c:295
#, c-format
msgid "%d %s ago"
msgstr "%d %s önce"

#: filter/filter-datespec.c:407
#, fuzzy
msgid "Select a time to compare against"
msgstr "Bir Zaman Dilimi Seçin"

#: filter/filter-editor.c:132 filter/filter.glade.h:4
msgid "Filter Rules"
msgstr "Filtre Kuralları"

#: filter/filter-file.c:178
msgid "You must specify a file name"
msgstr "Bir dosya dı vermelisiniz"

#: filter/filter-file.c:190
#, c-format
msgid "File '%s' does not exist or is not a regular file."
msgstr "`%s' dosyası bulunamadı, ya da normal bir dosya değil."

#: filter/filter-file.c:307
msgid "Choose a file"
msgstr "Bir dosya seç"

#. and now for the action area
#: filter/filter-filter.c:513
msgid "Then"
msgstr "Sonra"

#: filter/filter-filter.c:527
msgid "Add action"
msgstr "Eylem ekle"

#: filter/filter-folder.c:149
msgid "You must specify a folder.\n"
msgstr "Bu dizin adı belirtmelisiniz.\n"

#: filter/filter-folder.c:236 filter/vfolder-rule.c:391
#: mail/mail-account-gui.c:1464 mail/mail-account-gui.c:1478
msgid "Select Folder"
msgstr "Dizini Seçin"

#: filter/filter-input.c:200
#, c-format
msgid ""
"Error in regular expression '%s':\n"
"%s"
msgstr ""
"`%s' düzgün deyiminde hata var:\n"
"%s"

#: filter/filter-label.c:136 filter/libfilter-i18n.h:26 mail/mail-config.c:68
#: mail/mail-config.glade.h:64
msgid "Important"
msgstr "Önemli"

#. red
#: filter/filter-label.c:137 mail/mail-config.c:69
#: mail/mail-config.glade.h:135
msgid "Work"
msgstr "İş"

#. orange
#: filter/filter-label.c:138 mail/mail-config.c:70 mail/mail-config.glade.h:88
msgid "Personal"
msgstr "Kişisel"

#. forest green
#: filter/filter-label.c:139 mail/mail-config.c:71
#: mail/mail-config.glade.h:126
msgid "To Do"
msgstr "Yapılacaklar"

#. blue
#: filter/filter-label.c:140 mail/mail-config.c:72 mail/mail-config.glade.h:68
msgid "Later"
msgstr "Sonra"

#: filter/filter-part.c:545 shell/evolution-test-component.c:49
msgid "Test"
msgstr "Test"

#: filter/filter-rule.c:223
msgid "You must name this filter."
msgstr "Bu filtrenin adını değiştirmelisiniz."

#: filter/filter-rule.c:764
msgid "Rule name: "
msgstr "Kural adı:"

#: filter/filter-rule.c:768
msgid "Untitled"
msgstr "İsimsiz"

#: filter/filter-rule.c:785
msgid "If"
msgstr "Eğer"

#: filter/filter-rule.c:803
msgid "Execute actions"
msgstr "Eylemleri işlet"

#: filter/filter-rule.c:807
msgid "if all criteria are met"
msgstr "tüm kriterler sağlanırsa"

#: filter/filter-rule.c:812
msgid "if any criteria are met"
msgstr "herhangi bir kriter sağlanırsa"

#: filter/filter-rule.c:823
msgid "Add criterion"
msgstr "Sınıf ekle"

#: filter/filter-rule.c:908
msgid "incoming"
msgstr "gelen"

#: filter/filter-rule.c:908
msgid "outgoing"
msgstr "giden"

#: filter/filter.glade.h:1
msgid "Compare against"
msgstr "Karşılaştır"

#: filter/filter.glade.h:2
msgid "Edit Filters"
msgstr "Filtreleri Düzenle"

#: filter/filter.glade.h:3
msgid "Edit VFolders"
msgstr "VFolder Düzenle"

#: filter/filter.glade.h:5
msgid "Incoming"
msgstr "Gelen"

#: filter/filter.glade.h:6
msgid "Outgoing"
msgstr "Giden"

#: filter/filter.glade.h:7
msgid ""
"The message's date will be compared against\n"
"12:00am of the date specified."
msgstr ""

#: filter/filter.glade.h:9
msgid ""
"The message's date will be compared against\n"
"a time relative to when filtering occurs."
msgstr ""

#: filter/filter.glade.h:11
msgid ""
"The message's date will be compared against\n"
"the current time when filtering occurs."
msgstr ""

#: filter/filter.glade.h:13 filter/vfolder-editor.c:130
msgid "Virtual Folders"
msgstr "Sanal Dizinler"

#: filter/filter.glade.h:18
msgid "a time relative to the current time"
msgstr "şimdiki zamana göreceli bir zaman"

#: filter/filter.glade.h:19
msgid "ago"
msgstr "önce"

#: filter/filter.glade.h:25
msgid "specific folders only"
msgstr "sadece belirtilen dizinler"

#: filter/filter.glade.h:26
msgid "the current time"
msgstr "şimdiki zaman"

#: filter/filter.glade.h:27
msgid "the time you specify"
msgstr ""

#: filter/filter.glade.h:28
msgid "vFolder Sources"
msgstr "vFolder Kaynakları"

#: filter/filter.glade.h:30
msgid "with all active remote folders"
msgstr "tüm etkin uzak dizinlerle birlikte"

#: filter/filter.glade.h:31
msgid "with all local and active remote folders"
msgstr "tüm yerel ve etkin uzak dizinlerle birlikte"

#: filter/filter.glade.h:32
msgid "with all local folders"
msgstr "tüm yerel dizinlerle birlikte"

#. Automatically generated. Do not edit.
#: filter/libfilter-i18n.h:2
#, fuzzy
msgid "Adjust Score"
msgstr "Puan Belirt"

#: filter/libfilter-i18n.h:3
msgid "Assign Color"
msgstr "Renk Belirle"

#: filter/libfilter-i18n.h:4
msgid "Assign Score"
msgstr "Puan Belirt"

#: filter/libfilter-i18n.h:5
msgid "Attachments"
msgstr "Ekler"

#: filter/libfilter-i18n.h:6
msgid "Beep"
msgstr "Biple"

#: filter/libfilter-i18n.h:7
msgid "contains"
msgstr "içerir"

#: filter/libfilter-i18n.h:8
msgid "Copy to Folder"
msgstr "Dizine Kopyala"

#: filter/libfilter-i18n.h:9
msgid "Date received"
msgstr "Alınma tarihi"

#: filter/libfilter-i18n.h:10
msgid "Date sent"
msgstr "Gönderilme tarihi"

#: filter/libfilter-i18n.h:12
msgid "Deleted"
msgstr "Silinen"

#: filter/libfilter-i18n.h:13
msgid "does not contain"
msgstr "içermez"

#: filter/libfilter-i18n.h:14
msgid "does not end with"
msgstr "sonlanmaz"

#: filter/libfilter-i18n.h:15
msgid "does not exist"
msgstr "bulunmaz"

#: filter/libfilter-i18n.h:16
#, fuzzy
msgid "does not return"
msgstr "bulunmaz"

#: filter/libfilter-i18n.h:17
msgid "does not sound like"
msgstr "benzemez"

#: filter/libfilter-i18n.h:18
msgid "does not start with"
msgstr "başlamaz"

#: filter/libfilter-i18n.h:19
msgid "Do Not Exist"
msgstr "Bulunmaz"

#: filter/libfilter-i18n.h:20
msgid "Draft"
msgstr "Taslak"

#: filter/libfilter-i18n.h:21
msgid "ends with"
msgstr "biter"

#: filter/libfilter-i18n.h:22
msgid "Exist"
msgstr "bulunur"

#: filter/libfilter-i18n.h:23
msgid "exists"
msgstr "bulunur"

#: filter/libfilter-i18n.h:24
msgid "Expression"
msgstr "Deyim"

#: filter/libfilter-i18n.h:25
msgid "Follow Up"
msgstr ""

#: filter/libfilter-i18n.h:27
#, fuzzy
msgid "is"
msgstr "Nis"

#: filter/libfilter-i18n.h:28
#, fuzzy
msgid "is after"
msgstr "sonra"

#: filter/libfilter-i18n.h:29
#, fuzzy
msgid "is before"
msgstr "önce"

#: filter/libfilter-i18n.h:30
#, fuzzy
msgid "is Flagged"
msgstr "İşaretli"

#: filter/libfilter-i18n.h:31
msgid "is greater than"
msgstr "büyük"

#: filter/libfilter-i18n.h:32
msgid "is less than"
msgstr "küçük"

#: filter/libfilter-i18n.h:33
msgid "is not"
msgstr "değil"

#: filter/libfilter-i18n.h:34
#, fuzzy
msgid "is not Flagged"
msgstr "İşaretli"

#: filter/libfilter-i18n.h:35 mail/folder-browser.c:1766
#, fuzzy
msgid "Label"
msgstr "Laurel"

#: filter/libfilter-i18n.h:36
msgid "Mailing list"
msgstr "E-posta listesi"

#: filter/libfilter-i18n.h:37
msgid "Message Body"
msgstr "İleti Gövdesi"

#: filter/libfilter-i18n.h:38
msgid "Message Header"
msgstr "İleti Başlığı"

#: filter/libfilter-i18n.h:39
msgid "Move to Folder"
msgstr "Dizine Taşı"

#: filter/libfilter-i18n.h:40
#, fuzzy
msgid "Pipe Message to Shell Command"
msgstr "Bağlantıya İleti Gönder"

#: filter/libfilter-i18n.h:41
#, fuzzy
msgid "Play Sound"
msgstr "Ses çal:"

#: filter/libfilter-i18n.h:42 mail/message-tag-followup.c:60
msgid "Read"
msgstr "Oku"

#: filter/libfilter-i18n.h:43
msgid "Recipients"
msgstr "Alıcılar"

#: filter/libfilter-i18n.h:44
msgid "Regex Match"
msgstr "Düzgün Deyim Eşleşimi"

#: filter/libfilter-i18n.h:45
msgid "Replied to"
msgstr "Cevaplanan"

#: filter/libfilter-i18n.h:46
#, fuzzy
msgid "returns"
msgstr "Burns"

#: filter/libfilter-i18n.h:47
#, fuzzy
msgid "returns greater than"
msgstr "büyük"

#: filter/libfilter-i18n.h:48
#, fuzzy
msgid "returns less than"
msgstr "küçük"

#: filter/libfilter-i18n.h:49 filter/score-rule.c:204 filter/score-rule.c:206
#: mail/message-list.etspec.h:10
msgid "Score"
msgstr "Puan"

#: filter/libfilter-i18n.h:50 mail/mail-callbacks.c:1857
msgid "Sender"
msgstr "Gönderen"

#: filter/libfilter-i18n.h:51
msgid "Set Status"
msgstr "Durum belirt"

#: filter/libfilter-i18n.h:52
msgid "Shell Command"
msgstr "Kabuk Komutu"

#: filter/libfilter-i18n.h:53
msgid "Size (kB)"
msgstr "Boyut (Kb)"

#: filter/libfilter-i18n.h:54
msgid "sounds like"
msgstr "benzer"

#: filter/libfilter-i18n.h:55
msgid "Source Account"
msgstr "Kaynak Hesap"

#: filter/libfilter-i18n.h:56
msgid "Specific header"
msgstr "Özel başlık"

#: filter/libfilter-i18n.h:57
msgid "starts with"
msgstr "başlayan"

#: filter/libfilter-i18n.h:59
msgid "Stop Processing"
msgstr "İşlemeyi Durdur"

#: filter/libfilter-i18n.h:60 mail/mail-format.c:935
#: mail/message-list.etspec.h:13 mail/message-tags.glade.h:4
msgid "Subject"
msgstr "Konu"

#: filter/libfilter-i18n.h:61
#, fuzzy
msgid "Unset Status"
msgstr "Durum belirt"

#: filter/rule-editor.c:180
msgid "Rules"
msgstr "Görevler"

#: filter/rule-editor.c:239 filter/rule-editor.c:335
#, c-format
msgid "Rule name '%s' is not unique, choose another"
msgstr ""

#: filter/rule-editor.c:299
msgid "Add Rule"
msgstr "Görev Ekle"

#: filter/rule-editor.c:388
msgid "Edit Rule"
msgstr "Görev Düzenle"

#: filter/score-editor.c:130
msgid "Score Rules"
msgstr "Puan Kuralları"

#: filter/vfolder-rule.c:206
msgid "You must name this vfolder."
msgstr "Bu vfolder adını değiştirmelisiniz."

#: filter/vfolder-rule.c:215
#, fuzzy
msgid "You need to specify at least one folder as a source."
msgstr "Kaynak için en az bir dizin belirtmelisiniz."

#: importers/elm-importer.c:95
msgid "Evolution is importing your old Elm mail"
msgstr "Evolution, eski Elm iletilerinizi alıyor"

#: importers/elm-importer.c:96 importers/netscape-importer.c:1228
#: importers/pine-importer.c:101
msgid "Importing..."
msgstr "Alınıyor..."

#: importers/elm-importer.c:98 importers/netscape-importer.c:1230
#: importers/pine-importer.c:103
msgid "Please wait"
msgstr "Lütfen bekleyiniz"

#: importers/elm-importer.c:169 importers/netscape-importer.c:1808
#: importers/pine-importer.c:365
#, fuzzy, c-format
msgid "Importing %s as %s"
msgstr ""
"%s alınıyor.\n"
"%s başlatılıyor"

#: importers/elm-importer.c:375 importers/netscape-importer.c:1917
#: importers/pine-importer.c:471
#, c-format
msgid "Scanning %s"
msgstr "%s taranıyor"

#: importers/elm-importer.c:525 importers/netscape-importer.c:2128
#: importers/pine-importer.c:637 mail/component-factory.c:102
#: mail/folder-browser-ui.c:353
msgid "Mail"
msgstr "İleti"

#: importers/elm-importer.c:545
msgid ""
"Evolution has found Elm mail files\n"
"Would you like to import them into Evolution?"
msgstr ""
"Evolution, Elm ileti dosyaları buldu.\n"
"Bunları Evolution'a aktarmak ister misiniz?"

#: importers/elm-importer.c:574
msgid "Elm"
msgstr "Elm"

#: importers/evolution-gnomecard-importer.c:246
msgid ""
"Evolution has found GnomeCard files.\n"
"Would you like them to be imported into Evolution?"
msgstr ""
"Evolution, GnomeCard dosyaları buldu.\n"
"Bunların Evolution'a aktarılmasını istiyor musunuz?"

#: importers/netscape-importer.c:70
#, c-format
msgid "Priority Filter \"%s\""
msgstr "Öncelik Filtresi \"%s\""

#: importers/netscape-importer.c:653
msgid ""
"Some of your Netscape email filters are based on\n"
"email priorities, which are not used in Evolution.\n"
"Instead, Evolution provides scores in the range of\n"
"-3 to 3 that can be assigned to emails and filtered\n"
"accordingly.\n"
"\n"
"As a workaround, a set of filters called \"Priority Filter\"\n"
"was added that converts Netscape's email priorities into\n"
"Evolution's scores, and the affected filters use scores instead\n"
"of priorities. Check the imported filters to make sure\n"
"everything still works as intended."
msgstr ""

#: importers/netscape-importer.c:677
msgid ""
"Some of your Netscape email filters use\n"
"the \"Ignore Thread\" or \"Watch Thread\"\n"
"feature, which is not supported in Evolution.\n"
"These filters will be dropped."
msgstr ""

#: importers/netscape-importer.c:694
msgid ""
"Some of your Netscape email filters test the\n"
"body of emails for (in)equality to a given string,\n"
"which is not supported in Evolution. Those filters\n"
"were modified to test whether that string is or is not\n"
"contained in the message body."
msgstr ""

#: importers/netscape-importer.c:1227
msgid "Evolution is importing your old Netscape data"
msgstr "Evolution, Netscape verilerini alıyor."

#. Fill in the new fields
#: importers/netscape-importer.c:1872 mail/mail-ops.c:1101
#: shell/e-local-storage.c:183
msgid "Trash"
msgstr "Çöp"

#: importers/netscape-importer.c:2028
msgid "Scanning mail filters"
msgstr "E-posta filtreleri taranıyor"

#: importers/netscape-importer.c:2038 importers/pine-importer.c:570
msgid "Scanning directory"
msgstr "Dizin taranıyor"

#: importers/netscape-importer.c:2047
msgid "Starting import"
msgstr "Aktarma işlemi başlıyor"

#: importers/netscape-importer.c:2133
msgid "Settings"
msgstr "Ayarlar"

#: importers/netscape-importer.c:2138
msgid "Mail Filters"
msgstr "E-posta Filtreleri"

#: importers/netscape-importer.c:2161
msgid ""
"Evolution has found Netscape mail files.\n"
"Would you like them to be imported into Evolution?"
msgstr ""
"Evolution, Netscape e-posta dosyaları buldu.\n"
"Bunların Evolution'a aktarılmasını istiyor musunuz?"

#: importers/pine-importer.c:100
msgid "Evolution is importing your old Pine data"
msgstr "Evolution, Pine'daki tüm verileri alıyor"

#: importers/pine-importer.c:663
msgid ""
"Evolution has found Pine mail files.\n"
"Would you like to import them into Evolution?"
msgstr ""
"Evolution, Pine e-posta dosyaları buldu.\n"
"Bunların Evolution'a aktarılmasını istiyor musunuz?"

#: importers/pine-importer.c:691
msgid "Pine"
msgstr "Pine"

#: mail/GNOME_Evolution_Mail.oaf.in.h:1
msgid "Composer Preferences"
msgstr "Düzenleyici Tercihleri"

#: mail/GNOME_Evolution_Mail.oaf.in.h:2
msgid "Configuration control for the Evolution Display Fonts."
msgstr "Evolution yazıtipleri için yapılandırma denetimi."

#: mail/GNOME_Evolution_Mail.oaf.in.h:3
msgid "Configuration control for the Evolution Mail Accounts."
msgstr "Evolution posta hesabı için yapılandırma denetimi."

#: mail/GNOME_Evolution_Mail.oaf.in.h:4
msgid "Configuration control for the Evolution Mailer."
msgstr "Evolution e-posta servisi için yapılandırma denetimi."

#: mail/GNOME_Evolution_Mail.oaf.in.h:5
msgid "Configuration control for the Evolution Message Composer."
msgstr "Evolution İleti Düzenleyici için yapılandırma denetimi"

#: mail/GNOME_Evolution_Mail.oaf.in.h:6
msgid "Configure mail preferences, including security and message display, here"
msgstr "İleti tercihleri, güvenlik ve diğer ayarları buradan yapılandırın"

#: mail/GNOME_Evolution_Mail.oaf.in.h:7
msgid "Configure spell-checking, signatures, and the message composer here"
msgstr "İmla denetimi, imza ve metin düzenleyiciyi buradan yapılandırın"

#: mail/GNOME_Evolution_Mail.oaf.in.h:8
msgid "Configure the fonts used by Evolution here"
msgstr "Evolution'un kullanacağı yazıtiplerini buradan yapılandırın"

#: mail/GNOME_Evolution_Mail.oaf.in.h:9
msgid "Configure your email accounts here"
msgstr "Posta hesaplarını buradan yapılandırın"

#: mail/GNOME_Evolution_Mail.oaf.in.h:10
msgid "Evolution component for handling mail."
msgstr "E-posta alma va gönderme için Evolution bileşeni"

#: mail/GNOME_Evolution_Mail.oaf.in.h:11
msgid "Evolution mail composer."
msgstr "Evolution e-posta programı."

#: mail/GNOME_Evolution_Mail.oaf.in.h:12
msgid "Evolution mail executive summary component."
msgstr "Evolution e-posta özet bileşeni."

#: mail/GNOME_Evolution_Mail.oaf.in.h:13
msgid "Evolution mail folder display component."
msgstr "Evolution e-posta dizin görüntüleme bileşeni."

#: mail/GNOME_Evolution_Mail.oaf.in.h:14
msgid "Evolution mail folder factory component."
msgstr "Evolution e-posta dizin bileşeni"

#: mail/GNOME_Evolution_Mail.oaf.in.h:15
msgid "Factory for the Evolution composer."
msgstr "Evolution e-posta programı mimarisi."

#: mail/GNOME_Evolution_Mail.oaf.in.h:16
msgid "Factory for the Mail Summary component."
msgstr "E-posta özet bileşen mimarisi"

#: mail/GNOME_Evolution_Mail.oaf.in.h:17
msgid "Font Preferences"
msgstr "Yazıtipi Tercihleri"

#: mail/GNOME_Evolution_Mail.oaf.in.h:18
msgid "Mail Accounts"
msgstr "E-posta Hesapları"

#: mail/GNOME_Evolution_Mail.oaf.in.h:19 mail/mail-config.glade.h:71
msgid "Mail Preferences"
msgstr "E-posta Tercihleri"

#: mail/GNOME_Evolution_Mail.oaf.in.h:20
msgid "Mail configuration interface"
msgstr "İleti yapılandırma arayüzü"

#: mail/component-factory.c:102
msgid "Folder containing mail"
msgstr "İletileri içeren dizin"

#: mail/component-factory.c:103
msgid "Public Mail"
msgstr "Genel Posta"

#: mail/component-factory.c:103
msgid "Public folder containing mail"
msgstr "E-posta içeren genel dizin"

#: mail/component-factory.c:104
msgid "Virtual Trash"
msgstr "Sanal Çöp"

#: mail/component-factory.c:104
msgid "Virtual Trash folder"
msgstr "Sanal Çöp dizini"

#: mail/component-factory.c:132
msgid "This folder cannot contain messages."
msgstr "Bu dizinde ileti bulunamaz."

#: mail/component-factory.c:427
msgid "Properties..."
msgstr "Özellikler..."

#: mail/component-factory.c:427
msgid "Change this folder's properties"
msgstr "Bu dizinin özelliklerini değiştir"

#: mail/component-factory.c:811
msgid ""
"Some of your mail settings seem corrupt, please check that everything is in "
"order."
msgstr ""

#: mail/component-factory.c:976
msgid "You have not set a mail transport method"
msgstr "Posta iletim yöntemi düzenlenmemiş"

#: mail/component-factory.c:998
msgid "You have unsent messages, do you wish to quit anyway?"
msgstr "Henüz gönderilmemiş iletileriniz var. Yine de çıkmak istiyor musunuz?"

#: mail/component-factory.c:1004
msgid "Warning: Unsent Messages"
msgstr "Uyarı: Gönderilmeyen İletiler"

#: mail/component-factory.c:1046
msgid "New Mail Message"
msgstr "Yeni İleti"

#: mail/component-factory.c:1046
msgid "_Mail Message"
msgstr "_İletiyi Gönder"

#: mail/component-factory.c:1047
msgid "Compose a new mail message"
msgstr "Yeni bir e-posta hazırla"

#: mail/component-factory.c:1055
msgid "New Message Post"
msgstr "Yeni İleti"

#: mail/component-factory.c:1055
msgid "_Post Message"
msgstr "İ_letiyi Gönder"

#: mail/component-factory.c:1056
msgid "Post a new mail message"
msgstr "Yeni bir e-posta gönder"

#: mail/component-factory.c:1084
msgid "Cannot initialize the Evolution mail component."
msgstr "Evolution posta programı başlatılamadı."

#: mail/component-factory.c:1093
msgid "Cannot initialize Evolution's mail config component."
msgstr "Evolution'ın ileti yapılandırma bileşeni başlatılamadı."

#: mail/component-factory.c:1099
msgid "Cannot initialize Evolution's folder info component."
msgstr "Evolution'ın ileti dizin bilgi bileşeni başlatılamadı."

#: mail/component-factory.c:1341 mail/component-factory.c:1371
msgid "Connecting..."
msgstr "Bağlanıyor..."

#: mail/component-factory.c:1382
msgid "Cannot register storage with shell"
msgstr "Depo kabuğa kayıt ettirilemedi"

#: mail/folder-browser-ui.c:471
#, c-format
msgid "Properties for \"%s\""