aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
blob: eeb464803a13a82885304c43264b66854600509d (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Authors: Miguel De Icaza <miguel@ximian.com>
 *           Jeffrey Stedfast <fejj@ximian.com>
 *
 *  Copyright 2000-2003 Ximian, Inc. (www.ximian.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 */


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

#include <string.h>
#include <ctype.h>
#include <errno.h>

#include <gdk/gdkkeysyms.h>
#include <gtk/gtkinvisible.h>
#include <gal/e-table/e-table.h>
#include <gal/util/e-util.h>
#include <gal/widgets/e-gui-utils.h>
#include <gal/widgets/e-popup-menu.h>

#include <gconf/gconf.h>
#include <gconf/gconf-client.h>

#include <libgnomeui/gnome-dialog-util.h>
#include <libgnomeui/gnome-pixmap.h>

#include <gtkhtml/htmlengine.h>
#include <gtkhtml/htmlobject.h>
#include <gtkhtml/htmlinterval.h>
#include <gtkhtml/htmlengine-edit-cut-and-paste.h>

#include "filter/vfolder-rule.h"
#include "filter/vfolder-context.h"
#include "filter/filter-option.h"
#include "filter/filter-input.h"
#include "filter/filter-label.h"

#include "e-util/e-sexp.h"
#include "e-util/e-mktemp.h"
#include "e-util/e-meta.h"
#include "folder-browser.h"
#include "e-searching-tokenizer.h"
#include "mail.h"
#include "mail-callbacks.h"
#include "mail-tools.h"
#include "mail-ops.h"
#include "mail-vfolder.h"
#include "mail-autofilter.h"
#include "mail-mt.h"
#include "mail-folder-cache.h"
#include "folder-browser-ui.h"

#include "mail-local.h"
#include "mail-config.h"

#include <camel/camel-mime-message.h>
#include <camel/camel-stream-mem.h>

/* maybe this shooudlnt be private ... */
#include "camel/camel-search-private.h"

#define d(x) 

#define PARENT_TYPE (gtk_table_get_type ())

static void folder_changed(CamelObject *o, void *event_data, void *data);
static void main_folder_changed(CamelObject *o, void *event_data, void *data);

#define X_EVOLUTION_MESSAGE_TYPE "x-evolution-message"
#define MESSAGE_RFC822_TYPE      "message/rfc822"
#define TEXT_URI_LIST_TYPE       "text/uri-list"
#define TEXT_PLAIN_TYPE          "text/plain"

/* Drag & Drop types */
enum DndTargetType {
    DND_TARGET_TYPE_X_EVOLUTION_MESSAGE,
    DND_TARGET_TYPE_MESSAGE_RFC822,
    DND_TARGET_TYPE_TEXT_URI_LIST,
};

static GtkTargetEntry drag_types[] = {
    { X_EVOLUTION_MESSAGE_TYPE, 0, DND_TARGET_TYPE_X_EVOLUTION_MESSAGE },
    { MESSAGE_RFC822_TYPE, 0, DND_TARGET_TYPE_MESSAGE_RFC822 },
    { TEXT_URI_LIST_TYPE, 0, DND_TARGET_TYPE_TEXT_URI_LIST },
};

static const int num_drag_types = sizeof (drag_types) / sizeof (drag_types[0]);

enum PasteTargetType {
    PASTE_TARGET_TYPE_X_EVOLUTION_MESSAGE,
    PASTE_TARGET_TYPE_TEXT_PLAIN,
};

static GtkTargetPair paste_types[] = {
    { 0, 0, PASTE_TARGET_TYPE_X_EVOLUTION_MESSAGE },
    { GDK_SELECTION_TYPE_STRING, 0, PASTE_TARGET_TYPE_TEXT_PLAIN },
};

static const int num_paste_types = sizeof (paste_types) / sizeof (paste_types[0]);

static GdkAtom clipboard_atom = GDK_NONE;

static GtkTableClass *parent_class = NULL;

enum {
    FOLDER_LOADED,
    MESSAGE_LOADED,
    LAST_SIGNAL
};

static guint folder_browser_signals [LAST_SIGNAL] = {0, };

static void
folder_browser_finalise (GObject *object)
{
    FolderBrowser *folder_browser;
    
    folder_browser = FOLDER_BROWSER (object);
        
    g_free (folder_browser->loading_uid);
    g_free (folder_browser->pending_uid);
    g_free (folder_browser->new_uid);
    g_free (folder_browser->loaded_uid);
    
    g_free (folder_browser->uri);
    folder_browser->uri = NULL;
        
    if (folder_browser->clipboard_selection)
        g_byte_array_free (folder_browser->clipboard_selection, TRUE);
    
    if (folder_browser->sensitise_state) {
        g_hash_table_destroy (folder_browser->sensitise_state);
        folder_browser->sensitise_state = NULL;
    }
    
    G_OBJECT_CLASS (parent_class)->finalize (object);
}

static void
folder_browser_destroy (GtkObject *object)
{
    FolderBrowser *folder_browser;
    CORBA_Environment ev;
    GConfClient *gconf;
    
    folder_browser = FOLDER_BROWSER (object);
    
    gconf = gconf_client_get_default ();
    
    CORBA_exception_init (&ev);
    
    if (folder_browser->seen_id != 0) {
        gtk_timeout_remove (folder_browser->seen_id);
        folder_browser->seen_id = 0;
    }
    
    if (folder_browser->loading_id != 0) {
        gtk_timeout_remove(folder_browser->loading_id);
        folder_browser->loading_id = 0;
    }
    
    if (folder_browser->message_list) {
        gtk_widget_destroy (GTK_WIDGET (folder_browser->message_list));
        folder_browser->message_list = NULL;
    }
    
    if (folder_browser->mail_display) {
        gtk_widget_destroy (GTK_WIDGET (folder_browser->mail_display));
        folder_browser->mail_display = NULL;
    }

    if (folder_browser->view_instance) {
        g_object_unref (folder_browser->view_instance);
        folder_browser->view_instance = NULL;
    }
    
    if (folder_browser->view_menus) {
        g_object_unref (folder_browser->view_menus);
        folder_browser->view_menus = NULL;
    }
    
    /* wait for all outstanding async events against us */
    mail_async_event_destroy (folder_browser->async_event);

    if (folder_browser->search_full) {
        g_object_unref (folder_browser->search_full);
        folder_browser->search_full = NULL;
    }
    
    if (folder_browser->sensitize_timeout_id) {
        g_source_remove (folder_browser->sensitize_timeout_id);
        folder_browser->sensitize_timeout_id = 0;
    }
    
    if (folder_browser->shell != CORBA_OBJECT_NIL) {
        CORBA_Object_release (folder_browser->shell, &ev);
        folder_browser->shell = CORBA_OBJECT_NIL;
    }
    
    if (folder_browser->shell_view != CORBA_OBJECT_NIL) {
        CORBA_Object_release (folder_browser->shell_view, &ev);
        folder_browser->shell_view = CORBA_OBJECT_NIL;
    }
    
    if (folder_browser->uicomp) {
        bonobo_object_unref (BONOBO_OBJECT (folder_browser->uicomp));
        folder_browser->uicomp = NULL;
    }
    
    if (folder_browser->invisible) {
        g_object_unref (folder_browser->invisible);
        folder_browser->invisible = NULL;
    }
        
    if (folder_browser->get_id != -1) {
        mail_msg_cancel (folder_browser->get_id);
        folder_browser->get_id = -1;
    }
    
    if (folder_browser->folder) {
        camel_object_unhook_event (CAMEL_OBJECT (folder_browser->folder), "folder_changed",
                       folder_changed, folder_browser);
        camel_object_unhook_event (CAMEL_OBJECT (folder_browser->folder), "message_changed",
                       folder_changed, folder_browser);
        mail_sync_folder (folder_browser->folder, NULL, NULL);
        camel_object_unref (folder_browser->folder);
        folder_browser->folder = NULL;
    }

    CORBA_exception_free (&ev);
    
    GTK_OBJECT_CLASS (parent_class)->destroy (object);
}

static void
folder_browser_class_init (FolderBrowserClass *klass)
{
    GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
    GtkObjectClass *object_class = GTK_OBJECT_CLASS (klass);
    
    parent_class = g_type_class_ref(PARENT_TYPE);
    
    object_class->destroy = folder_browser_destroy;
    gobject_class->finalize = folder_browser_finalise;
    
    folder_browser_signals[FOLDER_LOADED] =
        g_signal_new ("folder_loaded",
                  FOLDER_BROWSER_TYPE,
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (FolderBrowserClass, folder_loaded),
                  NULL,
                  NULL,
                  g_cclosure_marshal_VOID__STRING,
                  G_TYPE_NONE, 1, G_TYPE_STRING);
    
    folder_browser_signals[MESSAGE_LOADED] =
        g_signal_new ("message_loaded",
                  FOLDER_BROWSER_TYPE,
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (FolderBrowserClass, message_loaded),
                  NULL,
                  NULL,
                  g_cclosure_marshal_VOID__STRING,
                  G_TYPE_NONE, 1, G_TYPE_STRING);
    
    /* clipboard atom */
    if (!clipboard_atom)
        clipboard_atom = gdk_atom_intern ("CLIPBOARD", FALSE);
    
    if (!paste_types[0].target)
        paste_types[0].target = gdk_atom_intern (X_EVOLUTION_MESSAGE_TYPE, FALSE);
}

static void
add_uid (MessageList *ml, const char *uid, gpointer data)
{
    g_ptr_array_add ((GPtrArray *) data, g_strdup (uid));
}

static void
message_list_drag_data_get (ETree *tree, int row, ETreePath path, int col,
                GdkDragContext *context, GtkSelectionData *selection_data,
                guint info, guint time, gpointer user_data)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    GPtrArray *uids = NULL;
    int i;
    
    uids = g_ptr_array_new ();
    message_list_foreach (fb->message_list, add_uid, uids);
    if (uids->len == 0) {
        g_ptr_array_free (uids, TRUE);
        return;
    }
    
    switch (info) {
    case DND_TARGET_TYPE_TEXT_URI_LIST:
    {
        const char *filename, *tmpdir;
        CamelMimeMessage *message;
        CamelStream *stream;
        char *uri_list;
        int fd;
        
        tmpdir = e_mkdtemp ("drag-n-drop-XXXXXX");
        
        if (!tmpdir) {
            char *msg = g_strdup_printf (_("Could not create temporary "
                               "directory: %s"),
                             g_strerror (errno));
            gnome_error_dialog (msg);
            /* cleanup and abort */
            for (i = 0; i < uids->len; i++)
                g_free (uids->pdata[i]);
            g_ptr_array_free (uids, TRUE);
            g_free (msg);
            return;
        }
        
        message = camel_folder_get_message (fb->folder, uids->pdata[0], NULL);
        g_free (uids->pdata[0]);
        
        if (uids->len == 1) {
            filename = camel_mime_message_get_subject (message);
            if (!filename)
                filename = _("Unknown");
        } else
            filename = "mbox";
        
        uri_list = g_strdup_printf ("file://%s/%s", tmpdir, filename);
        
        fd = open (uri_list + 7, O_WRONLY | O_CREAT | O_EXCL, 0600);
        if (fd == -1) {
            /* cleanup and abort */
            camel_object_unref (CAMEL_OBJECT (message));
            for (i = 1; i < uids->len; i++)
                g_free (uids->pdata[i]);
            g_ptr_array_free (uids, TRUE);
            g_free (uri_list);
            return;
        }
        
        stream = camel_stream_fs_new_with_fd (fd);
        
        camel_stream_write (stream, "From - \n", 8);
        camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream);
        camel_object_unref (CAMEL_OBJECT (message));
        for (i = 1; i < uids->len; i++) {
            message = camel_folder_get_message (fb->folder, uids->pdata[i], NULL);
            camel_stream_write (stream, "From - \n", 8);
            camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream);
            camel_object_unref (CAMEL_OBJECT (message));
            g_free (uids->pdata[i]);
        }
        
        camel_object_unref (CAMEL_OBJECT (stream));
        
        gtk_selection_data_set (selection_data, selection_data->target, 8,
                    uri_list, strlen (uri_list));
        g_free (uri_list);
    }
    break;
    case DND_TARGET_TYPE_MESSAGE_RFC822:
    {
        /* FIXME: this'll be fucking slow for the user... pthread this? */
        CamelStream *stream;
        GByteArray *bytes;
        
        bytes = g_byte_array_new ();
        stream = camel_stream_mem_new ();
        camel_stream_mem_set_byte_array (CAMEL_STREAM_MEM (stream), bytes);
        
        for (i = 0; i < uids->len; i++) {
            CamelMimeMessage *message;
            
            message = camel_folder_get_message (fb->folder, uids->pdata[i], NULL);
            g_free (uids->pdata[i]);
            
            if (message) {          
                camel_stream_write (stream, "From - \n", 8);
                camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream);
                camel_object_unref (CAMEL_OBJECT (message));
            }
        }
        
        g_ptr_array_free (uids, TRUE);
        camel_object_unref (CAMEL_OBJECT (stream));
        
        gtk_selection_data_set (selection_data, selection_data->target, 8,
                    bytes->data, bytes->len);
        
        g_byte_array_free (bytes, TRUE);
    }
    break;
    case DND_TARGET_TYPE_X_EVOLUTION_MESSAGE:
    {
        GByteArray *array;
        
        /* format: "uri\0uid1\0uid2\0uid3\0...\0uidn" */
        
        /* write the uri portion */
        array = g_byte_array_new ();
        g_byte_array_append (array, fb->uri, strlen (fb->uri));
        g_byte_array_append (array, "", 1);
        
        /* write the uids */
        for (i = 0; i < uids->len; i++) {
            g_byte_array_append (array, uids->pdata[i], strlen (uids->pdata[i]));
            g_free (uids->pdata[i]);
            
            if (i + 1 < uids->len)
                g_byte_array_append (array, "", 1);
        }
        
        g_ptr_array_free (uids, TRUE);
        
        gtk_selection_data_set (selection_data, selection_data->target, 8,
                    array->data, array->len);
        
        g_byte_array_free (array, TRUE);
    }
    break;
    default:
        for (i = 0; i < uids->len; i++)
            g_free (uids->pdata[i]);
        
        g_ptr_array_free (uids, TRUE);
        break;
    }
}

static void
message_rfc822_dnd (CamelFolder *dest, CamelStream *stream, CamelException *ex)
{
    CamelMimeParser *mp;
    
    mp = camel_mime_parser_new ();
    camel_mime_parser_scan_from (mp, TRUE);
    camel_mime_parser_init_with_stream (mp, stream);
    
    while (camel_mime_parser_step (mp, 0, 0) == HSCAN_FROM) {
        CamelMessageInfo *info;
        CamelMimeMessage *msg;
        
        msg = camel_mime_message_new ();
        if (camel_mime_part_construct_from_parser (CAMEL_MIME_PART (msg), mp) == -1) {
            camel_object_unref (CAMEL_OBJECT (msg));
            break;
        }
        
        /* append the message to the folder... */
        info = g_new0 (CamelMessageInfo, 1);
        camel_folder_append_message (dest, msg, info, NULL, ex);
        camel_object_unref (CAMEL_OBJECT (msg));
        
        if (camel_exception_is_set (ex))
            break;
        
        /* skip over the FROM_END state */
        camel_mime_parser_step (mp, 0, 0);
    }
    
    camel_object_unref (CAMEL_OBJECT (mp));
}

static void
message_list_drag_data_received (ETree *tree, int row, ETreePath path, int col,
                 GdkDragContext *context, gint x, gint y,
                 GtkSelectionData *selection_data, guint info,
                 guint time, gpointer user_data)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    CamelFolder *folder = NULL;
    char *tmp, *url, **urls;
    GPtrArray *uids = NULL;
    CamelStream *stream;
    CamelException ex;
    CamelURL *uri;
    int i, fd;
    
    /* this means we are receiving no data */
    if (!selection_data->data || selection_data->length == -1)
        return;
    
    camel_exception_init (&ex);
    
    switch (info) {
    case DND_TARGET_TYPE_TEXT_URI_LIST:
        tmp = g_strndup (selection_data->data, selection_data->length);
        urls = g_strsplit (tmp, "\n", 0);
        g_free (tmp);
        
        for (i = 0; urls[i] != NULL; i++) {
            /* get the path component */
            url = g_strstrip (urls[i]);
            
            uri = camel_url_new (url, NULL);
            g_free (url);
            url = uri->path;
            uri->path = NULL;
            camel_url_free (uri);
            
            fd = open (url, O_RDONLY);
            if (fd == -1) {
                g_free (url);
                /* FIXME: okay, what do we do in this case? */
                continue;
            }
            
            stream = camel_stream_fs_new_with_fd (fd);
            message_rfc822_dnd (fb->folder, stream, &ex);
            camel_object_unref (CAMEL_OBJECT (stream));
            
            if (context->action == GDK_ACTION_MOVE && !camel_exception_is_set (&ex))
                unlink (url);
            
            g_free (url);
        }
        
        g_free (urls);
        break;
    case DND_TARGET_TYPE_MESSAGE_RFC822:
        /* write the message(s) out to a CamelStream so we can use it */
        stream = camel_stream_mem_new ();
        camel_stream_write (stream, selection_data->data, selection_data->length);
        camel_stream_reset (stream);
        
        message_rfc822_dnd (fb->folder, stream, &ex);
        camel_object_unref (CAMEL_OBJECT (stream));
        break;
    case DND_TARGET_TYPE_X_EVOLUTION_MESSAGE:
        folder = mail_tools_x_evolution_message_parse (selection_data->data, selection_data->length, &uids);
        if (folder == NULL)
            goto fail;
        
        if (uids == NULL) {
            camel_object_unref (CAMEL_OBJECT (folder));
            goto fail;
        }
        
        mail_transfer_messages (folder, uids, context->action == GDK_ACTION_MOVE,
                    fb->uri, 0, NULL, NULL);
        
        camel_object_unref (CAMEL_OBJECT (folder));
        break;
    }
    
    camel_exception_clear (&ex);
    
    gtk_drag_finish (context, TRUE, TRUE, GDK_CURRENT_TIME);
    
 fail:
    camel_exception_clear (&ex);
    
    gtk_drag_finish (context, FALSE, TRUE, GDK_CURRENT_TIME);
}

static void
selection_get (GtkWidget *widget, GtkSelectionData *selection_data,
           guint info, guint time_stamp, FolderBrowser *fb)
{
    if (fb->clipboard_selection == NULL)
        return;
    
    switch (info) {
    default:
    case PASTE_TARGET_TYPE_TEXT_PLAIN:
    {
        /* FIXME: this'll be fucking slow for the user... pthread this? */
        CamelFolder *source;
        CamelStream *stream;
        GByteArray *bytes;
        GPtrArray *uids;
        int i;
        
        bytes = fb->clipboard_selection;
        
        /* Note: source should == fb->folder, but we might as well use `source' instead of fb->folder */
        source = mail_tools_x_evolution_message_parse (bytes->data, bytes->len, &uids);
        if (source == NULL)
            return;
        
        if (uids == NULL) {
            camel_object_unref (CAMEL_OBJECT (source));
            return;
        }
        
        bytes = g_byte_array_new ();
        stream = camel_stream_mem_new ();
        camel_stream_mem_set_byte_array (CAMEL_STREAM_MEM (stream), bytes);
        
        for (i = 0; i < uids->len; i++) {
            CamelMimeMessage *message;
            
            message = camel_folder_get_message (source, uids->pdata[i], NULL);
            g_free (uids->pdata[i]);
            
            if (message) {          
                camel_stream_write (stream, "From - \n", 8);
                camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream);
                camel_object_unref (CAMEL_OBJECT (message));
            }
        }
        
        g_ptr_array_free (uids, TRUE);
        camel_object_unref (CAMEL_OBJECT (stream));
        camel_object_unref (CAMEL_OBJECT (source));
        
        gtk_selection_data_set (selection_data, selection_data->target, 8,
                    bytes->data, bytes->len);
        
        g_byte_array_free (bytes, FALSE);
    }
    break;
    case PASTE_TARGET_TYPE_X_EVOLUTION_MESSAGE:
        /* we already have our data in the correct form */
        gtk_selection_data_set (selection_data,
                    selection_data->target, 8,
                    fb->clipboard_selection->data,
                    fb->clipboard_selection->len);
        break;
    }
}

static void
selection_clear_event (GtkWidget *widget, GdkEventSelection *event, FolderBrowser *fb)
{
    if (fb->clipboard_selection != NULL) {
        g_byte_array_free (fb->clipboard_selection, TRUE);
        fb->clipboard_selection = NULL;
    }
}

static void
selection_received (GtkWidget *widget, GtkSelectionData *selection_data,
            guint time, FolderBrowser *fb)
{
    CamelFolder *source = NULL;
    GPtrArray *uids = NULL;
    
    if (selection_data == NULL || selection_data->length == -1)
        return;
    
    source = mail_tools_x_evolution_message_parse (selection_data->data, selection_data->length, &uids);
    if (source == NULL)
        return;
    
    if (uids == NULL) {
        camel_object_unref (CAMEL_OBJECT (source));
        return;
    }
    
    mail_transfer_messages (source, uids, FALSE, fb->uri, 0, NULL, NULL);
    
    camel_object_unref (CAMEL_OBJECT (source));
}

void
folder_browser_copy (GtkWidget *menuitem, FolderBrowser *fb)
{
    GPtrArray *uids = NULL;
    GByteArray *bytes;
    gboolean cut;
    int i;
    
    if (fb->message_list == NULL)
        return;
    
    cut = menuitem == NULL;
    
    if (GTK_WIDGET_HAS_FOCUS (fb->mail_display->html)) {
        gtk_html_copy (fb->mail_display->html);
        return;
    }
    
    if (fb->clipboard_selection) {
        g_byte_array_free (fb->clipboard_selection, TRUE);
        fb->clipboard_selection = NULL;
    }
    
    uids = g_ptr_array_new ();
    message_list_foreach (fb->message_list, add_uid, uids);
    
    /* format: "uri\0uid1\0uid2\0uid3\0...\0uidn" */
    
    /* write the uri portion */
    bytes = g_byte_array_new ();
    g_byte_array_append (bytes, fb->uri, strlen (fb->uri));
    g_byte_array_append (bytes, "", 1);
    
    /* write the uids */
    camel_folder_freeze (fb->folder);
    for (i = 0; i < uids->len; i++) {
        if (cut) {
            camel_folder_set_message_flags (fb->folder, uids->pdata[i],
                            CAMEL_MESSAGE_SEEN | CAMEL_MESSAGE_DELETED,
                            CAMEL_MESSAGE_SEEN | CAMEL_MESSAGE_DELETED);
        }
        g_byte_array_append (bytes, uids->pdata[i], strlen (uids->pdata[i]));
        g_free (uids->pdata[i]);
        
        if (i + 1 < uids->len)
            g_byte_array_append (bytes, "", 1);
    }
    camel_folder_thaw (fb->folder);
    
    g_ptr_array_free (uids, TRUE);
    
    fb->clipboard_selection = bytes;
    
    gtk_selection_owner_set (fb->invisible, clipboard_atom, GDK_CURRENT_TIME);
}

void
folder_browser_cut (GtkWidget *menuitem, FolderBrowser *fb)
{
    folder_browser_copy (NULL, fb);
}

void
folder_browser_paste (GtkWidget *menuitem, FolderBrowser *fb)
{
    gtk_selection_convert (fb->invisible, clipboard_atom,
                   paste_types[0].target,
                   GDK_CURRENT_TIME);
}

/* all this crap so we can give the user a whoopee doo status bar */
static void
update_status_bar (FolderBrowser *fb)
{
    extern CamelFolder *outbox_folder, *sent_folder;
    CORBA_Environment ev;
    int tmp, total;
    GString *work;
    
    if (fb->folder == NULL
        || fb->message_list == NULL
        || fb->shell_view == CORBA_OBJECT_NIL)
        return;
    
    if (!fb->message_list->hidedeleted || !camel_folder_has_summary_capability (fb->folder)) {
        total = camel_folder_get_message_count (fb->folder);
    } else {
        GPtrArray *sum = camel_folder_get_summary (fb->folder);
        int i;
        
        if (sum) {
            total = 0;
            for (i = 0; i < sum->len; i++) {
                CamelMessageInfo *info = sum->pdata[i];
                
                if ((info->flags & CAMEL_MESSAGE_DELETED) == 0)
                    total++;
            }
            camel_folder_free_summary (fb->folder, sum);
        } else {
            total = camel_folder_get_message_count (fb->folder);
        }
    }
    
    work = g_string_new ("");
    g_string_append_printf (work, _("%d new"), camel_folder_get_unread_message_count (fb->folder));
    tmp = message_list_hidden (fb->message_list);
    if (0 < tmp && tmp < total) {
        g_string_append (work, _(", "));
        if (tmp < total / 2)
            g_string_append_printf (work, _("%d hidden"), tmp);
        else  
            g_string_append_printf (work, _("%d visible"), total - tmp);
    }
    tmp = e_selection_model_selected_count (e_tree_get_selection_model (fb->message_list->tree));
    if (tmp) {
        g_string_append (work, _(", "));
        g_string_append_printf (work, _("%d selected"), tmp);
    }
    g_string_append (work, _(", "));
    
    if (fb->folder == outbox_folder)
        g_string_append_printf (work, _("%d unsent"), total);
    else if (fb->folder == sent_folder)
        g_string_append_printf (work, _("%d sent"), total);
    else
        g_string_append_printf (work, _("%d total"), total);
    
    CORBA_exception_init (&ev);
    GNOME_Evolution_ShellView_setFolderBarLabel (fb->shell_view, work->str, &ev);
    CORBA_exception_free (&ev);
    
    if (fb->update_status_bar_idle_id != 0) {
        g_source_remove (fb->update_status_bar_idle_id);
        fb->update_status_bar_idle_id = 0;
    }
    
    g_string_free (work, TRUE);
}

static gboolean
update_status_bar_idle_cb(gpointer data)
{
    FolderBrowser *fb = data;

#if 0   
    if (!GTK_OBJECT_DESTROYED (fb))
#endif
        update_status_bar (fb);
    
    fb->update_status_bar_idle_id = 0;
    g_object_unref (fb);
    
    return FALSE;
}

static void
update_status_bar_idle(FolderBrowser *fb)
{
    if (fb->update_status_bar_idle_id == 0) {
        g_object_ref (fb);
        fb->update_status_bar_idle_id = g_idle_add (update_status_bar_idle_cb, fb);
    }
}

static void main_folder_changed(CamelObject *o, void *event_data, void *data)
{
    FolderBrowser *fb = data;
    
    if (fb->message_list == NULL)
        return;
    
    /* so some corba unref doesnt blow us away while we're busy */
    g_object_ref (fb);
    update_status_bar (fb);
    folder_browser_ui_scan_selection (fb);
    g_object_unref (fb);
}

static void folder_changed (CamelObject *obj, void *event_data, void *user_data)
{
    FolderBrowser *fb = user_data;

    mail_async_event_emit (fb->async_event, MAIL_ASYNC_GUI,
                   (MailAsyncFunc) main_folder_changed,
                   obj, NULL, user_data);
}

static void
got_folder (char *uri, CamelFolder *folder, void *user_data)
{
    FolderBrowser *fb = user_data;
    EMeta *meta;

    fb->get_id = -1;
    
    d(printf ("got folder '%s' = %p, previous folder was %p\n", uri, folder, fb->folder));
    
    if (fb->message_list == NULL)
        goto done;

    if (fb->folder) {
        camel_object_unhook_event (fb->folder, "folder_changed", folder_changed, fb);
        camel_object_unhook_event (fb->folder, "message_changed", folder_changed, fb);
        camel_object_unref (fb->folder);
    }

    if (folder) {
        fb->folder = folder;
        camel_object_ref (folder);
        meta = mail_tool_get_meta_data(fb->uri);
        if (meta != fb->meta) {
            g_object_unref(fb->meta);
            fb->meta = meta;
        } else {
            g_object_unref(meta);
        }
    } else {
        fb->folder = NULL;
        if (fb->meta) {
            g_object_unref(fb->meta);
            fb->meta = NULL;
        }
        goto done;
    }

    
    gtk_widget_set_sensitive (GTK_WIDGET (fb->search), camel_folder_has_search_capability (folder));
    message_list_set_folder (fb->message_list, folder,
                 folder_browser_is_drafts (fb) ||
                 folder_browser_is_sent (fb) ||
                 folder_browser_is_outbox (fb));
    
    camel_object_hook_event (CAMEL_OBJECT (fb->folder), "folder_changed",
                 folder_changed, fb);
    camel_object_hook_event (CAMEL_OBJECT (fb->folder), "message_changed",
                 folder_changed, fb);
    
    if (fb->view_instance != NULL && fb->view_menus != NULL)
        folder_browser_ui_discard_view_menus (fb);
    
    folder_browser_ui_setup_view_menus (fb);
    
    /* when loading a new folder, nothing is selected initially */
    
    if (fb->uicomp)
        folder_browser_ui_set_selection_state (fb, FB_SELSTATE_NONE);
    
 done:  
    g_signal_emit (fb, folder_browser_signals[FOLDER_LOADED], 0, fb->uri);
    g_object_unref (fb);
}


void
folder_browser_reload (FolderBrowser *fb)
{
    g_return_if_fail (IS_FOLDER_BROWSER (fb));
    
    if (fb->folder) {
        mail_refresh_folder (fb->folder, NULL, NULL);
    } else if (fb->uri && fb->get_id == -1) {
        g_object_ref (fb);
        fb->get_id = mail_get_folder (fb->uri, 0, got_folder, fb, mail_thread_new);
    }
}

void
folder_browser_set_folder (FolderBrowser *fb, CamelFolder *folder, const char *uri)
{
    g_return_if_fail (IS_FOLDER_BROWSER (fb));
    g_return_if_fail (CAMEL_IS_FOLDER (folder));
    
    if (fb->get_id != -1) {
        /* FIXME: cancel the get_folder request? */
    }
    
    g_free (fb->uri);
    fb->uri = g_strdup (uri);
    
    g_object_ref (fb);
    got_folder (NULL, folder, fb);
}

void
folder_browser_set_ui_component (FolderBrowser *fb, BonoboUIComponent *uicomp)
{
    g_return_if_fail (IS_FOLDER_BROWSER (fb));
    
    if (fb->sensitize_timeout_id) {
        g_source_remove (fb->sensitize_timeout_id);
        fb->sensitize_timeout_id = 0;
    }
    
    if (fb->sensitise_state) {
        g_hash_table_destroy (fb->sensitise_state);
        fb->sensitise_state = NULL;
    }
    
    if (fb->uicomp)
        bonobo_object_unref (BONOBO_OBJECT (fb->uicomp));
    
    if (uicomp)
        bonobo_object_ref (BONOBO_OBJECT (uicomp));
    
    fb->uicomp = uicomp;
}

void
folder_browser_set_shell_view(FolderBrowser *fb, GNOME_Evolution_ShellView shell_view)
{
    CORBA_Environment ev;
    
    CORBA_exception_init(&ev);
    if (fb->shell_view != CORBA_OBJECT_NIL)
        CORBA_Object_release (fb->shell_view, &ev);
    CORBA_exception_free (&ev);
    
    fb->shell_view = CORBA_Object_duplicate (shell_view, &ev);
    CORBA_exception_free (&ev);
    
    /* small hack, at this point we've just been activated */
    if (fb->shell_view != CORBA_OBJECT_NIL)
        update_status_bar (fb);
}

extern CamelFolder *drafts_folder, *sent_folder, *outbox_folder;

/**
 * folder_browser_is_drafts:
 * @fb: a FolderBrowser
 *
 * Return value: %TRUE if @fb refers to /local/Drafts or any other
 * configured Drafts folder.
 **/
gboolean
folder_browser_is_drafts (FolderBrowser *fb)
{
    gboolean is_drafts = FALSE;
    EAccountList *accounts;
    EAccount *account;
    EIterator *iter;
    
    g_return_val_if_fail (IS_FOLDER_BROWSER (fb), FALSE);
    
    if (fb->uri == NULL || fb->folder == NULL)
        return FALSE;
    
    if (fb->folder == drafts_folder)
        return TRUE;
    
    accounts = mail_config_get_accounts ();
    iter = e_list_get_iterator ((EList *) accounts);
    while (e_iterator_is_valid (iter)) {
        account = (EAccount *) e_iterator_get (iter);
        if (account->drafts_folder_uri &&
            camel_store_uri_cmp (fb->folder->parent_store, account->drafts_folder_uri, fb->uri)) {
            is_drafts = TRUE;
            break;
        }
        
        e_iterator_next (iter);
    }
    
    g_object_unref (iter);
    
    return is_drafts;
}

/**
 * folder_browser_is_sent:
 * @fb: a FolderBrowser
 *
 * Return value: %TRUE if @fb refers to /local/Sent or any other
 * configured Sent folder.
 **/
gboolean
folder_browser_is_sent (FolderBrowser *fb)
{
    gboolean is_sent = FALSE;
    EAccountList *accounts;
    EAccount *account;
    EIterator *iter;
    
    g_return_val_if_fail (IS_FOLDER_BROWSER (fb), FALSE);
    
    if (fb->uri == NULL || fb->folder == NULL)
        return FALSE;
    
    if (fb->folder == sent_folder)
        return TRUE;
    
    accounts = mail_config_get_accounts ();
    iter = e_list_get_iterator ((EList *) accounts);
    while (e_iterator_is_valid (iter)) {
        account = (EAccount *) e_iterator_get (iter);
        if (account->sent_folder_uri &&
            camel_store_uri_cmp (fb->folder->parent_store, account->sent_folder_uri, fb->uri)) {
            is_sent = TRUE;
            break;
        }
        
        e_iterator_next (iter);
    }
    
    g_object_unref (iter);
    
    return is_sent;
}

/**
 * folder_browser_is_outbox:
 * @fb: a FolderBrowser
 *
 * Return value: %TRUE if @fb refers to /local/Outbox or any other
 * configured Outbox folder.
 **/
gboolean
folder_browser_is_outbox (FolderBrowser *fb)
{
    /* There can be only one. */
    return fb->folder == outbox_folder;
}

static int
save_cursor_pos (FolderBrowser *fb)
{
    ETreePath node;
    GtkAdjustment *adj;
    int row, y, height, paned_size;
    GConfClient *gconf;
    
    node = e_tree_get_cursor (fb->message_list->tree);
    if (!node)
        return -1;
    
    row = e_tree_row_of_node (fb->message_list->tree, node);
    
    if (row == -1)
        return 0;
    
    e_tree_get_cell_geometry (fb->message_list->tree, row, 0,
                  NULL, &y, NULL, &height);
    
    gconf = gconf_client_get_default ();
    paned_size = gconf_client_get_int (gconf, "/apps/evolution/mail/display/paned_size", NULL);
    
    adj = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (fb->message_list));
    y += adj->value - ((paned_size - height) / 2);
    
    return y;
}

static void
set_cursor_pos (FolderBrowser *fb, int y)
{
    GtkAdjustment *adj;
    
    if (y == -1)
        return;
    
    adj = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (fb->message_list));
    gtk_adjustment_set_value (adj, (gfloat)y);
}

static gboolean do_message_selected(FolderBrowser *fb);

void
folder_browser_set_message_preview (FolderBrowser *folder_browser, gboolean show_preview)
{
    GConfClient *gconf;
    int paned_size, y;
    
    if (folder_browser->preview_shown == show_preview
        || folder_browser->message_list == NULL)
        return;
    
    folder_browser->preview_shown = show_preview;
    
    gconf = gconf_client_get_default ();
    paned_size = gconf_client_get_int (gconf, "/apps/evolution/mail/display/paned_size", NULL);
    
    if (show_preview) {
        y = save_cursor_pos (folder_browser);
        gtk_paned_set_position (GTK_PANED (folder_browser->vpaned), paned_size);
        gtk_widget_show (GTK_WIDGET (folder_browser->mail_display));
        do_message_selected (folder_browser);
        set_cursor_pos (folder_browser, y);
    } else {
        gtk_widget_hide (GTK_WIDGET (folder_browser->mail_display));
        mail_display_set_message (folder_browser->mail_display, NULL, NULL, NULL);
        folder_browser_ui_message_loaded (folder_browser);
    }
}

enum {
    ESB_SAVE,
};

static ESearchBarItem folder_browser_search_menu_items[] = {
    E_FILTERBAR_ADVANCED,
    { NULL, 0, NULL },
    E_FILTERBAR_SAVE,
    E_FILTERBAR_EDIT,
    { NULL, 0, NULL },
    { N_("Create _Virtual Folder From Search..."), ESB_SAVE, NULL  },
    { NULL, -1, NULL }
};

static void
folder_browser_search_menu_activated (ESearchBar *esb, int id, FolderBrowser *fb)
{
    EFilterBar *efb = (EFilterBar *)esb;
    
    d(printf("menu activated\n"));
    
    switch (id) {
    case ESB_SAVE:
        d(printf("Save vfolder\n"));
        if (efb->current_query) {
            FilterRule *rule = vfolder_clone_rule(efb->current_query);          
            char *name, *text;
            
            text = e_search_bar_get_text(esb);
            name = g_strdup_printf("%s %s", rule->name, (text&&text[0])?text:"''");
            g_free (text);
            filter_rule_set_name(rule, name);
            g_free (name);
            
            filter_rule_set_source(rule, FILTER_SOURCE_INCOMING);
            vfolder_rule_add_source((VfolderRule *)rule, fb->uri);
            vfolder_gui_add_rule((VfolderRule *)rule);
        }
        break;
    }
}

static void
folder_browser_config_search (EFilterBar *efb, FilterRule *rule, int id, const char *query, void *data)
{
    FolderBrowser *fb = FOLDER_BROWSER (data);
    ESearchingTokenizer *st;
    GList *partl;
    struct _camel_search_words *words;
    int i;
    
    st = E_SEARCHING_TOKENIZER (fb->mail_display->html->engine->ht); 
    
    e_searching_tokenizer_set_secondary_search_string (st, NULL);
    
    /* we scan the parts of a rule, and set all the types we know about to the query string */
    partl = rule->parts;
    while (partl) {
        FilterPart *part = partl->data;
        
        if (!strcmp(part->name, "subject")) {
            FilterInput *input = (FilterInput *)filter_part_find_element(part, "subject");
            if (input)
                filter_input_set_value(input, query);
        } else if (!strcmp(part->name, "body")) {
            FilterInput *input = (FilterInput *)filter_part_find_element(part, "word");
            if (input)
                filter_input_set_value(input, query);
            
            words = camel_search_words_split(query);
            for (i=0;i<words->len;i++)
                e_searching_tokenizer_add_secondary_search_string (st, words->words[i]->word);
            camel_search_words_free (words);
        } else if(!strcmp(part->name, "sender")) {
            FilterInput *input = (FilterInput *)filter_part_find_element(part, "sender");
            if (input)
                filter_input_set_value(input, query);
        } else if(!strcmp(part->name, "to")) {
            FilterInput *input = (FilterInput *)filter_part_find_element(part, "recipient");
            if (input)
                filter_input_set_value(input, query);
        }
        
        partl = partl->next;
    }
    
    d(printf("configuring search for search string '%s', rule is '%s'\n", query, rule->name));
    
    mail_display_redisplay (fb->mail_display, FALSE);
}

static void
folder_browser_search_do_search (ESearchBar *esb, FolderBrowser *fb)
{
    char *search_word;
    
    if (fb->message_list == NULL)
        return;
    
    d(printf("do search\n"));
    
    g_object_get (esb, "query", &search_word, NULL);
    
    message_list_set_search (fb->message_list, search_word);
    
    d(printf("query is %s\n", search_word));
    g_free (search_word);
}

static void
folder_browser_query_changed (ESearchBar *esb, FolderBrowser *fb)
{
    int id;
    
    id = e_search_bar_get_item_id (esb);
    if (id == E_FILTERBAR_ADVANCED_ID)
        folder_browser_search_do_search (esb, fb);
}

void
folder_browser_toggle_preview (BonoboUIComponent           *component,
                   const char                  *path,
                   Bonobo_UIComponent_EventType type,
                   const char                  *state,
                   gpointer                     user_data)
{
    FolderBrowser *fb = user_data;
    gboolean bstate;

    if (type != Bonobo_UIComponent_STATE_CHANGED || fb->message_list == NULL)
        return;
    
    bstate = atoi(state);
    e_meta_set_bool(fb->meta, "show_preview", bstate);
    gconf_client_set_bool (gconf_client_get_default(), "/apps/evolution/mail/display/show_preview", bstate, NULL);
    folder_browser_set_message_preview (fb, bstate);
}

void
folder_browser_toggle_threads (BonoboUIComponent           *component,
                   const char                  *path,
                   Bonobo_UIComponent_EventType type,
                   const char                  *state,
                   gpointer                     user_data)
{
    FolderBrowser *fb = user_data;
    int prev_state;
    gboolean bstate;
    
    if (type != Bonobo_UIComponent_STATE_CHANGED || fb->message_list == NULL)
        return;

    bstate = atoi(state);
    e_meta_set_bool(fb->meta, "thread_list", bstate);
    gconf_client_set_bool (gconf_client_get_default (), "/apps/evolution/mail/display/thread_list", bstate, NULL);
    message_list_set_threaded (fb->message_list, bstate);
    
    prev_state = fb->selection_state;
    fb->selection_state = FB_SELSTATE_UNDEFINED;
    folder_browser_ui_set_selection_state (fb, prev_state);
}

void
folder_browser_toggle_hide_deleted (BonoboUIComponent           *component,
                    const char                  *path,
                    Bonobo_UIComponent_EventType type,
                    const char                  *state,
                    gpointer                     user_data)
{
    FolderBrowser *fb = user_data;
    GConfClient *gconf;
    
    if (type != Bonobo_UIComponent_STATE_CHANGED || fb->message_list == NULL)
        return;
    
    gconf = gconf_client_get_default ();
    gconf_client_set_bool (gconf, "/apps/evolution/mail/display/show_deleted",
                   !atoi (state), NULL);
    
    if (!(fb->folder && (fb->folder->folder_flags & CAMEL_FOLDER_IS_TRASH)))
        message_list_set_hidedeleted (fb->message_list, atoi (state));
}

void
folder_browser_set_message_display_style (BonoboUIComponent           *component,
                      const char                  *path,
                      Bonobo_UIComponent_EventType type,
                      const char                  *state,
                      gpointer                     user_data)
{
    extern char *message_display_styles[];
    FolderBrowser *fb = user_data;
    GConfClient *gconf;
    int i;
    
    if (type != Bonobo_UIComponent_STATE_CHANGED
        || atoi (state) == 0
        || fb->message_list == NULL)
        return;
    
    gconf = gconf_client_get_default ();
    
    printf ("message display style: %s\n", path);
    
    for (i = 0; i < MAIL_CONFIG_DISPLAY_MAX; i++) {
        if (strstr (message_display_styles[i], path)) {
            fb->mail_display->display_style = i;
            mail_display_redisplay (fb->mail_display, TRUE);
            
            if (fb->pref_master)
                gconf_client_set_int (gconf, "/apps/evolution/mail/display/message_style", i, NULL);
            return;
        }
    }
}

void
folder_browser_charset_changed (BonoboUIComponent           *component,
                const char                  *path,
                Bonobo_UIComponent_EventType type,
                const char                  *state,
                gpointer                     user_data)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    const char *charset;
    
    if (type != Bonobo_UIComponent_STATE_CHANGED
        || fb->message_list == NULL)
        return;
    
    if (atoi (state)) {
        /* Charset menu names are "Charset-%s" where %s is the charset name */
        charset = path + strlen ("Charset-");
        if (!strcmp (charset, FB_DEFAULT_CHARSET))
            charset = NULL;
        
        mail_display_set_charset (fb->mail_display, charset);
    }
}

static void vfolder_type_uid(CamelFolder *folder, const char *uid, const char *uri, int type);

static void
vfolder_type_current(FolderBrowser *fb, int type)
{
    GPtrArray *uids;
    int i;
    
    /* get uid */
    uids = g_ptr_array_new ();
    message_list_foreach (fb->message_list, enumerate_msg, uids);
    
    if (uids->len == 1)
        vfolder_type_uid (fb->folder, (char *)uids->pdata[0], fb->uri, type);
    
    for (i = 0; i < uids->len; i++)
        g_free (uids->pdata[i]);
    g_ptr_array_free (uids, TRUE);
}

/* external api to vfolder/filter on X, based on current message */
void vfolder_subject (GtkWidget *w, FolderBrowser *fb) { vfolder_type_current(fb, AUTO_SUBJECT); }
void vfolder_sender (GtkWidget *w, FolderBrowser *fb) { vfolder_type_current(fb, AUTO_FROM); }
void vfolder_recipient (GtkWidget *w, FolderBrowser *fb) { vfolder_type_current(fb, AUTO_TO); }
void vfolder_mlist (GtkWidget *w, FolderBrowser *fb) { vfolder_type_current(fb, AUTO_MLIST); }

static void filter_type_uid (CamelFolder *folder, const char *uid, const char *source, int type);

static void
filter_type_current (FolderBrowser *fb, int type)
{
    GPtrArray *uids;
    int i;
    const char *source;
    
    if (folder_browser_is_sent (fb) || folder_browser_is_outbox (fb))
        source = FILTER_SOURCE_OUTGOING;
    else
        source = FILTER_SOURCE_INCOMING;
    
    /* get uid */
    uids = g_ptr_array_new ();
    message_list_foreach (fb->message_list, enumerate_msg, uids);
    
    if (uids->len == 1)
        filter_type_uid (fb->folder, (char *)uids->pdata[0], source, type);
    
    for (i = 0; i < uids->len; i++)
        g_free (uids->pdata[i]);
    g_ptr_array_free (uids, TRUE);
}

void filter_subject (GtkWidget *w, FolderBrowser *fb) { filter_type_current (fb, AUTO_SUBJECT); }
void filter_sender (GtkWidget *w, FolderBrowser *fb) { filter_type_current (fb, AUTO_FROM); }
void filter_recipient (GtkWidget *w, FolderBrowser *fb) { filter_type_current (fb, AUTO_TO); }
void filter_mlist (GtkWidget *w, FolderBrowser *fb) { filter_type_current (fb, AUTO_MLIST); }

/* ************************************************************ */

/* popup api to vfolder/filter on X, based on current selection */
struct _filter_data {
    CamelFolder *folder;
    const char *source;
    char *uid;
    int type;
    char *uri;
    char *mlist;
};

static void
filter_data_free (struct _filter_data *fdata)
{
    g_free (fdata->uid);
    g_free (fdata->uri);
    if (fdata->folder)
        camel_object_unref (fdata->folder);
    g_free (fdata->mlist);
    g_free (fdata);
}

static void
vfolder_type_got_message(CamelFolder *folder, const char *uid, CamelMimeMessage *msg, void *d)
{
    struct _filter_data *data = d;
    
    if (msg)
        vfolder_gui_add_from_message(msg, data->type, data->uri);
    
    filter_data_free (data);
}

static void
vfolder_type_uid(CamelFolder *folder, const char *uid, const char *uri, int type)
{
    struct _filter_data *data;
    
    data = g_malloc0(sizeof(*data));
    data->type = type;
    data->uri = g_strdup(uri);
    mail_get_message(folder, uid, vfolder_type_got_message, data, mail_thread_new);
}

static void vfolder_subject_uid (GtkWidget *w, struct _filter_data *fdata)  { vfolder_type_uid(fdata->folder, fdata->uid, fdata->uri, AUTO_SUBJECT); }
static void vfolder_sender_uid(GtkWidget *w, struct _filter_data *fdata)    { vfolder_type_uid(fdata->folder, fdata->uid, fdata->uri, AUTO_FROM); }
static void vfolder_recipient_uid(GtkWidget *w, struct _filter_data *fdata) { vfolder_type_uid(fdata->folder, fdata->uid, fdata->uri, AUTO_TO); }
static void vfolder_mlist_uid(GtkWidget *w, struct _filter_data *fdata)     { vfolder_type_uid(fdata->folder, fdata->uid, fdata->uri, AUTO_MLIST); }

static void
filter_type_got_message(CamelFolder *folder, const char *uid, CamelMimeMessage *msg, void *d)
{
    struct _filter_data *data = d;
    
    if (msg)
        filter_gui_add_from_message(msg, data->source, data->type);
    
    filter_data_free (data);
}

static void
filter_type_uid(CamelFolder *folder, const char *uid, const char *source, int type)
{
    struct _filter_data *data;
    
    data = g_malloc0(sizeof(*data));
    data->type = type;
    data->source = source;
    mail_get_message(folder, uid, filter_type_got_message, data, mail_thread_new);
}

static void filter_subject_uid (GtkWidget *w, struct _filter_data *fdata)   { filter_type_uid(fdata->folder, fdata->uid, fdata->source, AUTO_SUBJECT); }
static void filter_sender_uid(GtkWidget *w, struct _filter_data *fdata)     { filter_type_uid(fdata->folder, fdata->uid, fdata->source, AUTO_FROM); }
static void filter_recipient_uid(GtkWidget *w, struct _filter_data *fdata)  { filter_type_uid(fdata->folder, fdata->uid, fdata->source, AUTO_TO); }
static void filter_mlist_uid(GtkWidget *w, struct _filter_data *fdata)      { filter_type_uid(fdata->folder, fdata->uid, fdata->source, AUTO_MLIST); }

void
hide_none(GtkWidget *w, FolderBrowser *fb)
{
    message_list_hide_clear (fb->message_list);
}

void
hide_selected(GtkWidget *w, FolderBrowser *fb)
{
    GPtrArray *uids;
    int i;

    uids = g_ptr_array_new ();
    message_list_foreach (fb->message_list, enumerate_msg, uids);
    message_list_hide_uids (fb->message_list, uids);
    for (i = 0; i < uids->len; i++)
        g_free (uids->pdata[i]);
    g_ptr_array_free (uids, TRUE);
}

void
hide_deleted(GtkWidget *w, FolderBrowser *fb)
{
    MessageList *ml = fb->message_list;
    
    message_list_hide_add(ml, "(match-all (system-flag \"deleted\"))", ML_HIDE_SAME, ML_HIDE_SAME);
}

void
hide_read(GtkWidget *w, FolderBrowser *fb)
{
    MessageList *ml = fb->message_list;
    
    message_list_hide_add(ml, "(match-all (system-flag \"seen\"))", ML_HIDE_SAME, ML_HIDE_SAME);
}

/* dum de dum, about the 3rd copy of this function throughout the mailer/camel */
static const char *
strip_re(const char *subject)
{
    const unsigned char *s, *p;
    
    s = (unsigned char *) subject;
    
    while (*s) {
        while(isspace (*s))
            s++;
        if (s[0] == 0)
            break;
        if ((s[0] == 'r' || s[0] == 'R')
            && (s[1] == 'e' || s[1] == 'E')) {
            p = s+2;
            while (isdigit(*p) || (ispunct(*p) && (*p != ':')))
                p++;
            if (*p == ':') {
                s = p + 1;
            } else
                break;
        } else
            break;
    }
    return (char *) s;
}

void
hide_subject(GtkWidget *w, FolderBrowser *fb)
{
    const char *subject;
    GString *expr;
    
    if (fb->mail_display->current_message) {
        subject = camel_mime_message_get_subject(fb->mail_display->current_message);
        if (subject) {
            subject = strip_re(subject);
            if (subject && subject[0]) {
                expr = g_string_new ("(match-all (header-contains \"subject\" ");
                e_sexp_encode_string (expr, subject);
                g_string_append (expr, "))");
                message_list_hide_add (fb->message_list, expr->str, ML_HIDE_SAME, ML_HIDE_SAME);
                g_string_free (expr, TRUE);
                return;
            }
        }
    }
}

void
hide_sender (GtkWidget *w, FolderBrowser *fb)
{
    const CamelInternetAddress *from;
    const char *real, *addr;
    GString *expr;
    
    if (fb->mail_display->current_message) {
        from = camel_mime_message_get_from (fb->mail_display->current_message);
        if (camel_internet_address_get (from, 0, &real, &addr)) {
            expr = g_string_new ("(match-all (header-contains \"from\" ");
            e_sexp_encode_string (expr, addr);
            g_string_append (expr, "))");
            message_list_hide_add (fb->message_list, expr->str, ML_HIDE_SAME, ML_HIDE_SAME);
            g_string_free (expr, TRUE);
            return;
        }
    }
}

struct _label_data {
    FolderBrowser *fb;
    const char *label;
};

static void
set_msg_label (GtkWidget *widget, gpointer user_data)
{
    struct _label_data *data = user_data;
    GPtrArray *uids;
    int i;
    
    uids = g_ptr_array_new ();
    message_list_foreach (data->fb->message_list, enumerate_msg, uids);
    for (i = 0; i < uids->len; i++)
        camel_folder_set_message_user_tag (data->fb->folder, uids->pdata[i], "label", data->label);
    g_ptr_array_free (uids, TRUE);
}

static void
label_closures_free (GPtrArray *closures)
{
    struct _label_data *data;
    int i;
    
    for (i = 0; i < closures->len; i++) {
        data = closures->pdata[i];
        g_object_unref (data->fb);
        g_free (data);
    }
    g_ptr_array_free (closures, TRUE);
}

static void
mark_as_seen_cb (GtkWidget *widget, void *user_data)
{
    mark_as_seen (NULL, user_data, NULL);
}

static void
mark_as_unseen_cb (GtkWidget *widget, void *user_data)
{
    mark_as_unseen (NULL, user_data, NULL);
}

static void
mark_as_important_cb (GtkWidget *widget, void *user_data)
{
    mark_as_important (NULL, user_data, NULL);
}

static void
mark_as_unimportant_cb (GtkWidget *widget, void *user_data)
{
    mark_as_unimportant (NULL, user_data, NULL);
}

enum {
    SELECTION_SET              = 1<<1,
    CAN_MARK_READ              = 1<<2,
    CAN_MARK_UNREAD            = 1<<3,
    CAN_DELETE                 = 1<<4,
    CAN_UNDELETE               = 1<<5,
    IS_MAILING_LIST            = 1<<6,
    CAN_RESEND                 = 1<<7,
    CAN_MARK_IMPORTANT         = 1<<8,
    CAN_MARK_UNIMPORTANT       = 1<<9,
    CAN_FLAG_FOR_FOLLOWUP      = 1<<10,
    CAN_FLAG_COMPLETED         = 1<<11,
    CAN_CLEAR_FLAG             = 1<<12,
    CAN_ADD_SENDER             = 1<<13
};

#define MLIST_VFOLDER (3)
#define MLIST_FILTER (8)

static EPopupMenu filter_menu[] = {
    E_POPUP_ITEM_CC (N_("VFolder on _Subject"),        G_CALLBACK (vfolder_subject_uid),   NULL, SELECTION_SET),
    E_POPUP_ITEM_CC (N_("VFolder on Se_nder"),         G_CALLBACK (vfolder_sender_uid),    NULL, SELECTION_SET),
    E_POPUP_ITEM_CC (N_("VFolder on _Recipients"),     G_CALLBACK (vfolder_recipient_uid), NULL, SELECTION_SET),
    E_POPUP_ITEM_CC (N_("VFolder on Mailing _List"),   G_CALLBACK (vfolder_mlist_uid),     NULL, SELECTION_SET | IS_MAILING_LIST),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_ITEM_CC (N_("Filter on Sub_ject"),         G_CALLBACK (filter_subject_uid),    NULL, SELECTION_SET),
    E_POPUP_ITEM_CC (N_("Filter on Sen_der"),          G_CALLBACK (filter_sender_uid),     NULL, SELECTION_SET),
    E_POPUP_ITEM_CC (N_("Filter on Re_cipients"),      G_CALLBACK (filter_recipient_uid),  NULL, SELECTION_SET),
    E_POPUP_ITEM_CC (N_("Filter on _Mailing List"),    G_CALLBACK (filter_mlist_uid),      NULL, SELECTION_SET | IS_MAILING_LIST),
    
    E_POPUP_TERMINATOR
};

static EPopupMenu label_menu[] = {
    E_POPUP_PIXMAP_WIDGET_ITEM_CC (N_("None"), NULL, G_CALLBACK (set_msg_label), NULL, 0),
    E_POPUP_SEPARATOR,
    E_POPUP_PIXMAP_WIDGET_ITEM_CC (NULL, NULL, G_CALLBACK (set_msg_label), NULL, 0),
    E_POPUP_PIXMAP_WIDGET_ITEM_CC (NULL, NULL, G_CALLBACK (set_msg_label), NULL, 0),
    E_POPUP_PIXMAP_WIDGET_ITEM_CC (NULL, NULL, G_CALLBACK (set_msg_label), NULL, 0),
    E_POPUP_PIXMAP_WIDGET_ITEM_CC (NULL, NULL, G_CALLBACK (set_msg_label), NULL, 0),
    E_POPUP_PIXMAP_WIDGET_ITEM_CC (NULL, NULL, G_CALLBACK (set_msg_label), NULL, 0),
    E_POPUP_TERMINATOR
};

static EPopupMenu context_menu[] = {
    E_POPUP_ITEM (N_("_Open"),                    G_CALLBACK (open_msg),          0),
    E_POPUP_ITEM (N_("_Edit as New Message..."),  G_CALLBACK (resend_msg),        CAN_RESEND),
    E_POPUP_ITEM (N_("_Save As..."),              G_CALLBACK (save_msg),          0),
    E_POPUP_ITEM (N_("_Print"),                   G_CALLBACK (print_msg),         0),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_ITEM (N_("_Reply to Sender"),         G_CALLBACK (reply_to_sender),   0),
    E_POPUP_ITEM (N_("Reply to _List"),           G_CALLBACK (reply_to_list),     0),
    E_POPUP_ITEM (N_("Reply to _All"),            G_CALLBACK (reply_to_all),      0),
    E_POPUP_ITEM (N_("_Forward"),                 G_CALLBACK (forward),           0),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_ITEM (N_("Follo_w Up..."),            G_CALLBACK (flag_for_followup),       CAN_FLAG_FOR_FOLLOWUP),
    E_POPUP_ITEM (N_("Fla_g Completed"),          G_CALLBACK (flag_followup_completed), CAN_FLAG_COMPLETED),
    E_POPUP_ITEM (N_("Cl_ear Flag"),              G_CALLBACK (flag_followup_clear),     CAN_CLEAR_FLAG),
    
    /* separator here? */
    
    E_POPUP_ITEM (N_("Mar_k as Read"),            G_CALLBACK (mark_as_seen_cb),        CAN_MARK_READ),
    E_POPUP_ITEM (N_("Mark as _Unread"),          G_CALLBACK (mark_as_unseen_cb),      CAN_MARK_UNREAD),
    E_POPUP_ITEM (N_("Mark as _Important"),       G_CALLBACK (mark_as_important_cb),   CAN_MARK_IMPORTANT),
    E_POPUP_ITEM (N_("_Mark as Unimportant"),     G_CALLBACK (mark_as_unimportant_cb), CAN_MARK_UNIMPORTANT),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_ITEM (N_("_Delete"),                  G_CALLBACK (delete_msg),          CAN_DELETE),
    E_POPUP_ITEM (N_("U_ndelete"),                G_CALLBACK (undelete_msg),        CAN_UNDELETE),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_ITEM (N_("Mo_ve to Folder..."),       G_CALLBACK (move_msg_cb),          0),
    E_POPUP_ITEM (N_("_Copy to Folder..."),       G_CALLBACK (copy_msg_cb),          0),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_SUBMENU (N_("Label"),                 label_menu,                             0),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_ITEM (N_("Add Sender to Address_book"), G_CALLBACK (addrbook_sender), SELECTION_SET | CAN_ADD_SENDER),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_ITEM (N_("Appl_y Filters"),             G_CALLBACK (apply_filters),      0),
    
    E_POPUP_SEPARATOR,
    
    E_POPUP_SUBMENU (N_("Crea_te Rule From Message"), filter_menu,                        SELECTION_SET),
    
    E_POPUP_TERMINATOR
};

/* Note: this must be kept in sync with the context_menu!!! */
static char *context_pixmaps[] = {
    NULL, /* Open */
    NULL, /* Edit */
    "save-as-16.png",
    "print.xpm",
    NULL,
    "reply.xpm",
    NULL, /* Reply to List */
    "reply_to_all.xpm",
    "forward.xpm",
    NULL,
    "flag-for-followup-16.png",
    NULL, /* Flag */
    NULL, /* Clear */
    "mail-read.xpm",
    "mail-new.xpm",
    "priority-high.xpm",
    NULL, /* Mark as Unimportant */
    NULL,
    "evolution-trash-mini.png",
    "undelete_message-16.png",
    NULL,
    "move_message.xpm",
    "copy_16_message.xpm",
    NULL,
    NULL, /* Label */
    NULL,
    NULL, /* Add Sender to Addressbook */
    NULL,
    NULL, /* Apply Filters */
    NULL,
    NULL, /* Create Rule from Message */
};

struct cmpf_data {
    ETree *tree;
    int row, col;
};

static void
context_menu_position_func (GtkMenu *menu, gint *x, gint *y,
                gboolean *push_in, gpointer user_data)
{
    int tx, ty, tw, th;
    struct cmpf_data *closure = user_data;
    
    gdk_window_get_origin (GTK_WIDGET (closure->tree)->window, x, y);
    e_tree_get_cell_geometry (closure->tree, closure->row, closure->col,
                  &tx, &ty, &tw, &th);
    *x += tx + tw / 2;
    *y += ty + th / 2;
}

static void
setup_popup_icons (void)
{
    int i;
    
    for (i = 0; context_menu[i].name; i++) {
        if (context_pixmaps[i]) {
            char *filename;
            
            filename = g_strdup_printf ("%s/%s", EVOLUTION_IMAGES, context_pixmaps[i]);
            context_menu[i].pixmap_widget = gtk_image_new_from_file (filename);
            g_free (filename);
        }
    }
}

/* handle context menu over message-list */
static int
on_right_click (ETree *tree, gint row, ETreePath path, gint col, GdkEvent *event, FolderBrowser *fb)
{
    struct _filter_data *fdata = NULL;
    GPtrArray *uids, *closures;
    CamelMessageInfo *info;
    GSList *labels, *next;
    int enable_mask = 0;
    int hide_mask = 0;
    char *mlist = NULL;
    GtkMenu *menu;
    int i;
    
    if (!folder_browser_is_sent (fb)) {
        enable_mask |= CAN_RESEND;
        hide_mask |= CAN_RESEND;
    } else {
        enable_mask |= CAN_ADD_SENDER;
        hide_mask |= CAN_ADD_SENDER;
    }
    
    if (folder_browser_is_drafts (fb)) {
        enable_mask |= CAN_ADD_SENDER;
        hide_mask |= CAN_ADD_SENDER;
    }
    
    if (fb->folder == outbox_folder) {
        enable_mask |= CAN_ADD_SENDER;
        hide_mask |= CAN_ADD_SENDER;
    }
    
    enable_mask |= SELECTION_SET;
    
    /* get a list of uids */
    uids = g_ptr_array_new ();
    message_list_foreach (fb->message_list, enumerate_msg, uids);
    if (uids->len >= 1) {
        /* gray-out any items we don't need */
        gboolean have_deleted = FALSE;
        gboolean have_undeleted = FALSE;
        gboolean have_seen = FALSE;
        gboolean have_unseen = FALSE;
        gboolean have_important = FALSE;
        gboolean have_unimportant = FALSE;
        gboolean have_flag_for_followup = FALSE;
        gboolean have_flag_completed = FALSE;
        gboolean have_flag_incomplete = FALSE;
        gboolean have_unflagged = FALSE;
        const char *tag;
        
        for (i = 0; i < uids->len; i++) {
            info = camel_folder_get_message_info (fb->folder, uids->pdata[i]);
            if (info == NULL)
                continue;
            
            if (i == 0 && uids->len == 1) {
                const char *mname, *p;
                char c, *o;
                
                /* used by filter/vfolder from X callbacks */
                fdata = g_malloc0(sizeof(*fdata));
                fdata->uid = g_strdup(uids->pdata[i]);
                fdata->uri = g_strdup(fb->uri);
                fdata->folder = fb->folder;
                camel_object_ref((CamelObject *)fdata->folder);
                if (folder_browser_is_sent (fb) || folder_browser_is_outbox (fb))
                    fdata->source = FILTER_SOURCE_OUTGOING;
                else
                    fdata->source = FILTER_SOURCE_INCOMING;
                
                enable_mask &= ~SELECTION_SET;
                mname = camel_message_info_mlist(info);
                if (mname && mname[0]) {
                    fdata->mlist = g_strdup(mname);
                    
                    /* Escape the mailing list name before showing it */
                    mlist = g_alloca ((strlen (mname) * 2) + 1);
                    p = mname;
                    o = mlist;
                    while ((c = *p++)) {
                        if (c == '_')
                            *o++ = '_';
                        *o++ = c;
                    }
                    *o = 0;
                }
            }
            
            if (info->flags & CAMEL_MESSAGE_SEEN)
                have_seen = TRUE;
            else
                have_unseen = TRUE;
            
            if (info->flags & CAMEL_MESSAGE_DELETED)
                have_deleted = TRUE;
            else
                have_undeleted = TRUE;
            
            if (info->flags & CAMEL_MESSAGE_FLAGGED)
                have_important = TRUE;
            else
                have_unimportant = TRUE;
            
            tag = camel_tag_get (&info->user_tags, "follow-up");
            if (tag && *tag) {
                have_flag_for_followup = TRUE;
                tag = camel_tag_get (&info->user_tags, "completed-on");
                if (tag && *tag)
                    have_flag_completed = TRUE;
                else
                    have_flag_incomplete = TRUE;
            } else
                have_unflagged = TRUE;
            
            camel_folder_free_message_info (fb->folder, info);
            
            if (have_seen && have_unseen && have_deleted && have_undeleted)
                break;
        }
        
        if (!have_unseen)
            enable_mask |= CAN_MARK_READ;
        if (!have_seen)
            enable_mask |= CAN_MARK_UNREAD;
        
        if (!have_undeleted)
            enable_mask |= CAN_DELETE;
        if (!have_deleted)
            enable_mask |= CAN_UNDELETE;
        
        if (!have_unimportant)
            enable_mask |= CAN_MARK_IMPORTANT;
        if (!have_important)
            enable_mask |= CAN_MARK_UNIMPORTANT;
        
        if (!have_flag_for_followup)
            enable_mask |= CAN_CLEAR_FLAG;
        if (!have_unflagged)
            enable_mask |= CAN_FLAG_FOR_FOLLOWUP;
        if (!have_flag_incomplete)
            enable_mask |= CAN_FLAG_COMPLETED;
        
        /*
         * Hide items that wont get used.
         */
        if (!(have_unseen && have_seen)) {
            if (have_seen)
                hide_mask |= CAN_MARK_READ;
            else
                hide_mask |= CAN_MARK_UNREAD;
        }
        
        if (!(have_undeleted && have_deleted)) {
            if (have_deleted)
                hide_mask |= CAN_DELETE;
            else
                hide_mask |= CAN_UNDELETE;
        }
        
        if (!(have_important && have_unimportant)) {
            if (have_important)
                hide_mask |= CAN_MARK_IMPORTANT;
            else
                hide_mask |= CAN_MARK_UNIMPORTANT;
        }
        
        if (!have_flag_for_followup)
            hide_mask |= CAN_CLEAR_FLAG;
        if (!have_unflagged)
            hide_mask |= CAN_FLAG_FOR_FOLLOWUP;
        if (!have_flag_incomplete)
            hide_mask |= CAN_FLAG_COMPLETED;
    }
    
    /* free uids */
    for (i = 0; i < uids->len; i++)
        g_free (uids->pdata[i]);
    g_ptr_array_free (uids, TRUE);
    
    /* generate the "Filter on Mailing List" menu item name */
    if (mlist == NULL) {
        enable_mask |= IS_MAILING_LIST;
        filter_menu[MLIST_FILTER].name = g_strdup (_("Filter on _Mailing List"));
        filter_menu[MLIST_VFOLDER].name = g_strdup (_("VFolder on M_ailing List"));
    } else {
        filter_menu[MLIST_FILTER].name = g_strdup_printf (_("Filter on _Mailing List (%s)"), mlist);
        filter_menu[MLIST_VFOLDER].name = g_strdup_printf (_("VFolder on M_ailing List (%s)"), mlist);
    }
    
    /* create the label/colour menu */
    closures = g_ptr_array_new ();
    label_menu[0].closure = g_new (struct _label_data, 1);
    g_ptr_array_add (closures, label_menu[0].closure);
    g_object_ref (fb);
    ((struct _label_data *) label_menu[0].closure)->fb = fb;
    ((struct _label_data *) label_menu[0].closure)->label = NULL;
    
    i = 0;
    labels = mail_config_get_labels ();
    while (labels != NULL && i < 5) {
        struct _label_data *closure;
        MailConfigLabel *label;
        GdkPixmap *pixmap;
        GdkColormap *map;
        GdkColor colour;
        GdkGC *gc;
        
        label = labels->data;
        gdk_color_parse (label->colour, &colour);
        map = gdk_colormap_get_system ();
        gdk_color_alloc (map, &colour);
        
        pixmap = gdk_pixmap_new (GTK_WIDGET (fb)->window, 16, 16, -1);
        gc = gdk_gc_new (GTK_WIDGET (fb)->window);
        gdk_gc_set_foreground (gc, &colour);
        gdk_draw_rectangle (pixmap, gc, TRUE, 0, 0, 16, 16);
        gdk_gc_unref (gc);
        
        closure = g_new (struct _label_data, 1);
        g_object_ref (fb);
        closure->fb = fb;
        closure->label = label->name;
        
        g_ptr_array_add (closures, closure);
        
        label_menu[i + 2].name = label->name;
        label_menu[i + 2].pixmap_widget = gtk_image_new_from_pixmap (pixmap, NULL);
        label_menu[i + 2].closure = closure;
        
        i++;
        labels = labels->next;
    }
    
    setup_popup_icons ();
    
    for (i = 0; i < sizeof (filter_menu) / sizeof (filter_menu[0]); i++)
        filter_menu[i].closure = fdata;
    
    menu = e_popup_menu_create (context_menu, enable_mask, hide_mask, fb);
    e_auto_kill_popup_menu_on_selection_done (menu);
    
    g_object_set_data_full ((GObject *) menu, "label_closures", closures, (GtkDestroyNotify) label_closures_free);
    
    if (fdata)
        g_object_set_data_full ((GObject *) menu, "filter_data", fdata, (GtkDestroyNotify) filter_data_free);
    
    if (event->type == GDK_KEY_PRESS) {
        struct cmpf_data closure;
        
        closure.tree = tree;
        closure.row = row;
        closure.col = col;
        gtk_menu_popup (menu, NULL, NULL, context_menu_position_func,
                &closure, 0, event->key.time);
    } else {
        gtk_menu_popup (menu, NULL, NULL, NULL, NULL,
                event->button.button, event->button.time);
    }
    
    g_free (filter_menu[MLIST_FILTER].name);
    g_free (filter_menu[MLIST_VFOLDER].name);
    
    return TRUE;
}

static int
html_button_press_event (GtkWidget *widget, GdkEventButton *event, gpointer data)
{
    FolderBrowser *fb = data;
    HTMLEngine *engine;
    HTMLPoint *point;
    ETreePath *path;
    int row;
    
    if (event->type != GDK_BUTTON_PRESS || event->button != 3)
        return FALSE;
    
    engine = GTK_HTML (widget)->engine;
    point = html_engine_get_point_at (engine, event->x + engine->x_offset,
                      event->y + engine->y_offset, FALSE);
    
    if (point) {
        /* don't popup a menu if the mouse is hovering over a
                   url or a source image because those situations are
                   handled in mail-display.c's button_press_event
                   callback */
        const char *src, *url;
        
        url = html_object_get_url (point->object);
        src = html_object_get_src (point->object);
        
        if (url || src) {
            html_point_destroy (point);
            return FALSE;
        }
        
        html_point_destroy (point);
    }   
    
    path = e_tree_get_cursor (fb->message_list->tree);
    row = e_tree_row_of_node (fb->message_list->tree, path);
    
    on_right_click (fb->message_list->tree, row, path, 2,
            (GdkEvent *) event, fb);
    
    return TRUE;
}

static int
on_key_press (GtkWidget *widget, GdkEventKey *key, gpointer data)
{
    FolderBrowser *fb = data;
    ETreePath *path;
    int row;
    
    if (key->state & GDK_CONTROL_MASK)
        return FALSE;
    
    path = e_tree_get_cursor (fb->message_list->tree);
    row = e_tree_row_of_node (fb->message_list->tree, path);
    
    switch (key->keyval) {
    case GDK_Delete:
    case GDK_KP_Delete:
        delete_msg (NULL, fb);
        return TRUE;
        
    case GDK_Menu:
        on_right_click (fb->message_list->tree, row, path, 2,
                (GdkEvent *)key, fb);
        return TRUE;
    case '!':
        toggle_as_important (NULL, fb, NULL);
        return TRUE;
    }
    
    return FALSE;
}

static int
etree_key (ETree *tree, int row, ETreePath path, int col, GdkEvent *ev, FolderBrowser *fb)
{
    GtkAdjustment *vadj;
    gfloat page_size;
    
    if ((ev->key.state & GDK_CONTROL_MASK) != 0)
        return FALSE;
    
    vadj = gtk_scrolled_window_get_vadjustment (fb->mail_display->scroll);
    page_size = vadj->page_size - vadj->step_increment;
    
    switch (ev->key.keyval) {
    case GDK_space:
        /* Work around Ximian 4939 */
        if (vadj->upper < vadj->page_size)
            break;
        if (vadj->value < vadj->upper - vadj->page_size - page_size)
            vadj->value += page_size;
        else
            vadj->value = vadj->upper - vadj->page_size;
        gtk_adjustment_value_changed (vadj);
        break;
    case GDK_BackSpace:
        if (vadj->value > vadj->lower + page_size)
            vadj->value -= page_size;
        else
            vadj->value = vadj->lower;
        gtk_adjustment_value_changed (vadj);
        break;
    case GDK_Return:
    case GDK_KP_Enter:
    case GDK_ISO_Enter:
            open_msg (NULL, fb);
        break;
    default:
        return on_key_press ((GtkWidget *)tree, (GdkEventKey *)ev, fb);
    }
    
    return TRUE;
}

static void
on_double_click (ETree *tree, gint row, ETreePath path, gint col, GdkEvent *event, FolderBrowser *fb)
{
    /* Ignore double-clicks on columns where single-click doesn't
     * just select.
     */
    if (MESSAGE_LIST_COLUMN_IS_ACTIVE (col))
        return;
    
    open_msg (NULL, fb);
}

static void
on_selection_changed (GtkObject *obj, gpointer user_data)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    FolderBrowserSelectionState state;
    
    /* we can get this signal at strange times...
     * if no uicomp, don't even bother */
    
    if (fb->uicomp == NULL)
        return;
    
    switch (e_selection_model_selected_count (E_SELECTION_MODEL (obj))) {
    case 0:
        state = FB_SELSTATE_NONE;
        break;
    case 1:
        state = FB_SELSTATE_SINGLE;
        break;
    default:
        state = FB_SELSTATE_MULTIPLE;
        break;
    }
    
    folder_browser_ui_set_selection_state (fb, state);
    
    update_status_bar_idle (fb);
}


static void
on_cursor_activated (ETree *tree, int row, ETreePath path, gpointer user_data)
{
    on_selection_changed ((GtkObject *)tree, user_data);
}

static gboolean
fb_resize_cb (GtkWidget *w, GdkEventButton *e, FolderBrowser *fb)
{
    GConfClient *gconf;

    gconf = gconf_client_get_default ();

    if (GTK_WIDGET_REALIZED (w) && fb->preview_shown)
        gconf_client_set_int (gconf, "/apps/evolution/mail/display/paned_size", gtk_paned_get_position (GTK_PANED (w)), NULL);

    return FALSE;
}

static void
folder_browser_gui_init (FolderBrowser *fb)
{
    extern RuleContext *search_context;
    ESelectionModel *esm;
    GConfClient *gconf;
    int paned_size;
    
    /* The panned container */
    fb->vpaned = gtk_vpaned_new ();
    gtk_widget_show (fb->vpaned);
    
    gtk_table_attach (GTK_TABLE (fb), fb->vpaned,
              0, 1, 1, 3,
              GTK_FILL | GTK_EXPAND,
              GTK_FILL | GTK_EXPAND,
              0, 0);
    
    /* quick-search bar */
    if (search_context) {
        const char *systemrules = g_object_get_data (G_OBJECT (search_context), "system");
        const char *userrules = g_object_get_data (G_OBJECT (search_context), "user");
        
        fb->search = e_filter_bar_new (search_context, systemrules, userrules,
                           folder_browser_config_search, fb);
        e_search_bar_set_menu ((ESearchBar *)fb->search, folder_browser_search_menu_items);
    }
    
    gtk_widget_show (GTK_WIDGET (fb->search));
    
    g_signal_connect (fb->search, "menu_activated",
              G_CALLBACK (folder_browser_search_menu_activated), fb);
    g_signal_connect (fb->search, "search_activated",
              G_CALLBACK (folder_browser_search_do_search), fb);
    g_signal_connect (fb->search, "query_changed",
              G_CALLBACK (folder_browser_query_changed), fb);
    
    gtk_table_attach (GTK_TABLE (fb), GTK_WIDGET (fb->search),
              0, 1, 0, 1,
              GTK_FILL | GTK_EXPAND,
              0,
              0, 0);
    
    esm = e_tree_get_selection_model (E_TREE (fb->message_list->tree));
    g_signal_connect (esm, "selection_changed", G_CALLBACK (on_selection_changed), fb);
    g_signal_connect (esm, "cursor_activated", G_CALLBACK (on_cursor_activated), fb);
    fb->selection_state = FB_SELSTATE_NONE; /* default to none */
    
    gtk_paned_add1 (GTK_PANED (fb->vpaned), GTK_WIDGET (fb->message_list));
    gtk_widget_show (GTK_WIDGET (fb->message_list));
    
    fb->paned_resize_id = g_signal_connect (fb->vpaned, "button_release_event",
                        G_CALLBACK (fb_resize_cb), fb);

    gconf = gconf_client_get_default ();
    paned_size = gconf_client_get_int (gconf, "/apps/evolution/mail/display/paned_size", NULL);
    gtk_paned_add2 (GTK_PANED (fb->vpaned), GTK_WIDGET (fb->mail_display));
    gtk_paned_set_position (GTK_PANED (fb->vpaned), paned_size);
    gtk_widget_show (GTK_WIDGET (fb->mail_display));
    gtk_widget_show (GTK_WIDGET (fb));
}

/* mark the message seen if the current message still matches */
static gint 
do_mark_seen (gpointer data)
{
    FolderBrowser *fb = FOLDER_BROWSER (data);
    
    if (fb->new_uid && fb->loaded_uid && !strcmp (fb->new_uid, fb->loaded_uid)) {
        camel_folder_set_message_flags (fb->folder, fb->new_uid,
                        CAMEL_MESSAGE_SEEN, CAMEL_MESSAGE_SEEN);
    }
    
    return FALSE;
}

/* callback when we have the message to display, after async loading it (see below) */
/* if we have pending uid's, it means another was selected before we finished displaying
   the last one - so we cycle through and start loading the pending one immediately now */
static void
done_message_selected (CamelFolder *folder, const char *uid, CamelMimeMessage *msg, void *data)
{
    FolderBrowser *fb = data;
    CamelMessageInfo *info;
    GConfClient *gconf;
    int timeout;
    
    gconf = gconf_client_get_default ();
    
    if (folder != fb->folder || fb->mail_display == NULL)
        return;
    
    gconf = gconf_client_get_default ();
    timeout = gconf_client_get_int (gconf, "/apps/evolution/mail/display/mark_seen_timeout", NULL);
    
    info = camel_folder_get_message_info (fb->folder, uid);
    mail_display_set_message (fb->mail_display, (CamelMedium *) msg, fb->folder, info);
    if (info)
        camel_folder_free_message_info (fb->folder, info);
    
    /* FIXME: should this signal be emitted here?? */
    g_signal_emit (fb, folder_browser_signals[MESSAGE_LOADED], 0, uid);
    
    /* pain, if we have pending stuff, re-run */
    if (fb->pending_uid) {
        g_free (fb->loading_uid);
        fb->loading_uid = fb->pending_uid;
        fb->pending_uid = NULL;
        
        mail_get_message (fb->folder, fb->loading_uid, done_message_selected, fb, mail_thread_new);
        return;
    }
    
    g_free (fb->loaded_uid);
    fb->loaded_uid = fb->loading_uid;
    fb->loading_uid = NULL;
    
    folder_browser_ui_message_loaded (fb);
    
    /* if we are still on the same message, do the 'idle read' thing */
    if (fb->seen_id)
        gtk_timeout_remove (fb->seen_id);
    
    if (msg && gconf_client_get_bool (gconf, "/apps/evolution/mail/display/mark_seen", NULL)) {
        if (timeout > 0)
            fb->seen_id = gtk_timeout_add (timeout, do_mark_seen, fb);
        else
            do_mark_seen (fb);
    }
}

/* ok we waited enough, display it anyway (see below) */
static gboolean
do_message_selected (FolderBrowser *fb)
{
    d(printf ("%p: selecting uid %s (delayed)\n", fb, fb->new_uid ? fb->new_uid : "NONE"));
    
    fb->loading_id = 0;
    
    /* if we are loading, then set a pending, but leave the loading, coudl cancel here (?) */
    if (fb->loading_uid) {
        g_free (fb->pending_uid);
        fb->pending_uid = g_strdup (fb->new_uid);
    } else {
        if (fb->new_uid) {
            fb->loading_uid = g_strdup (fb->new_uid);
            mail_get_message (fb->folder, fb->loading_uid, done_message_selected, fb, mail_thread_new);
        } else {
            mail_display_set_message (fb->mail_display, NULL, NULL, NULL);
        }
    }
    
    return FALSE;
}

/* when a message is selected, wait a while before trying to display it */
static void
on_message_selected (MessageList *ml, const char *uid, FolderBrowser *fb)
{
    d(printf ("%p: selecting uid %s (direct)\n", fb, uid ? uid : "NONE"));
    
    if (fb->loading_id != 0)
        gtk_timeout_remove (fb->loading_id);
    
    g_free (fb->new_uid);
    fb->new_uid = g_strdup (uid);
    
    if (fb->preview_shown)
        fb->loading_id = gtk_timeout_add (100, (GtkFunction)do_message_selected, fb);
}

static gboolean
on_message_list_focus_in (GtkWidget *widget, GdkEventFocus *event, gpointer user_data)
{
    FolderBrowser *fb = (FolderBrowser *) user_data;
    
    d(printf ("got focus!\n"));
    folder_browser_ui_message_list_focus (fb);
    
    return FALSE;
}

static gboolean
on_message_list_focus_out (GtkWidget *widget, GdkEventFocus *event, gpointer user_data)
{
    FolderBrowser *fb = (FolderBrowser *) user_data;
    
    d(printf ("got unfocus!\n"));
    folder_browser_ui_message_list_unfocus (fb);
    
    return FALSE;
}

static void
folder_browser_init (FolderBrowser *fb)
{
    fb->async_event = mail_async_event_new ();
    fb->get_id = -1;
}

static void
my_folder_browser_init (FolderBrowser *fb)
{
    int i;
    
    fb->view_instance = NULL;
    fb->view_menus = NULL;
    
    fb->pref_master = FALSE;
    
    /*
     * Setup parent class fields.
     */ 
    GTK_TABLE (fb)->homogeneous = FALSE;
    gtk_table_resize (GTK_TABLE (fb), 1, 2);
    
    /*
     * Our instance data
     */
    fb->message_list = (MessageList *)message_list_new ();
    fb->mail_display = (MailDisplay *)mail_display_new ();
    
    fb->preview_shown = TRUE;
    
    g_signal_connect (fb->mail_display->html, "key_press_event",
              G_CALLBACK (on_key_press), fb);
    g_signal_connect (fb->mail_display->html, "button_press_event",
              G_CALLBACK (html_button_press_event), fb);
    
    g_signal_connect (fb->message_list->tree, "key_press",
              G_CALLBACK (etree_key), fb);
    
    g_signal_connect (fb->message_list->tree, "right_click",
              G_CALLBACK (on_right_click), fb);
    
    g_signal_connect (fb->message_list->tree, "double_click",
              G_CALLBACK (on_double_click), fb);
    
    g_signal_connect (fb->message_list, "focus_in_event",
              G_CALLBACK (on_message_list_focus_in), fb);
    
    g_signal_connect (fb->message_list, "focus_out_event",
              G_CALLBACK (on_message_list_focus_out), fb);
    
    g_signal_connect (fb->message_list, "message_selected",
              G_CALLBACK (on_message_selected), fb);
    
    /* drag & drop */
    e_tree_drag_source_set (fb->message_list->tree, GDK_BUTTON1_MASK,
                drag_types, num_drag_types, GDK_ACTION_MOVE | GDK_ACTION_COPY);
    
    g_signal_connect (fb->message_list->tree, "tree_drag_data_get",
              G_CALLBACK (message_list_drag_data_get), fb);
    
    e_tree_drag_dest_set (fb->message_list->tree, GTK_DEST_DEFAULT_ALL,
                  drag_types, num_drag_types, GDK_ACTION_MOVE | GDK_ACTION_COPY);
    
    g_signal_connect (fb->message_list->tree, "tree_drag_data_received",
              G_CALLBACK (message_list_drag_data_received), fb);
    
    /* cut, copy & paste */
    fb->invisible = gtk_invisible_new ();
    g_object_ref (fb->invisible);
    gtk_object_sink ((GtkObject *) fb->invisible);
    
    for (i = 0; i < num_paste_types; i++)
        gtk_selection_add_target (fb->invisible, clipboard_atom,
                      paste_types[i].target,
                      paste_types[i].info);
    
    g_signal_connect (fb->invisible, "selection_get",
              G_CALLBACK (selection_get), fb);
    g_signal_connect (fb->invisible, "selection_clear_event",
              G_CALLBACK (selection_clear_event), fb);
    g_signal_connect (fb->invisible, "selection_received",
              G_CALLBACK (selection_received), fb);
    
    folder_browser_gui_init (fb);
}

GtkWidget *
folder_browser_new (const GNOME_Evolution_Shell shell, const char *uri)
{
    CORBA_Environment ev;
    FolderBrowser *folder_browser;
    
    CORBA_exception_init (&ev);
    
    folder_browser = g_object_new (folder_browser_get_type (), NULL);
    
    my_folder_browser_init (folder_browser);
    
    folder_browser->shell = CORBA_Object_duplicate (shell, &ev);
    if (ev._major != CORBA_NO_EXCEPTION) {
        folder_browser->shell = CORBA_OBJECT_NIL;
        gtk_widget_destroy (GTK_WIDGET (folder_browser));
        CORBA_exception_free (&ev);
        return NULL;
    }
    
    CORBA_exception_free (&ev);
    
    if (uri) {
        folder_browser->uri = g_strdup (uri);
        folder_browser->meta = mail_tool_get_meta_data(uri);
        g_object_ref (folder_browser);
        folder_browser->get_id = mail_get_folder (folder_browser->uri, 0, got_folder,
                              folder_browser, mail_thread_new);
    }
    
    return GTK_WIDGET (folder_browser);
}


E_MAKE_TYPE (folder_browser, "FolderBrowser", FolderBrowser, folder_browser_class_init, folder_browser_init, PARENT_TYPE);
730'>12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 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
# translation of evolution.HEAD.po to Nepali
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
# Ganesh Bahadur Ghimire <gghimire@gmail.com>, 2005.
# Ganesh Ghimire <gghimire@gmail.com>, 2005.
msgid ""
msgstr ""
"Project-Id-Version: evolution.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-06-21 13:59+0800\n"
"PO-Revision-Date: 2005-04-30 13:15+0545\n"
"Last-Translator: Ganesh Ghimire <gghimire@gmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n!=0);\n"
"X-Generator: KBabel 1.9.1\n"

#: ../a11y/addressbook/ea-addressbook-view.c:94
#: ../a11y/addressbook/ea-addressbook-view.c:103
#: ../a11y/addressbook/ea-minicard-view.c:169
msgid "evolution addressbook"
msgstr "इभोलुसन ठेगाना पुस्तिका"

#: ../a11y/addressbook/ea-minicard-view.c:34
#: ../addressbook/gui/component/addressbook-component.c:196
msgid "New Contact"
msgstr "नयाँ सम्पर्क "

#: ../a11y/addressbook/ea-minicard-view.c:35
#: ../addressbook/gui/component/addressbook-component.c:204
msgid "New Contact List"
msgstr "नयाँ सम्पर्क सूची "

#: ../a11y/addressbook/ea-minicard-view.c:152
#, c-format
msgid "current addressbook folder has %d card"
msgid_plural "current addressbook folder has %d cards"
msgstr[0] "हालको ठेगाना पुस्तिकामा %d कार्ड छ"
msgstr[1] "हालको ठेगाना पुस्तिका फोल्डर सँग %d कार्ड छ"

#: ../a11y/addressbook/ea-minicard.c:31
#: ../calendar/gui/alarm-notify/alarm-queue.c:953
#: ../ui/evolution-message-composer.xml.h:11
msgid "Open"
msgstr "खोल "

#: ../a11y/addressbook/ea-minicard.c:141
msgid "Contact List: "
msgstr "सम्पर्क सूची "

#: ../a11y/addressbook/ea-minicard.c:142
msgid "Contact: "
msgstr "सम्पर्क"

#: ../a11y/addressbook/ea-minicard.c:168
msgid "evolution minicard"
msgstr "इभोलुसन मिनिकार्ड"

#: ../a11y/calendar/ea-cal-view-event.c:235
msgid "It has alarms."
msgstr "यससँग सूचक छ "

#: ../a11y/calendar/ea-cal-view-event.c:238
msgid "It has recurrences."
msgstr "यसमा पुनरावृत्तिहरु छन्"

#: ../a11y/calendar/ea-cal-view-event.c:241
msgid "It is a meeting."
msgstr "यो एउटा भेट हो"

#: ../a11y/calendar/ea-cal-view-event.c:247
#, c-format
msgid "Calendar Event: Summary is %s."
msgstr "पात्रो घटना सारांश.%s."

#: ../a11y/calendar/ea-cal-view-event.c:249
msgid "Calendar Event: It has no summary."
msgstr "पात्रो घटना: यसको कुनै शारंश छैन ."

#: ../a11y/calendar/ea-cal-view-event.c:268
msgid "calendar view event"
msgstr "पात्रो दृष्य घटना"

#: ../a11y/calendar/ea-cal-view-event.c:485
msgid "Grab Focus"
msgstr "ग्राब फोकस"

#: ../a11y/calendar/ea-cal-view.c:306
msgid "New Appointment"
msgstr "नयाँ भर्ना"

#: ../a11y/calendar/ea-cal-view.c:307
msgid "New All Day Event"
msgstr "नयाँ सबै दिनका घटना"

#: ../a11y/calendar/ea-cal-view.c:308 ../calendar/gui/e-calendar-view.c:1483
msgid "New Meeting"
msgstr "नयाँ भेट"

#: ../a11y/calendar/ea-cal-view.c:309
msgid "Go to Today"
msgstr "आजको मा जाऊ"

#: ../a11y/calendar/ea-cal-view.c:310
msgid "Go to Date"
msgstr "मितिमा जाऊ "

#: ../a11y/calendar/ea-day-view-main-item.c:299
#: ../a11y/calendar/ea-week-view-main-item.c:301
msgid "a table to view and select the current time range"
msgstr "एउटा तालिका देखाउ र अहिलेको औषत समय छनोट गर "

#: ../a11y/calendar/ea-day-view.c:146 ../a11y/calendar/ea-week-view.c:148
#, c-format
msgid "It has %d event."
msgid_plural "It has %d events."
msgstr[0] "यसमा  %d घटना छ"
msgstr[1] "यसमा  %d घटनाहरू छन"

#: ../a11y/calendar/ea-day-view.c:148 ../a11y/calendar/ea-week-view.c:150
msgid "It has no events."
msgstr "यसमा कुनै घटना छैन."

#: ../a11y/calendar/ea-day-view.c:152
#, c-format
msgid "Work Week View: %s. %s"
msgstr "साप्ताहिक कार्य दृष्य %s. %s"

#: ../a11y/calendar/ea-day-view.c:155
#, c-format
msgid "Day View: %s. %s"
msgstr "दैनिक दृष्य:%s. %s"

#: ../a11y/calendar/ea-day-view.c:186
msgid "calendar view for a work week"
msgstr "एक साप्ताहिक कार्यको पात्रो "

#: ../a11y/calendar/ea-day-view.c:188
msgid "calendar view for one or more days"
msgstr "एक वा धेरै दिनहरुका लागि पात्रो देखाऊ"

#: ../a11y/calendar/ea-gnome-calendar.c:187
#: ../calendar/gui/calendar-component.c:660
msgid "%A %d %b %Y"
msgstr "%A %d %b %Y"

#. strftime format %a = abbreviated weekday name, %d = day of month,
#. %b = abbreviated month name. Don't use any other specifiers.
#. strftime format %a = abbreviated weekday name,
#. %d = day of month, %b = abbreviated month name.
#. You can change the order but don't change the
#. specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:190
#: ../calendar/gui/calendar-component.c:663
#: ../calendar/gui/e-day-view-top-item.c:719 ../calendar/gui/e-day-view.c:1516
#: ../calendar/gui/e-week-view-main-item.c:321
msgid "%a %d %b"
msgstr "%a %d %b"

#: ../a11y/calendar/ea-gnome-calendar.c:192
#: ../a11y/calendar/ea-gnome-calendar.c:197
#: ../a11y/calendar/ea-gnome-calendar.c:199
#: ../calendar/gui/calendar-component.c:665
#: ../calendar/gui/calendar-component.c:670
#: ../calendar/gui/calendar-component.c:672
msgid "%a %d %b %Y"
msgstr "%a %d %b %Y"

#: ../a11y/calendar/ea-gnome-calendar.c:216
#: ../a11y/calendar/ea-gnome-calendar.c:222
#: ../a11y/calendar/ea-gnome-calendar.c:228
#: ../a11y/calendar/ea-gnome-calendar.c:230
#: ../calendar/gui/calendar-component.c:684
#: ../calendar/gui/calendar-component.c:691
#: ../calendar/gui/calendar-component.c:697
#: ../calendar/gui/calendar-component.c:699
msgid "%d %b %Y"
msgstr "%d %b %Y"

#. strftime format %d = day of month, %b = abbreviated month name.
#. Don't use any other specifiers.
#. strftime format %d = day of month, %b = abbreviated
#. month name. You can change the order but don't
#. change the specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:220
#: ../calendar/gui/calendar-component.c:689
#: ../calendar/gui/e-day-view-top-item.c:723 ../calendar/gui/e-day-view.c:1532
#: ../calendar/gui/e-week-view-main-item.c:335
msgid "%d %b"
msgstr "%d %b"

#: ../a11y/calendar/ea-gnome-calendar.c:247
#: ../a11y/calendar/ea-gnome-calendar.c:255
#: ../calendar/importers/icalendar-importer.c:726
msgid "Gnome Calendar"
msgstr "जीनोम पात्रो"

#: ../a11y/calendar/ea-gnome-calendar.c:290
msgid "search bar"
msgstr "खोज बार"

#: ../a11y/calendar/ea-gnome-calendar.c:291
msgid "evolution calendar search bar"
msgstr "ईभोलुसन पात्रोको खोज बार"

#: ../a11y/calendar/ea-jump-button.c:149
msgid "Jump button"
msgstr "जम्प बटन"

#: ../a11y/calendar/ea-jump-button.c:158
msgid "Click here, you can find more events."
msgstr "यहाँ दबाउनेहोस, तपाईँले अझ धेरै घटनाहरू पत्ता लगाउन सक्नु हुन्छ"

#: ../a11y/calendar/ea-week-view.c:155
#, c-format
msgid "Month View: %s. %s"
msgstr "मासिक दृष्य: %s. %s"

#: ../a11y/calendar/ea-week-view.c:159
#, c-format
msgid "Week View: %s. %s"
msgstr "साप्ताहिक दृष्य: %s. %s"

#: ../a11y/calendar/ea-week-view.c:190
msgid "calendar view for a month"
msgstr "एक महिनाको लागि पात्रो दृष्य"

#: ../a11y/calendar/ea-week-view.c:192
msgid "calendar view for one or more weeks"
msgstr "एक वा बढी हप्पाताको लागि पत्रो दृष्य"

#: ../a11y/e-table/gal-a11y-e-cell-popup.c:124
msgid "popup"
msgstr "पपअप"

#. action name
#: ../a11y/e-table/gal-a11y-e-cell-popup.c:125
msgid "popup a child"
msgstr "शाखा पपअप गर्नुहोला"

#: ../a11y/e-table/gal-a11y-e-cell-text.c:612
msgid "edit"
msgstr "सम्पादन"

#: ../a11y/e-table/gal-a11y-e-cell-text.c:613
msgid "begin editing this cell"
msgstr "यो कक्षलाई सम्पादन गरी शुरू गर्नुहोला।"

#: ../a11y/e-table/gal-a11y-e-cell-toggle.c:151
msgid "toggle"
msgstr "पाटो"

#. action name
#: ../a11y/e-table/gal-a11y-e-cell-toggle.c:152
msgid "toggle the cell"
msgstr "कक्षलाई पाटो गर्नुहोला"

#: ../a11y/e-table/gal-a11y-e-cell-tree.c:171
msgid "expand"
msgstr "ठूलो बनाउनुहोला"

#: ../a11y/e-table/gal-a11y-e-cell-tree.c:172
msgid "expands the row in the ETree containing this cell"
msgstr "ईट्रि राखिएको यो कक्षमा पंक्ति ठूलो बनाउनुहोला।"

#: ../a11y/e-table/gal-a11y-e-cell-tree.c:177
msgid "collapse"
msgstr "ह्रास"

#: ../a11y/e-table/gal-a11y-e-cell-tree.c:178
msgid "collapses the row in the ETree containing this cell"
msgstr "ईट्रि राखिएको यो कक्षमा पंक्ति ह्रास "

#: ../a11y/e-table/gal-a11y-e-cell.c:107
msgid "Table Cell"
msgstr "टेबल कक्ष"

#: ../a11y/e-table/gal-a11y-e-table-click-to-add.c:44
#: ../a11y/e-table/gal-a11y-e-table-click-to-add.c:119
#: ../widgets/table/e-table-click-to-add.c:575
msgid "click to add"
msgstr "थपको लागी क्लिक गर्नुहोला"

#: ../a11y/e-table/gal-a11y-e-table-click-to-add.c:53
msgid "click"
msgstr "क्लिक"

#: ../a11y/e-table/gal-a11y-e-table-column-header.c:135
#, fuzzy
msgid "sort"
msgstr "अक्रमबद्ध"

#: ../a11y/widgets/ea-calendar-item.c:296
#: ../a11y/widgets/ea-calendar-item.c:302
msgid "%d %B %Y"
msgstr "%d %B %Y"

#: ../a11y/widgets/ea-calendar-item.c:304
#, c-format
msgid "Calendar: from %s to %s"
msgstr "पात्रो:%s बाट %s सम्म"

#: ../a11y/widgets/ea-calendar-item.c:339
msgid "evolution calendar item"
msgstr "ईभोलुसन पात्रो प्रकार"

#: ../a11y/widgets/ea-combo-button.c:40
msgid "Combo Button"
msgstr "कम्बो बटन"

#: ../a11y/widgets/ea-combo-button.c:50
msgid "Activate Default"
msgstr "पूर्वनिर्धारक सक्रिय गर्नुहोस्"

#: ../a11y/widgets/ea-combo-button.c:52
msgid "Popup Menu"
msgstr "पपअप मेनू"

#: ../addressbook/addressbook.error.xml.h:1
#, fuzzy
msgid ""
"A contact already exists with this address. Would you like to add a new card "
"with the same address anyway?"
msgstr ""
"एउटा संपर्क यस ठेगानामा पहिलेनै अस्तित्वमा छ।  के तपाईँ पुरानै ठेगानामा एउटा नयाँ कार्ड "
"थप्न चाहनुहुन्छ?"

#: ../addressbook/addressbook.error.xml.h:2
msgid "Address '{0}' already exists."
msgstr "ठेगाना '{0}' पहिलेनै कायम छ। "

#: ../addressbook/addressbook.error.xml.h:3
msgid "Cannot move contact."
msgstr "सम्पर्क ठेगाना हटाउन सक्दैन।"

#: ../addressbook/addressbook.error.xml.h:4
msgid "Category editor not available."
msgstr "श्रेणी सम्पादक प्राप्त छैन।"

#: ../addressbook/addressbook.error.xml.h:5
msgid ""
"Check to make sure your password is spelled correctly and that you are using "
"a supported login method. Remember that many passwords are case sensitive; "
"your caps lock might be on."
msgstr ""
"तपाईको प्रविष्टीशव्द शुद्धसँग उच्चारण जाँच गर्नुहोला जुन तपाईँले प्रविष्टी का लाग प्रयोग "
"गरिरहनु भएको छ। सम्झनु होला की केहि प्रविष्टी शव्दहरू सम्वेदनशील हुन्छन्। सायद क्याप्स लक "
"चालु हुन सक्छ।"

#: ../addressbook/addressbook.error.xml.h:6
msgid "Could not get schema information for LDAP server."
msgstr "एलडिएपी सर्भरका लागि स्किमा सुचना पाउना सकिएन"

#: ../addressbook/addressbook.error.xml.h:7
msgid "Could not remove addressbook."
msgstr "ठेगाना पुस्तिका हटाउन सकेन."

#: ../addressbook/addressbook.error.xml.h:8
msgid "Delete address book '{0}'?"
msgstr "ठेगाना पुस्तिका मेट्ने'{0}'?"

#: ../addressbook/addressbook.error.xml.h:9
msgid "Error loading addressbook."
msgstr "ठेगाना पुस्तिकामा गल्ति भरण भैरहेको छ।"

#: ../addressbook/addressbook.error.xml.h:10
#, fuzzy
msgid "Error saving {0} to {1}: {2}"
msgstr "{0}: {1}मा सम्पर्क ठेगानाहरु संचित गर्दा गल्ती भयो "

#: ../addressbook/addressbook.error.xml.h:11
msgid "Failed to authenticate with LDAP server."
msgstr "एलडिएपी सरभरसँग सम्बन्ध राख्न असफल.भयो"

#: ../addressbook/addressbook.error.xml.h:12
msgid "LDAP server did not respond with valid schema information."
msgstr "एलडिएपी सर्भरले स्किमा सुचना जानकारी राखेन।"

#: ../addressbook/addressbook.error.xml.h:13
msgid "Server Version"
msgstr "सर्भर संस्करण"

#: ../addressbook/addressbook.error.xml.h:14
#: ../calendar/calendar.error.xml.h:44
#, fuzzy
msgid "Some features may not work properly with your current server"
msgstr "यो सर्भर संस्करणमा केहि सुबिधाहरूले सहि रुपले काम नगर्न सक्छ।"

#: ../addressbook/addressbook.error.xml.h:15
msgid "The Evolution addressbook has quit unexpectedly."
msgstr "इभोलुसन ठेगाना पुस्तिका अप्रत्यासित तबरले अन्त्य भएको छ।"

#: ../addressbook/addressbook.error.xml.h:16
msgid ""
"This LDAP server may use an older version of LDAP, which does not support "
"this functionality or it may be misconfigured. Ask your administrator for "
"supported search bases."
msgstr ""
"यस एलडिएपी सरभरले सायद एलडिएपीको पुरानो विवरण प्रयोग गर्न सक्छ जुसले यस कार्यलाई "
"सहयोग गर्दैन वा यसले सायद अर्कै रुप बनाउँछ। तपाईँको प्रशासकसँग सहयाता खोज आधार माग्नुहोस्।"

#: ../addressbook/addressbook.error.xml.h:17
msgid "This address book will be removed permanently."
msgstr "यस ठेगाना पुस्तिका सधैँका लागि हटाइनेछ।"

#: ../addressbook/addressbook.error.xml.h:18
msgid "This addressbook could not be opened."
msgstr "यस ठेगाना पुस्तिका खुल्न सकेन."

#: ../addressbook/addressbook.error.xml.h:19
msgid "This addressbook server does not have any suggested search bases."
msgstr "यस ठेगाना पुस्तिका सरभर सँगग कुनै प्रस्तावित खोज आधार छैन "

#: ../addressbook/addressbook.error.xml.h:20
msgid ""
"This addressbook server might be unreachable or the server name may be "
"misspelled or your network connection could be down."
msgstr ""
"यस ठेगाना पुस्तिका सरभरमा सायद भेट्न सकेन.अथवा सरभर को नाम अव्यवस्थित छ अथवा तपाईँको "
"नेटवर्क सम्बन्ध कायम छैन"

#: ../addressbook/addressbook.error.xml.h:21
msgid "This server does not support LDAPv3 schema information."
msgstr "यस सरभरले LDAPv3 युक्ति सुचनाको लागि सहयोग गर्दैन"

#: ../addressbook/addressbook.error.xml.h:22
msgid "Unable to open addressbook"
msgstr "ठेगाना पुस्तिका खोल्न असक्षम छ"

#: ../addressbook/addressbook.error.xml.h:23
msgid "Unable to perform search."
msgstr "खोज कार्य गर्न असक्षम छ।"

#: ../addressbook/addressbook.error.xml.h:24
#, fuzzy
msgid "Unable to save {0}."
msgstr "सम्पर्क ठेगाना(हरू) भण्डारण गर्न सकेन।"

#: ../addressbook/addressbook.error.xml.h:25
msgid "Would you like to save your changes?"
msgstr "के तपाईँले गर्नु भएका परिवर्तनहरु भण्डारण गर्न चाहनुहुन्छ?"

#: ../addressbook/addressbook.error.xml.h:26
msgid ""
"You are attempting to move a contact from one addressbook to another but it "
"cannot be removed from the source. Do you want to save a copy instead?"
msgstr ""
"तपाईँले एक ठेगाना पुस्तिका बाट अर्कोमा संपर्क परिवर्तन गर्न खोज्दै हुनुहुन्छ तर यो श्रोतबाट "
"हटाउन सकिदैन। के तपाईँ भण्डारणका लागि  प्रतिलिपि गर्न चाहनुहुन्छि ?"

#: ../addressbook/addressbook.error.xml.h:27
#: ../calendar/calendar.error.xml.h:59
msgid ""
"You are connecting to an unsupported GroupWise server and may encounter "
"problems using Evolution. For best results the server should be upgraded to "
"a supported version"
msgstr ""

#: ../addressbook/addressbook.error.xml.h:28
msgid ""
"You have made modifications to this contact. Do you want to save these "
"changes?"
msgstr "तपाईँले यसमा केहि परिवर्तन गर्नु भएको छ। के तपाईँ यसलाई  भण्डारण गर्न चाहनु हुन्छ?"

#: ../addressbook/addressbook.error.xml.h:29
msgid ""
"Your contacts for {0} will not be available until Evolution is restarted."
msgstr "तपाईँको {0} सँगको संपर्क इभोलुसन फेरी सुरु नगरिदा सम्म प्राप्त हुने छैन।"

#: ../addressbook/addressbook.error.xml.h:30 ../mail/em-vfolder-rule.c:494
#: ../plugins/groupwise-features/properties.glade.h:10
msgid "_Add"
msgstr "_थप"

#: ../addressbook/addressbook.error.xml.h:31
msgid "_Discard"
msgstr "_उपेक्षा"

#: ../addressbook/addressbook.error.xml.h:32
msgid "{0}"
msgstr "{0}"

#: ../addressbook/addressbook.error.xml.h:33
msgid "{1}"
msgstr "{1}"

#: ../addressbook/conduit/address-conduit.c:298
msgid "Default Sync Address:"
msgstr "पूर्वनिर्धारित मिल्दोजुल्दो ठेगाना:"

#: ../addressbook/conduit/address-conduit.c:1183
#: ../addressbook/conduit/address-conduit.c:1184
msgid "Could not load addressbook"
msgstr "ठेगाना पुस्तिका लोड गर्न सकेन"

#: ../addressbook/conduit/address-conduit.c:1252
#: ../addressbook/conduit/address-conduit.c:1255
msgid "Could not read pilot's Address application block"
msgstr "पाइलट ठेगाना अनुप्रयोग ब्लक पाठ गर्न सकेन"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:1
msgid "Autocompletion"
msgstr "स्वत:सम्पन्न"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:2
msgid "C_ontacts"
msgstr "ठे_गानाहरू"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:3
msgid "Certificates"
msgstr "प्रमाणपत्रहरू"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:4
msgid "Configure autocomplete here"
msgstr "यहाँ स्वत सम्पन्न गर्नुहोस्स्"

#. Create the contacts group
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:5
#: ../addressbook/gui/component/addressbook-view.c:1119
#: ../calendar/gui/calendar-component.c:246 ../calendar/gui/migration.c:388
msgid "Contacts"
msgstr "ठेगानाहरू"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:6
msgid "Evolution Addressbook"
msgstr "इभोलुसन ठेगाना पुस्तिका"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:7
msgid "Evolution Addressbook address pop-up"
msgstr "इभोलुसन ठेगाना पुस्तिकाको ठेगाना पप-अप"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:8
msgid "Evolution Addressbook address viewer"
msgstr "इभोलुसन ठेगाना पुस्तिकाको ठेगाना दृश्य"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:9
msgid "Evolution Addressbook card viewer"
msgstr "इभोलुसन ठेगाना पुस्तिकाको कार्ड दृश्य"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:10
msgid "Evolution Addressbook component"
msgstr "इभोलुसन ठेगाना पुस्तिकाको अवयव"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:11
msgid "Evolution S/Mime Certificate Management Control"
msgstr "इभोलुसन S/Mime प्रमाणपत्र प्रबन्ध नियन्त्रण"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:12
msgid "Evolution folder settings configuration control"
msgstr "इभोलुसन फोल्डर सेटिङ निर्माण नियन्त्रण"

#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:13
msgid "Manage your S/MIME certificates here"
msgstr "तपाईँको S/Mime प्रमाणपत्र यहाँ प्रबन्ध मिलाउनुहोस्रणएस"

#. create the local source group
#. On This Computer is always first and vFolders is always last
#: ../addressbook/gui/component/addressbook-component.c:133
#: ../addressbook/gui/component/addressbook-migrate.c:493
#: ../calendar/gui/calendar-component.c:208 ../calendar/gui/migration.c:462
#: ../calendar/gui/migration.c:555 ../calendar/gui/tasks-component.c:188
#: ../mail/em-folder-tree-model.c:197 ../mail/em-folder-tree-model.c:199
#: ../mail/mail-component.c:291 ../mail/mail-vfolder.c:223
msgid "On This Computer"
msgstr "यस कमप्युटरमा"

#. Create the default Person addressbook
#. Create the default Person calendar
#. Create the default Person task list
#. Create the default Person addressbook
#. orange
#: ../addressbook/gui/component/addressbook-component.c:141
#: ../addressbook/gui/component/addressbook-migrate.c:501
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:20
#: ../calendar/gui/calendar-component.c:216 ../calendar/gui/migration.c:470
#: ../calendar/gui/migration.c:563 ../calendar/gui/tasks-component.c:196
#: ../filter/filter-label.c:123 ../mail/em-migrate.c:1043
#: ../mail/mail-config.c:78 ../mail/mail-config.glade.h:104
msgid "Personal"
msgstr "व्यक्तिगत"

#. Create the LDAP source group
#: ../addressbook/gui/component/addressbook-component.c:149
#: ../addressbook/gui/component/addressbook-migrate.c:509
msgid "On LDAP Servers"
msgstr "यस एलडिएपी सर्भरहरूमा"

#: ../addressbook/gui/component/addressbook-component.c:197
msgid "_Contact"
msgstr "_सम्पर्क"

#: ../addressbook/gui/component/addressbook-component.c:198
msgid "Create a new contact"
msgstr "नयाँ सम्पर्क ठेगाना बनाउनुहोस् "

#: ../addressbook/gui/component/addressbook-component.c:205
msgid "Contact _List"
msgstr "सम्पर्क _सूची"

#: ../addressbook/gui/component/addressbook-component.c:206
msgid "Create a new contact list"
msgstr "एउटा नयाँ संपर्क सूची बनाउनुहोस् "

#: ../addressbook/gui/component/addressbook-component.c:212
#: ../addressbook/gui/component/addressbook-config.c:1120
#: ../addressbook/gui/component/addressbook-view.c:757
msgid "New Address Book"
msgstr "नयाँ ठेगाना पुस्तिका"

#: ../addressbook/gui/component/addressbook-component.c:213
msgid "Address _Book"
msgstr "ठेगाना _पुस्तिक"

#: ../addressbook/gui/component/addressbook-component.c:214
msgid "Create a new address book"
msgstr "एउटा नयाँ ठेगाना पुस्तिका बनाउनुहोस् "

#: ../addressbook/gui/component/addressbook-component.c:287
msgid "Failed upgrading Addressbook settings or folders."
msgstr "ठेगाना पुस्तिका सेटिङ वा फोल्डरहरूको स्तरवृद्धि गर्न सकेन।"

#: ../addressbook/gui/component/addressbook-config.c:315
msgid "Base"
msgstr "आधार"

#: ../addressbook/gui/component/addressbook-config.c:510
#: ../calendar/gui/dialogs/calendar-setup.c:192
#: ../calendar/gui/dialogs/calendar-setup.glade.h:10
msgid "_Type:"
msgstr "_प्रकार:"

#: ../addressbook/gui/component/addressbook-config.c:609
msgid "Copy book content locally for offline operation"
msgstr " पुस्तकको स्थानीय विषयवस्तु अफलाइ कार्यका लागि प्रतिलिपि गर्नुहोस्"

#: ../addressbook/gui/component/addressbook-config.c:904
#: ../addressbook/gui/component/ldap-config.glade.h:23
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:25
#: ../calendar/gui/dialogs/calendar-setup.c:368
#: ../calendar/gui/dialogs/calendar-setup.c:379
#: ../mail/em-folder-properties.c:215 ../mail/mail-config.glade.h:85
#: ../smime/gui/smime-ui.glade.h:28
msgid "General"
msgstr "सामान्य"

#: ../addressbook/gui/component/addressbook-config.c:905
#: ../mail/importers/pine-importer.c:479
msgid "Addressbook"
msgstr "ठेगाना पुस्तिका"

#: ../addressbook/gui/component/addressbook-config.c:909
msgid "Server Information"
msgstr "सर्भर सुचना "

#: ../addressbook/gui/component/addressbook-config.c:911
msgid "Authentication"
msgstr "प्रमाणीकरण"

#: ../addressbook/gui/component/addressbook-config.c:914
#: ../addressbook/gui/component/ldap-config.glade.h:18
#: ../mail/mail-dialogs.glade.h:8 ../smime/gui/smime-ui.glade.h:20
msgid "Details"
msgstr "विस्तृत"

#: ../addressbook/gui/component/addressbook-config.c:915
msgid "Searching"
msgstr "खोजी कार्य जारी छ"

#: ../addressbook/gui/component/addressbook-config.c:917
msgid "Downloading"
msgstr "अधोभरण कार्य जारी छ "

#: ../addressbook/gui/component/addressbook-config.c:1118
#: ../addressbook/gui/component/ldap-config.glade.h:14
msgid "Address Book Properties"
msgstr "ठेगाना पुस्तक सम्पति"

#: ../addressbook/gui/component/addressbook-migrate.c:72
#: ../calendar/gui/migration.c:142 ../mail/em-migrate.c:1190
msgid "Migrating..."
msgstr "स्थानान्तर कार्य जारी छ"

#: ../addressbook/gui/component/addressbook-migrate.c:124
#: ../calendar/gui/migration.c:189 ../mail/em-migrate.c:1231
#, c-format
msgid "Migrating `%s':"
msgstr "स्थानान्तर कार्य जारी छ `%s':"

#: ../addressbook/gui/component/addressbook-migrate.c:637
msgid "LDAP Servers"
msgstr "एलडिएपी सरभरहरु"

#: ../addressbook/gui/component/addressbook-migrate.c:752
msgid "Autocompletion Settings"
msgstr "स्वत सम्पन्न गराउने काम"

#: ../addressbook/gui/component/addressbook-migrate.c:1123
msgid ""
"The location and hierarchy of the Evolution contact folders has changed "
"since Evolution 1.x.\n"
"\n"
"Please be patient while Evolution migrates your folders..."
msgstr ""
"यस स्थान र इभोलुसन संपर्क फोल्डरहरु इभोलुसन 1.x.\n"
" देखि परिवर्तन भएको छ\n"
"कृपया इभोलुसनले तपाईको फोल्डरहरू स्थानान्तर गर्दा सम्म शान्त रहुनुहोला..."

#: ../addressbook/gui/component/addressbook-migrate.c:1137
msgid ""
"The format of mailing list contacts has changed.\n"
"\n"
"Please be patient while Evolution migrates your folders..."
msgstr ""
"यस पत्राचार संपर्कहरुको सूची फर्म्याट परिवर्तन भएको छ।\n"
"\n"
"कृपया इभोलुसनले तपाईका फोल्डरहरू स्थानान्तर गर्दा सम्म शान्त रहुनुहोला..."

#: ../addressbook/gui/component/addressbook-migrate.c:1146
msgid ""
"The way Evolution stores some phone numbers has changed.\n"
"\n"
"Please be patient while Evolution migrates your folders..."
msgstr ""
"इभोलुसनले केहि फोन नम्बरहरू संग्रह गर्ने बाटो परिबर्तन गरेको छ।\n"
"\n"
"कृपया इभोलुसनले तपाईका फोल्डरहरू स्थानान्तर गर्दा सम्म शान्त रहुनुहोला..."

#: ../addressbook/gui/component/addressbook-migrate.c:1156
msgid ""
"Evolution's Palm Sync changelog and map files have changed.\n"
"\n"
"Please be patient while Evolution migrates your Pilot Sync data..."
msgstr ""
"इभोलुसनको पाल्म सिङ्क चेन्जलग र नक्सा फाइलहरु परिवर्तन भएको छ।\n"
"\n"
"कृपया इभोलुसनले तपाईका पाएलट सिङ्क डाटाहरू स्थानान्तर गर्दा सम्म शान्त रहुनुहोला..."

#: ../addressbook/gui/component/addressbook-view.c:758
#: ../addressbook/gui/widgets/e-addressbook-view.c:937
#: ../calendar/gui/calendar-component.c:537
#: ../calendar/gui/tasks-component.c:441 ../mail/em-filter-i18n.h:11
#: ../ui/evolution-addressbook.xml.h:8 ../ui/evolution-calendar.xml.h:5
#: ../ui/evolution-mail-message.xml.h:25 ../ui/evolution-tasks.xml.h:6
msgid "Delete"
msgstr "मेट्नुहोस्"

#: ../addressbook/gui/component/addressbook-view.c:760
#: ../calendar/gui/calendar-component.c:538
#: ../calendar/gui/tasks-component.c:442
msgid "Properties..."
msgstr "सम्पत्ती..."

#: ../addressbook/gui/component/addressbook-view.c:1130
msgid "Contact Source Selector"
msgstr "सम्पर्क स्रोत छनोटकर्ता"

#: ../addressbook/gui/component/addressbook.c:99
msgid "Accessing LDAP Server anonymously"
msgstr "एलडिएपी सर्भरसँग बेनामी संपर्क जारी छ"

#: ../addressbook/gui/component/addressbook.c:193
#: ../plugins/groupwise-features/camel-gw-listener.c:478
msgid "Failed to authenticate.\n"
msgstr "प्रमाणीकरण गर्न असक्षम भयो।\n"

#: ../addressbook/gui/component/addressbook.c:200
#: ../plugins/groupwise-features/camel-gw-listener.c:461
#, c-format
msgid "Enter password for %s (user %s)"
msgstr "%s का लागि पासवर्ड प्रविष्टी गराउनुहोस् (प्रयोगकर्ता %s)"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:1
msgid "Autocomplete length"
msgstr "लम्बाई स्वत: पुरा गर्नुहोस्"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:2
msgid "EFolderList XML for the list of completion URIs"
msgstr "यूआरआइ सम्पन्न गर्ने सूचीका लागि इफोल्डर सूची एक्सएमएल"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:3
msgid "EFolderList XML for the list of completion URIs."
msgstr "इफोल्डर सूची  यूआरआइ सम्पन्न गर्नका लागि इफोल्डर सूची एक्सएमएल."

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:4
msgid ""
"Position of the vertical pane, between the card and list views and the "
"preview pane, in pixels."
msgstr "ठाडो फलकको अबस्था, कार्ड र दृष्य सूची को विचमा र पूर्वदृष्य कक्ष, पिक्सेलमा"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:5
msgid "Show preview pane"
msgstr "पूर्वालोकन फलक देखाउनुहोस्"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:6
msgid ""
"The number of characters that must be typed before Evolution will attempt to "
"autocomplete."
msgstr "अक्षर वा चिन्हहरूको संख्या जुन इभोलुसन स्वत सम्पन्न हुदा सम्म टाइप गरी सक्नु पर्नेछ।"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:7
msgid "URI for the folder last used in the select names dialog"
msgstr "छानिएका नामहरु संवादमा अन्तिम पटक प्रयोग गरिएको फोल्डर का लागि युआरआइ"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:8
msgid "URI for the folder last used in the select names dialog."
msgstr "छानिएका नामहरु संवादमा अन्तिम पटक प्रयोग गरिएको फोल्डर का लागि युआरआइ।"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:9
#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:55
msgid "Vertical pane position"
msgstr "ठाडो फलक स्थिति"

#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.in.h:10
msgid "Whether to show the preview pane."
msgstr "कुनै पूर्वालोकन फलक देखाउनुहोस्"

#: ../addressbook/gui/component/ldap-config.glade.h:1
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:1
#: ../addressbook/gui/contact-editor/fulladdr.glade.h:1
#: ../addressbook/gui/contact-editor/fullname.glade.h:1
#: ../addressbook/gui/contact-editor/im.glade.h:1
#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:3
#: ../calendar/gui/dialogs/cal-attachment.glade.h:1
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:1
#: ../calendar/gui/dialogs/calendar-setup.glade.h:1
#: ../calendar/gui/dialogs/event-page.glade.h:1
#: ../calendar/gui/dialogs/new-calendar.glade.h:1
#: ../calendar/gui/dialogs/new-task-list.glade.h:1
#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:1
#: ../composer/e-msg-composer-attachment.glade.h:1
#: ../mail/mail-dialogs.glade.h:2 ../mail/message-tags.glade.h:1
#: ../plugins/groupwise-features/properties.glade.h:1
#: ../widgets/e-timezone-dialog/e-timezone-dialog.glade.h:1
msgid "*"
msgstr "*"

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

#: ../addressbook/gui/component/ldap-config.glade.h:3
msgid "3268"
msgstr "३२६८"

#: ../addressbook/gui/component/ldap-config.glade.h:4
msgid "389"
msgstr "३८९"

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

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

#: ../addressbook/gui/component/ldap-config.glade.h:7
#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:2
msgid "<b>Authentication</b>"
msgstr "<b>प्रमाणीकरण</b>"

#: ../addressbook/gui/component/ldap-config.glade.h:8
msgid "<b>Display</b>"
msgstr "<b>प्रदर्शन</b>"

#: ../addressbook/gui/component/ldap-config.glade.h:9
msgid "<b>Downloading</b>"
msgstr "<b>डाउनलोड हुँदै</b>"

#: ../addressbook/gui/component/ldap-config.glade.h:10
msgid "<b>Searching</b>"
msgstr "<b>खोजी कार्य जारी</b>"

#: ../addressbook/gui/component/ldap-config.glade.h:11
msgid "<b>Server Information</b>"
msgstr "<b> सर्भर सुचना</b>"

#: ../addressbook/gui/component/ldap-config.glade.h:12
msgid "<b>Type:</b>"
msgstr "<b>प्रकार:</b>"

#: ../addressbook/gui/component/ldap-config.glade.h:13
msgid "Add Address Book"
msgstr "ठेगाना पुस्तिका थप्नुहोस्"

#: ../addressbook/gui/component/ldap-config.glade.h:15
#: ../mail/em-account-editor.c:302 ../mail/em-account-editor.c:757
msgid "Always"
msgstr "जहिलेपनि"

#: ../addressbook/gui/component/ldap-config.glade.h:16
msgid "Anonymously"
msgstr "बेनामी रुपले"

#: ../addressbook/gui/component/ldap-config.glade.h:17
msgid "Basic"
msgstr "आधारभूत"

#: ../addressbook/gui/component/ldap-config.glade.h:19
msgid "Distinguished name"
msgstr "विशिष्ट नाम"

#: ../addressbook/gui/component/ldap-config.glade.h:20
msgid "Email address"
msgstr "इमेल ठेगाना"

#: ../addressbook/gui/component/ldap-config.glade.h:21
msgid ""
"Evolution will use this email address to authenticate you with the server."
msgstr "यो इमेल ठेगाना इभोलुसनले तपाईँलाई सरभर सँग संबन्ध कायम गर्न प्रयोग गरिनेछ।"

#: ../addressbook/gui/component/ldap-config.glade.h:22
msgid "Find Possible Search Bases"
msgstr "सम्भाव्य खोज आधारहरू पत्ता लगाउनुहोस्"

#: ../addressbook/gui/component/ldap-config.glade.h:24
msgid "Lo_gin:"
msgstr "ल_गइन:"

#: ../addressbook/gui/component/ldap-config.glade.h:25
#: ../mail/em-account-editor.c:300 ../mail/em-account-editor.c:756
msgid "Never"
msgstr "कहिलेपनि"

#: ../addressbook/gui/component/ldap-config.glade.h:26
msgid "One"
msgstr "एउटा"

#: ../addressbook/gui/component/ldap-config.glade.h:27
msgid "Search _base:"
msgstr "खोज _आधार:"

#: ../addressbook/gui/component/ldap-config.glade.h:28
msgid ""
"Selecting this option means that Evolution will only connect to your LDAP "
"server if your LDAP server supports SSL or TLS."
msgstr ""
"यस विकल्प छनौट गरिरहनुको अर्थ इभोलुसनले तपाईँको एलडिएपी सर्भर सँग मात्र संपर्क गर्नेछ यदि "
"तपाईँको एलडिएपी सर्भरले एसएसएल अथवा टिएलएस सहारा दिन्छ।"

#: ../addressbook/gui/component/ldap-config.glade.h:29
msgid ""
"Selecting this option means that Evolution will only try to use SSL/TLS if "
"you are in a insecure environment. For example, if you and your LDAP server "
"are behind a firewall at work, then Evolution doesn't need to use SSL/TLS "
"because your connection is already secure."
msgstr ""
"यस विकल्पको छनोटको अर्थ इभोलुसनले एसएसएल/टिएलएस प्रयोग गर्ने प्रयासका लागि हुनेछ यदि "
"तपाईँ एउटा असुरक्षित वाताबरणमा हुनुहुन्छ भने। उदाहरणका लागि यदि तपाईँ र तपाईँको "
"एलडिएपी सर्भरहरू काममा फाएरवाल पछाडी हुनुहुन्छ भने त्यसपछि इभोलुसनलाई एसएसएल/टिएलएस "
"को प्रयोग गर्न आबस्यक छैन किनभने तपाईँको जडान पहिलेनै सुरक्षित छ।"

#: ../addressbook/gui/component/ldap-config.glade.h:30
msgid ""
"Selecting this option means that your server does not support either SSL or "
"TLS.  This means that your connection will be insecure, and that you will be "
"vulnerable to security exploits. "
msgstr ""
"यस विकल्पको छनोटको अर्थ तपाईँको सर्भरले या त ले एसए वा एल/टिएलाई सहयोग गर्दैन। यसको "
"अर्थ तपाईँको संपर्क असुरक्षित हुनेछ, र त्यसले गर्दा तपाईँ सुरक्षा उल्लङ्घनबाट दयनीय हुनुहुनेछ।"

#: ../addressbook/gui/component/ldap-config.glade.h:31
msgid "Sub"
msgstr "उपय"

#: ../addressbook/gui/component/ldap-config.glade.h:32
msgid "Supported Search Bases"
msgstr "प्रमाणित खोज आधारहरू"

#: ../addressbook/gui/component/ldap-config.glade.h:33
msgid ""
"The search base is the distinguished name (DN)  of the entry where your "
"searches will 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:34
msgid ""
"The search scope defines how deep you would like the search to extend down "
"the directory tree. A search scope of \"sub\" will include all entries below "
"your search base. A search scope of \"one\" will only include the entries "
"one level beneath your base."
msgstr ""
"यो खोज क्षेत्रको परिभाषा तपाईँले खोज डाइरेक्कटरी ट्रीमा कति गहिराईमा बढाउन चाहनुहुन्छ। "
"एउटा खोज क्षेत्र \"उप\" ले तपाईँको खोज भित्र सबै प्रबिष्टीहरु समाबेश गर्नेछ। एउटा खोज "
"क्षेत्र \"एउटा\" ले तपाईको आधार भित्र एउटा तहमा मात्र प्रबिष्टीहरू समाबेश गर्नेछ।"

#: ../addressbook/gui/component/ldap-config.glade.h:35
msgid ""
"This is the full name of your ldap server. For example, \"ldap.mycompany.com"
"\"."
msgstr ""
"यो पुरा नाम तपाईँको ईडअप सर्भरको हो। उदाहरणका लागि  \"ldap.mycompany.com\"."

#: ../addressbook/gui/component/ldap-config.glade.h:36
msgid ""
"This is the maximum number of entries to download. Setting this number to be "
"too large will slow down your address book."
msgstr ""
"यो डाउनलोडका लागि प्रबिष्टिहरूको अधिक संख्या हो। धेरै ठुलो  संख्यालाईसेटिङ गर्दा ठेगाना "
"पुस्तिका ढिला हुन जानेछ।."

#: ../addressbook/gui/component/ldap-config.glade.h:37
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:38
msgid ""
"This is the name for this server that will appear in your Evolution folder "
"list. It is for display purposes only. "
msgstr ""
"यस सर्भरका लागि यो नाम तपाईँको इभोलुसन फोल्डर सूची भित्र देखा पर्नेछ। यो देखाउने "
"उद्देश्यका लागि मात्र हो।ी "

#: ../addressbook/gui/component/ldap-config.glade.h:39
msgid ""
"This is the port on the LDAP server that Evolution will try to connect to. A "
"list of standard ports has been provided. Ask your system administrator what "
"port you should specify."
msgstr ""
"यो एलडिएपी सर्भरमा यो पोर्ट हो जुन इभोलुसनले जडानका लागि प्रयास गर्नेछ। मानकी पोर्टको "
"एउटा सूची उपलब्ध गराइ सकेको छ। तपाईँको प्रबिधि प्रबन्धकलाई कुन पोर्ट लाई विशिष्ट "
"गरिएको छ सोध्नुहोला। सूची को."

#: ../addressbook/gui/component/ldap-config.glade.h:40
msgid "Using distinguished name (DN)"
msgstr "विषिष्ट नामको प्रयोग (डि एन)"

#: ../addressbook/gui/component/ldap-config.glade.h:41
msgid "Using email address"
msgstr "इमेल ठेगाना प्रयोग"

#: ../addressbook/gui/component/ldap-config.glade.h:42
#: ../mail/em-account-editor.c:301
msgid "Whenever Possible"
msgstr "जहिलेपनि सम्भावित"

#: ../addressbook/gui/component/ldap-config.glade.h:43
msgid "_Add Address Book"
msgstr "_ठेगाना पुस्तिका थप्नुहोस्"

#: ../addressbook/gui/component/ldap-config.glade.h:44
msgid "_Download limit:"
msgstr "_सिमित डाउनलोड:"

#: ../addressbook/gui/component/ldap-config.glade.h:45
msgid "_Find Possible Search Bases"
msgstr "_सम्भाव्य खोज आधारहरू पत्तालगाऊ"

#: ../addressbook/gui/component/ldap-config.glade.h:46
#, fuzzy
msgid "_Login method:"
msgstr "_भित्र प्रबेष पद्दती:"

#: ../addressbook/gui/component/ldap-config.glade.h:47
#: ../calendar/gui/dialogs/calendar-setup.c:244
#: ../calendar/gui/dialogs/calendar-setup.glade.h:8
#: ../mail/mail-config.glade.h:165
msgid "_Name:"
msgstr "_नाम:"

#: ../addressbook/gui/component/ldap-config.glade.h:48
msgid "_Port:"
msgstr "_पोर्ट:"

#: ../addressbook/gui/component/ldap-config.glade.h:49
msgid "_Search scope:"
msgstr "_खोज क्षेत्र:"

#: ../addressbook/gui/component/ldap-config.glade.h:50
msgid "_Server:"
msgstr "_सर्भर:"

#: ../addressbook/gui/component/ldap-config.glade.h:51
msgid "_Timeout:"
msgstr "_समयावधी:"

#: ../addressbook/gui/component/ldap-config.glade.h:52
msgid "_Use secure connection:"
msgstr "_सुरक्षित जडान प्रयोग गर्नुस्:"

#: ../addressbook/gui/component/ldap-config.glade.h:53
msgid "cards"
msgstr "कार्डहरू"

#: ../addressbook/gui/component/ldap-config.glade.h:54
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:8
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:26
#: ../calendar/gui/dialogs/calendar-setup.glade.h:14
#: ../filter/filter.glade.h:16 ../mail/em-account-editor.c:1940
#: ../plugins/calendar-http/calendar-http.c:263
#: ../plugins/calendar-weather/calendar-weather.c:564
msgid "minutes"
msgstr "मिनेटहरु"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:2
msgid "<b>Email</b>"
msgstr "<b>इमेल</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:3
msgid "<b>Home</b>"
msgstr "<b>मुख्यपृष्ठ</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:4
msgid "<b>Instant Messaging</b>"
msgstr "<b>तत्काल सूचना</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:5
msgid "<b>Job</b>"
msgstr "<b>काम</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:6
msgid "<b>Miscellaneous</b>"
msgstr "<b>विविध</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:7
msgid "<b>Other</b>"
msgstr "<b>अन्य</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:8
msgid "<b>Telephone</b>"
msgstr "<b>टेलिफोन</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:9
msgid "<b>Web Addresses</b>"
msgstr "<b> वेब ठेगानाहरू</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:10
msgid "<b>Work</b>"
msgstr "<b>काम</b>"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:11
#: ../addressbook/gui/contact-editor/e-contact-editor.c:182
#: ../addressbook/gui/widgets/eab-contact-display.c:348
msgid "AIM"
msgstr "AIM"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:12
#: ../addressbook/gui/contact-editor/e-contact-editor.c:270
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:169
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.etspec.h:1
#: ../addressbook/gui/widgets/e-minicard.c:181
msgid "Contact"
msgstr "सम्पर्क"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:13
#: ../addressbook/gui/contact-editor/e-contact-editor.c:531
msgid "Contact Editor"
msgstr "सम्पर्क संपादक"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:14
msgid "Full _Name..."
msgstr "पुरा _नाम..."

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:15
msgid "Image"
msgstr "चित्र"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:16
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:66
msgid "MSN Messenger"
msgstr "एमएसएन हुलाकी"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:17
msgid "Mailing Address"
msgstr "हुलाक ठेगाना"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:18
msgid "Ni_ckname:"
msgstr "उ_पनाम:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:19
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:63
msgid "Novell Groupwise"
msgstr "नोवेल सामुहिक"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:21
msgid "Personal Information"
msgstr "व्यक्तिगत जानकारी"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:22
msgid "Telephone"
msgstr "टेलिफोन"

#. red
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:23
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:235
#: ../addressbook/gui/contact-editor/e-contact-editor.c:199
#: ../filter/filter-label.c:122 ../mail/em-migrate.c:1042
#: ../mail/mail-config.c:77 ../mail/mail-config.glade.h:153
msgid "Work"
msgstr "काम"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:24
#: ../addressbook/gui/contact-editor/fulladdr.glade.h:6
msgid "_Address:"
msgstr "_ठेगाना:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:25
msgid "_Anniversary:"
msgstr "_वार्षिक उत्सब:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:26
msgid "_Assistant:"
msgstr "_सहायक:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:27
msgid "_Birthday:"
msgstr "_जन्म दिबस:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:28
#: ../plugins/itip-formatter/itip-view.c:1631
msgid "_Calendar:"
msgstr "_पात्रो:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:29
msgid "_Categories"
msgstr "_कोटिहरू"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:30
msgid "_City:"
msgstr "_शहर:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:31
msgid "_Company:"
msgstr "_कम्पनी:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:32
msgid "_Country:"
msgstr "_देश:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:33
msgid "_Department:"
msgstr "_विभाग:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:34
msgid "_File under:"
msgstr "_फाईल अन्डर:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:35
msgid "_Free/Busy:"
msgstr "_मुक्त/ब्यस्त:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:36
msgid "_Home Page:"
msgstr "_मुख्य पृष्ठ:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:37
msgid "_Manager:"
msgstr "_प्रबन्धक:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:38
msgid "_Notes:"
msgstr "_टिप्पणीहरू:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:39
msgid "_Office:"
msgstr "_कार्यालय:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:40
#: ../addressbook/gui/contact-editor/fulladdr.glade.h:7
msgid "_PO Box:"
msgstr "_पोष्ट बक्स:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:41
msgid "_Profession:"
msgstr "_पेशा:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:42
msgid "_Spouse:"
msgstr "_Spouse:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:43
#: ../addressbook/gui/contact-editor/fulladdr.glade.h:8
msgid "_State/Province:"
msgstr "स्थिति:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:44
#: ../addressbook/gui/contact-editor/fullname.glade.h:18
msgid "_Title:"
msgstr "_शीर्षक:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:45
msgid "_Video Chat:"
msgstr "_भिडिओ(दृष्य) कुराकानी:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:46
msgid "_Wants to receive HTML mail"
msgstr "_HTML मेल प्राप्त गर्न इच्छुक"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:47
msgid "_Web Log:"
msgstr "_वेब लग:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:48
#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:13
msgid "_Where:"
msgstr "_कहाँ:"

#: ../addressbook/gui/contact-editor/contact-editor.glade.h:49
msgid "_Zip/Postal Code:"
msgstr "_जिप/पोष्टल कोड:"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:96
#: ../addressbook/gui/widgets/eab-contact-display.c:367
#: ../addressbook/gui/widgets/eab-contact-display.c:382
msgid "Address"
msgstr "ठेगाना"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:103
#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:95
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:141
#: ../addressbook/gui/contact-editor/e-contact-editor.c:298
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:183
#: ../addressbook/gui/widgets/e-addressbook-model.c:310
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:398
#: ../addressbook/gui/widgets/e-minicard-label.c:164
#: ../addressbook/gui/widgets/e-minicard-view-widget.c:121
#: ../addressbook/gui/widgets/e-minicard-view.c:519
#: ../addressbook/gui/widgets/e-minicard.c:174
#: ../widgets/table/e-cell-text.c:1768 ../widgets/text/e-entry.c:1312
#: ../widgets/text/e-entry.c:1313 ../widgets/text/e-text.c:3584
#: ../widgets/text/e-text.c:3585
msgid "Editable"
msgstr "संपादन गर्न योग्य"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:136
msgid "United States"
msgstr "संयुक्त राष्ट्र"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:137
msgid "Afghanistan"
msgstr "अफगानिस्तान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:138
msgid "Albania"
msgstr "अल्बानिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:139
msgid "Algeria"
msgstr "अल्जेरिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:140
msgid "American Samoa"
msgstr "अमेरिकन समाओ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:141
msgid "Andorra"
msgstr "एन्डोरा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:142
msgid "Angola"
msgstr "एनगोला"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:143
msgid "Anguilla"
msgstr "एनगुला"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:144
msgid "Antarctica"
msgstr "एन्टार्कटिका"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:145
msgid "Antigua And Barbuda"
msgstr "एन्टिगुआ र बारबुडा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:146
msgid "Argentina"
msgstr "अर्जेन्टिना"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:147
msgid "Armenia"
msgstr "आर्मेनिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:148
msgid "Aruba"
msgstr "अरुवा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:149
msgid "Australia"
msgstr "अष्ट्रेलिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:150
msgid "Austria"
msgstr "अष्ट्रिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:151
msgid "Azerbaijan"
msgstr "अजरबेजान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:152
msgid "Bahamas"
msgstr "बहामास्"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:153
msgid "Bahrain"
msgstr "बहराइन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:154
msgid "Bangladesh"
msgstr "बंगलादेश"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:155
msgid "Barbados"
msgstr "बारबाडोस"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:156
msgid "Belarus"
msgstr "बेलारूस"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:157
msgid "Belgium"
msgstr "बेल्जियम"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:158
msgid "Belize"
msgstr "बेलिज"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:159
msgid "Benin"
msgstr "बेनिन्"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:160
msgid "Bermuda"
msgstr "बरमुढा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:161
msgid "Bhutan"
msgstr "भुटान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:162
msgid "Bolivia"
msgstr "बोलिभिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:163
msgid "Bosnia And Herzegowina"
msgstr "बोस्निया एन्ड हर्जगोविना"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:164
msgid "Botswana"
msgstr "बोट्सवाना"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:165
msgid "Bouvet Island"
msgstr "बोउवेट आइस्ल्यान्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:166
msgid "Brazil"
msgstr "ब्राजिल"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:167
msgid "British Indian Ocean Territory"
msgstr "बृटिश इन्डियन ओशियन क्षेत्र"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:168
msgid "Brunei Darussalam"
msgstr "ब्रुनाई दारुसलाम"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:169
msgid "Bulgaria"
msgstr "बुलगेरिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:170
msgid "Burkina Faso"
msgstr "बुर्किना फासो"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:171
msgid "Burundi"
msgstr "बुरण्डी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:172
msgid "Cambodia"
msgstr "क्याम्बोडिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:173
msgid "Cameroon"
msgstr "क्यामरुन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:174
msgid "Canada"
msgstr "क्यानडा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:175
msgid "Cape Verde"
msgstr "केप वर्दी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:176
msgid "Cayman Islands"
msgstr "सैम्यान द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:177
msgid "Central African Republic"
msgstr "केन्द्रिय अफ्रिकी गणराज्य"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:178
msgid "Chad"
msgstr "चाद"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:179
msgid "Chile"
msgstr "चिली"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:180
msgid "China"
msgstr "चीन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:181
msgid "Christmas Island"
msgstr "क्रिसमस द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:182
msgid "Cocos (Keeling) Islands"
msgstr "कोकोस (किलिङ्) द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:183
msgid "Colombia"
msgstr "कोलम्बिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:184
msgid "Comoros"
msgstr "कोमोरोस"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:185
msgid "Congo"
msgstr "कोङ्गो"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:186
msgid "Congo, The Democratic Republic Of The"
msgstr "कोङ्गो प्रजातान्त्रिक गणतन्त्र "

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:187
msgid "Cook Islands"
msgstr "कुक द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:188
msgid "Costa Rica"
msgstr "कोस्टारिका"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:189
msgid "Cote d'Ivoire"
msgstr "कोट ड'लवोइर"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:190
msgid "Croatia"
msgstr "क्रोएशिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:191
msgid "Cuba"
msgstr "क्यूबा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:192
msgid "Cyprus"
msgstr "साइप्रस"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:193
msgid "Czech Republic"
msgstr "चेक गणतन्त्र"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:194
msgid "Denmark"
msgstr "डेनमार्क"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:195
msgid "Djibouti"
msgstr "जिबोउटी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:196
msgid "Dominica"
msgstr "डोमिनिका"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:197
msgid "Dominican Republic"
msgstr "डोमिनिकन रिपब्लिक"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:198
msgid "Ecuador"
msgstr "इक्वेडर"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:199
msgid "Egypt"
msgstr "इजिप्ट्"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:200
msgid "El Salvador"
msgstr "इ साल्भाडोर"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:201
msgid "Equatorial Guinea"
msgstr "इक्वेटरियल जिनीया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:202
msgid "Eritrea"
msgstr "एरिट्रिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:203
msgid "Estonia"
msgstr "इस्टोनिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:204
msgid "Ethiopia"
msgstr "इथियोपिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:205
msgid "Falkland Islands"
msgstr "फकल्याण्ड द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:206
msgid "Faroe Islands"
msgstr "फारो द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:207
msgid "Fiji"
msgstr "फिजी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:208
msgid "Finland"
msgstr "फिन्ल्यान्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:209
msgid "France"
msgstr "फ्रान्स"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:210
msgid "French Guiana"
msgstr "फ्रेन्च  गुइआना"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:211
msgid "French Polynesia"
msgstr "फ्रेन्च पोलिनेसीया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:212
msgid "French Southern Territories"
msgstr "फ्रेन्च दक्षिणी क्षेत्रहरु"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:213
msgid "Gabon"
msgstr "गाबोन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:214
msgid "Gambia"
msgstr "गाम्बीया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:215
msgid "Georgia"
msgstr "जर्जिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:216
msgid "Germany"
msgstr "जर्मनी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:217
msgid "Ghana"
msgstr "घाना"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:218
msgid "Gibraltar"
msgstr "गिब्रिलटार"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:219
msgid "Greece"
msgstr "ग्रीस"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:220
msgid "Greenland"
msgstr "ग्रिनल्याण्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:221
msgid "Grenada"
msgstr "ग्रिनाडा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:222
msgid "Guadeloupe"
msgstr "ग्वादेलोप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:223
msgid "Guam"
msgstr "ग्वाम"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:224
msgid "Guatemala"
msgstr "ग्वाटेमाला"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:225
msgid "Guernsey"
msgstr "ग्वेर्नेसी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:226
msgid "Guinea"
msgstr "जिनिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:227
msgid "Guinea-bissau"
msgstr "जिनिया-बिस्साउ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:228
msgid "Guyana"
msgstr "गुयाना"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:229
msgid "Haiti"
msgstr "हैटि"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:230
msgid "Heard And McDonald Islands"
msgstr "हर्ड एन्ड म्याकडोनाल्ड द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:231
msgid "Holy See"
msgstr "होली सी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:232
msgid "Honduras"
msgstr "हन्डुरस्"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:233
msgid "Hong Kong"
msgstr "हङकङ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:234
msgid "Hungary"
msgstr "हङ्गेरी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:235
msgid "Iceland"
msgstr "आइसल्याण्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:236
msgid "India"
msgstr "भारत"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:237
msgid "Indonesia"
msgstr "इन्डोनेसिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:238
msgid "Iran"
msgstr "इरान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:239
msgid "Iraq"
msgstr "इराक"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:240
msgid "Ireland"
msgstr "आयरल्याण्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:241
msgid "Isle of Man"
msgstr "इस्ले अफ म्यान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:242
msgid "Israel"
msgstr "इज्रायल"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:243
msgid "Italy"
msgstr "इटाली"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:244
msgid "Jamaica"
msgstr "जमैका"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:245
msgid "Japan"
msgstr "जापान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:246
msgid "Jersey"
msgstr "जर्सी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:247
msgid "Jordan"
msgstr "जोर्डन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:248
msgid "Kazakhstan"
msgstr "काजखास्तान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:249
msgid "Kenya"
msgstr "केन्या"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:250
msgid "Kiribati"
msgstr "किरिबाटी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:251
msgid "Korea, Democratic People's Republic Of"
msgstr "कोरिया, प्रजातान्त्रिक जनताको गणतन्त्र"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:252
msgid "Korea, Republic Of"
msgstr "कोरिया, गणतन्त्र"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:253
msgid "Kuwait"
msgstr "कुवेत"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:254
msgid "Kyrgyzstan"
msgstr "किर्जिस्तान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:255
msgid "Laos"
msgstr "लावोस्"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:256
msgid "Latvia"
msgstr "लातवियाा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:257
msgid "Lebanon"
msgstr "लेबनान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:258
msgid "Lesotho"
msgstr "लेसोथो"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:259
msgid "Liberia"
msgstr "लिबेरीया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:260
msgid "Libya"
msgstr "लिब्या"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:261
msgid "Liechtenstein"
msgstr "लिचटेन्सटाइन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:262
msgid "Lithuania"
msgstr "लिथुआनिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:263
msgid "Luxembourg"
msgstr "लक्जेम्बर्ग"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:264
msgid "Macao"
msgstr "मकाओ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:265
msgid "Macedonia"
msgstr "मसेडोनिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:266
msgid "Madagascar"
msgstr "मदगास्कार"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:267
msgid "Malawi"
msgstr "मालावी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:268
msgid "Malaysia"
msgstr "मलेशिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:269
msgid "Maldives"
msgstr "मालदिव्स"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:270
msgid "Mali"
msgstr "माली"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:271
msgid "Malta"
msgstr "माल्टा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:272
msgid "Marshall Islands"
msgstr "मार्शल द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:273
msgid "Martinique"
msgstr "मार्टिनिक"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:274
msgid "Mauritania"
msgstr "माउरिटानिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:275
msgid "Mauritius"
msgstr "माउरिसस"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:276
msgid "Mayotte"
msgstr "मायोट्टे"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:277
msgid "Mexico"
msgstr "मेक्सिको"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:278
msgid "Micronesia"
msgstr "माइक्रोनेसिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:279
msgid "Moldova, Republic Of"
msgstr "मोलदोवा, गणतन्त्र"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:280
msgid "Monaco"
msgstr "मोनाको"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:281
msgid "Mongolia"
msgstr "मोङ्गोलिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:282
msgid "Montserrat"
msgstr "मोनसेराट"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:283
msgid "Morocco"
msgstr "मोरक्को"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:284
msgid "Mozambique"
msgstr "मोजाम्बिक"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:285
msgid "Myanmar"
msgstr "म्यान्मार"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:286
msgid "Namibia"
msgstr "नामिबिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:287
msgid "Nauru"
msgstr "नाउरु"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:288
msgid "Nepal"
msgstr "नेपाल"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:289
msgid "Netherlands"
msgstr "नेदरल्याण्ड्स"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:290
msgid "Netherlands Antilles"
msgstr "नेदरल्याण्ड्स एनटिलेस"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:291
msgid "New Caledonia"
msgstr "नयाँ क्यालेदोनिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:292
msgid "New Zealand"
msgstr "न्युजिल्याण्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:293
msgid "Nicaragua"
msgstr "निकारागुवा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:294
msgid "Niger"
msgstr "निगर"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:295
msgid "Nigeria"
msgstr "नाइजेरिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:296
msgid "Niue"
msgstr "निउ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:297
msgid "Norfolk Island"
msgstr "नर फक द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:298
msgid "Northern Mariana Islands"
msgstr "नर्दन मरिआना द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:299
msgid "Norway"
msgstr "नर्वे"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:300
msgid "Oman"
msgstr "ओमन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:301
msgid "Pakistan"
msgstr "पाकिस्तान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:302
msgid "Palau"
msgstr "पालाउ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:303
msgid "Palestinian Territory"
msgstr "पेलेस्टिनियन क्षेत्र"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:304
msgid "Panama"
msgstr "पानामा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:305
msgid "Papua New Guinea"
msgstr "पपुवा न्यू जिनियााँ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:306
msgid "Paraguay"
msgstr "पराग्वे"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:307
msgid "Peru"
msgstr "पेरु"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:308
msgid "Philippines"
msgstr "फलिपिन्स"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:309
msgid "Pitcairn"
msgstr "पितकैरन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:310
msgid "Poland"
msgstr "पोल्याण्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:311
msgid "Portugal"
msgstr "पोर्चुगल"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:312
msgid "Puerto Rico"
msgstr "पुरटोरिको"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:313
msgid "Qatar"
msgstr "कतार"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:314
msgid "Reunion"
msgstr "रियूनियन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:315
msgid "Romania"
msgstr "रोमानिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:316
msgid "Russian Federation"
msgstr "रसियन संघिय"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:317
msgid "Rwanda"
msgstr "रवाण्डा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:318
msgid "Saint Kitts And Nevis"
msgstr "सेन्ट किट्स एन्ड नेविस्"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:319
msgid "Saint Lucia"
msgstr "सेन्ट लुसिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:320
msgid "Saint Vincent And The Grenadines"
msgstr "सेन्ट विन्सेन्ट एन्ड दि ग्रेनेडिन्स"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:321
msgid "Samoa"
msgstr "समाओ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:322
msgid "San Marino"
msgstr "सान मारिनो"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:323
msgid "Sao Tome And Principe"
msgstr "साओ टोम एन्ड प्रिन्सिप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:324
msgid "Saudi Arabia"
msgstr "साउदी अरब"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:325
msgid "Senegal"
msgstr "सेनेगल"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:326
msgid "Serbia And Montenegro"
msgstr "सरबिया एन्ड मोन्टेनेग्रो"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:327
msgid "Seychelles"
msgstr "सिचेल्लिस"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:328
msgid "Sierra Leone"
msgstr "साइरा लिओनरा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:329
msgid "Singapore"
msgstr "सिंगापुर"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:330
msgid "Slovakia"
msgstr "स्लोभाकिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:331
msgid "Slovenia"
msgstr "स्लोभेनिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:332
msgid "Solomon Islands"
msgstr "सोलोमन द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:333
msgid "Somalia"
msgstr "सोमालिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:334
msgid "South Africa"
msgstr "दक्षिण अफ्रिका"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:335
msgid "South Georgia And The South Sandwich Islands"
msgstr "दक्षिण जर्जिया र दक्षिण सान्डविच द्विप्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:336
msgid "Spain"
msgstr "स्पेन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:337
msgid "Sri Lanka"
msgstr "श्री लङ्का"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:338
msgid "St. Helena"
msgstr "सेन्ट हेलिना"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:339
msgid "St. Pierre And Miquelon"
msgstr "सेन्ट पियरे र मिकलोन्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:340
msgid "Sudan"
msgstr "सुडान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:341
msgid "Suriname"
msgstr "सुरिनेम"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:342
msgid "Svalbard And Jan Mayen Islands"
msgstr "स्वालबार्ड र जान मायेन द्विपवरी"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:343
msgid "Swaziland"
msgstr "स्वजिल्याण्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:344
msgid "Sweden"
msgstr "स्विडेन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:345
msgid "Switzerland"
msgstr "स्विजरल्याण्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:346
msgid "Syria"
msgstr "सिरिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:347
msgid "Taiwan"
msgstr "ताइवान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:348
msgid "Tajikistan"
msgstr "ताजिकिस्तान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:349
msgid "Tanzania, United Republic Of"
msgstr "तान्जेनिया, संयुक्त गणतन्त्र"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:350
msgid "Thailand"
msgstr "थाइल्याण्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:351
msgid "Timor-Leste"
msgstr "टिमोर-लेस्टे"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:352
msgid "Togo"
msgstr "टोगो"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:353
msgid "Tokelau"
msgstr "टोकेलाउ"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:354
msgid "Tonga"
msgstr "टोङ्गा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:355
msgid "Trinidad And Tobago"
msgstr "ट्रिनिदाद र टोबागो्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:356
msgid "Tunisia"
msgstr "टुनिसिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:357
msgid "Turkey"
msgstr "टर्की"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:358
msgid "Turkmenistan"
msgstr "टुर्कमेनिस्तान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:359
msgid "Turks And Caicos Islands"
msgstr "टुर्क्स र काइकस द्विप्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:360
msgid "Tuvalu"
msgstr "टुवालु"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:361
msgid "Uganda"
msgstr "उगान्डा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:362
msgid "Ukraine"
msgstr "उक्रेइन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:363
msgid "United Arab Emirates"
msgstr "संयुक्त अरब इमिरेट्स"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:364
msgid "United Kingdom"
msgstr "संयुक्त अधिराज्य"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:365
msgid "United States Minor Outlying Islands"
msgstr "संयुक्त राज्य माइनर आउट लाइङ द्विप"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:366
msgid "Uruguay"
msgstr "उरुग्वे"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:367
msgid "Uzbekistan"
msgstr "उज्बेकिस्तान"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:368
msgid "Vanuatu"
msgstr "वानुआटु"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:369
msgid "Venezuela"
msgstr "वेनेजुएला"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:370
msgid "Viet Nam"
msgstr "भिएतनाम"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:371
msgid "Virgin Islands, British"
msgstr "भर्जिन द्विप, बेलायत"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:372
msgid "Virgin Islands, U.S."
msgstr "भर्जिन द्विप, संयुक्त राज्य"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:373
msgid "Wallis And Futuna Islands"
msgstr "वालिस र फटुना द्विप्ड"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:374
msgid "Western Sahara"
msgstr "पश्चिमी सहारा"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:375
msgid "Yemen"
msgstr "येमेन"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:376
msgid "Zambia"
msgstr "जाम्बिया"

#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:377
msgid "Zimbabwe"
msgstr "जिम्बावे"

#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:89
#: ../plugins/plugin-manager/plugin-manager.c:44
#: ../plugins/save-attachments/save-attachments.c:362
#: ../widgets/menus/gal-view-new-dialog.c:73
msgid "Name"
msgstr "नाम"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:62
msgid "AOL Instant Messenger"
msgstr "एओएल छिटो म्यासेन्जर"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:64
#: ../addressbook/gui/contact-editor/e-contact-editor.c:183
#: ../addressbook/gui/widgets/eab-contact-display.c:351
msgid "Jabber"
msgstr "जब्बार"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:65
msgid "Yahoo Messenger"
msgstr "याहु म्यासेन्जर"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:67
#: ../addressbook/gui/contact-editor/e-contact-editor.c:186
#: ../addressbook/gui/widgets/eab-contact-display.c:350
msgid "ICQ"
msgstr "आसिक्यु"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:118
msgid "Service"
msgstr "सेवा"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:127
#: ../calendar/gui/dialogs/cal-prefs-dialog.c:587
#: ../calendar/gui/e-cal-list-view.etspec.h:3
#: ../plugins/save-calendar/csv-format.c:400
msgid "Location"
msgstr "स्थान"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:134
msgid "Username"
msgstr "प्रयोगकर्ताको नाम"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:231
#: ../addressbook/gui/contact-editor/e-contact-editor.c:200
msgid "Home"
msgstr "मुख्य पृष्ठ"

#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:239
#: ../addressbook/gui/contact-editor/e-contact-editor.c:201
msgid "Other"
msgstr "अन्य"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:184
#: ../addressbook/gui/widgets/eab-contact-display.c:353
msgid "Yahoo"
msgstr "याहु"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:185
#: ../addressbook/gui/widgets/eab-contact-display.c:352
msgid "MSN"
msgstr "एमएसएन"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:187
#: ../addressbook/gui/widgets/eab-contact-display.c:349
msgid "GroupWise"
msgstr "सामुहिक रुपमा"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:256
msgid "Source Book"
msgstr "स्रोत पुस्तक"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:263
msgid "Target Book"
msgstr "लक्षित पुस्तकतक"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:277
msgid "Is New Contact"
msgstr "नयाँ सम्पर्क हो"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:284
msgid "Writable Fields"
msgstr "लेखनीय क्षेत्रहरू"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:291
msgid "Required Fields"
msgstr "आबस्यक क्षेत्रहरू"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:305
msgid "Changed"
msgstr "परिबर्तित"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:2578
msgid "Please select an image for this contact"
msgstr "कृपया यस संपर्कका लागि एउटा चित्र छनौट गर्नुहोस्ि"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:2579
msgid "No image"
msgstr "चित्र छैन"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:2855
msgid ""
"The contact data is invalid:\n"
"\n"
msgstr ""
"यो संपर्क डाटा अमान्य छ:\n"
"\n"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:2907
msgid "Invalid contact."
msgstr "अमान्य.संपर्क"

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:277
msgid "Contact Quick-Add"
msgstr "सम्पर्क छिटो-जोड"

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:280
msgid "_Edit Full"
msgstr "_पुरा संपादन"

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:306
msgid "_Full name:"
msgstr "_पुरा नाम:"

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:316
msgid "E-_mail:"
msgstr "ई _मेल:"

#: ../addressbook/gui/contact-editor/eab-editor.c:323
#, fuzzy, c-format
msgid ""
"Are you sure you want\n"
"to delete contact list (%s) ?"
msgstr ""
"के तपाईँ \n"
" यी संपर्कहरू मेट्न साँच्चै नै चाहनुहुन्छ?"

#: ../addressbook/gui/contact-editor/eab-editor.c:326
#, fuzzy
msgid ""
"Are you sure you want\n"
"to delete these contact lists?"
msgstr ""
"के तपाईँ \n"
" यी संपर्कहरू मेट्न साँच्चै नै चाहनुहुन्छ?"

#: ../addressbook/gui/contact-editor/eab-editor.c:331
#, fuzzy, c-format
msgid ""
"Are you sure you want\n"
"to delete contact (%s) ?"
msgstr ""
"के तपाईँ \n"
" यी संपर्कहरू मेट्न साँच्चै नै चाहनुहुन्छ?"

#: ../addressbook/gui/contact-editor/eab-editor.c:334
msgid ""
"Are you sure you want\n"
"to delete these contacts?"
msgstr ""
"के तपाईँ \n"
" यी संपर्कहरू मेट्न साँच्चै नै चाहनुहुन्छ?"

#: ../addressbook/gui/contact-editor/fulladdr.glade.h:2
msgid "Address _2:"
msgstr "ठेगाना _2:"

#: ../addressbook/gui/contact-editor/fulladdr.glade.h:3
msgid "Ci_ty:"
msgstr "श_हर:"

#: ../addressbook/gui/contact-editor/fulladdr.glade.h:4
msgid "Countr_y:"
msgstr "देशो:"

#: ../addressbook/gui/contact-editor/fulladdr.glade.h:5
msgid "Full Address"
msgstr "पुरा ठेगाना"

#: ../addressbook/gui/contact-editor/fulladdr.glade.h:9
msgid "_ZIP Code:"
msgstr "_जीप कोड:"

#: ../addressbook/gui/contact-editor/fullname.glade.h:2
msgid "Dr."
msgstr "डा."

#: ../addressbook/gui/contact-editor/fullname.glade.h:3
msgid "Esq."
msgstr "Esq."

#: ../addressbook/gui/contact-editor/fullname.glade.h:4
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:15
msgid "Full Name"
msgstr "पुरा नाम"

#: ../addressbook/gui/contact-editor/fullname.glade.h:5
msgid "I"
msgstr "I"

#: ../addressbook/gui/contact-editor/fullname.glade.h:6
msgid "II"
msgstr "II"

#: ../addressbook/gui/contact-editor/fullname.glade.h:7
msgid "III"
msgstr "III"

#: ../addressbook/gui/contact-editor/fullname.glade.h:8
msgid "Jr."
msgstr "ज."

#: ../addressbook/gui/contact-editor/fullname.glade.h:9
msgid "Miss"
msgstr "सुश्री."

#: ../addressbook/gui/contact-editor/fullname.glade.h:10
msgid "Mr."
msgstr "श्री."

#: ../addressbook/gui/contact-editor/fullname.glade.h:11
msgid "Mrs."
msgstr "श्रीमति."

#: ../addressbook/gui/contact-editor/fullname.glade.h:12
msgid "Ms."
msgstr "Ms."

#: ../addressbook/gui/contact-editor/fullname.glade.h:13
msgid "Sr."
msgstr "Sr."

#: ../addressbook/gui/contact-editor/fullname.glade.h:14
msgid "_First:"
msgstr "_पहिलो:"

#: ../addressbook/gui/contact-editor/fullname.glade.h:15
msgid "_Last:"
msgstr "_अन्तिम:"

#: ../addressbook/gui/contact-editor/fullname.glade.h:16
msgid "_Middle:"
msgstr "_बिचको:"

#: ../addressbook/gui/contact-editor/fullname.glade.h:17
msgid "_Suffix:"
msgstr "_प्रत्यय:"

#: ../addressbook/gui/contact-editor/im.glade.h:2
msgid "Add IM Account"
msgstr "आइएम खा/ख थपाता"

#: ../addressbook/gui/contact-editor/im.glade.h:3
msgid "_Account name:"
msgstr "_खाताको नाम:ा:"

#: ../addressbook/gui/contact-editor/im.glade.h:4
msgid "_IM Service:"
msgstr "_आइएम सेवा:"

#: ../addressbook/gui/contact-editor/im.glade.h:5
#: ../plugins/calendar-weather/calendar-weather.c:410
msgid "_Location:"
msgstr "_स्थान:"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:1
msgid "\n"
msgstr "\n"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:4
msgid "Add an email to the List"
msgstr "एउटा नयाँ इमेल सूचीमा थप"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:5
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:817
msgid "Contact List Editor"
msgstr "सम्पर्क सूची संपादक"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:6
#, fuzzy
msgid "Insert email addresses from Address Book"
msgstr "ठेगाना पुस्तिका बाट इमेल ठेगाना मिलाउनुहोस्तक"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:7
msgid "Members"
msgstr "सदस्यहरू"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:8
msgid "Remove an email address from the List"
msgstr "सूचीबाट एउटा इमेल ठेगाना हटाउनुहोस्"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:9
msgid "_Hide addresses when sending mail to this list"
msgstr "_यस सूचीमा पत्र पठाउँदा ठेगानाहरू लुकाऊ"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:10
msgid "_List name:"
msgstr "_सूचीको नाम:"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:11
msgid "_Select"
msgstr "_छनोट गर"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:12
msgid "_Type an email address or drag a contact into the list below:"
msgstr "_इमेल ठेगाना टाइप गर वा तलको सूची भित्र एउटा संपर्क तान्नुहोस:"

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:162
#: ../addressbook/gui/widgets/e-addressbook-model.c:296
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:384
#: ../addressbook/gui/widgets/e-addressbook-view.c:222
#: ../addressbook/gui/widgets/e-minicard-view-widget.c:107
#: ../addressbook/gui/widgets/e-minicard-view.c:505
msgid "Book"
msgstr "पुस्तक"

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:176
msgid "Is New List"
msgstr "नयाँ सूची हो"

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:707
msgid "_Members"
msgstr "_सदस्यहरू"

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:710
msgid "Contact List Members"
msgstr "सम्पर्क सूची सदस्यहरू"

#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.glade.h:1
msgid "Changed Contact:"
msgstr "परिबर्तित सम्पर्क:"

#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.glade.h:2
msgid "Conflicting Contact:"
msgstr "द्वन्दात्मक स्सम्पर्क:"

#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.glade.h:3
#: ../addressbook/gui/merging/eab-contact-duplicate-detected.glade.h:1
msgid "Duplicate Contact Detected"
msgstr "दोहोरो संपर्क पत्ता लगाउने"

#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.glade.h:4
msgid ""
"The changed email or name of this contact already\n"
"exists in this folder.  Would you like to add it anyway?"
msgstr ""
"पहिलेनै परिवर्तित संपर्क इमेल वा नाम\n"
" यस फोल्डरमा रहने, के तपाईँ जसरीपनि यसलाई थप्न चाहनु हुन्छ?"

#: ../addressbook/gui/merging/eab-contact-duplicate-detected.glade.h:2
msgid "New Contact:"
msgstr "नयाँ सम्पर्क:"

#: ../addressbook/gui/merging/eab-contact-duplicate-detected.glade.h:3
msgid "Original Contact:"
msgstr "मुख्य संपर्क:"

#: ../addressbook/gui/merging/eab-contact-duplicate-detected.glade.h:4
msgid ""
"The name or email address of this contact already exists\n"
"in this folder.  Would you like to add it anyway?"
msgstr ""
"पहिलेकै परिवर्तित संपर्क नाम वा इमेल ठेगाना \n"
" यस फोल्डरमा रहने, के तपाईँ जसरीपनि यसलाई थप्न चाहनु हुन्छ?"

#. FIXME: get the toplevel window...
#: ../addressbook/gui/search/e-addressbook-search-dialog.c:160
#: ../widgets/misc/e-filter-bar.c:156
msgid "Advanced Search"
msgstr "आधुनिक _खोज"

#: ../addressbook/gui/widgets/e-addressbook-model.c:148
msgid "No contacts"
msgstr "संपर्क ठेगानाहरू छैनन"

#: ../addressbook/gui/widgets/e-addressbook-model.c:151
#, c-format
msgid "%d contact"
msgid_plural "%d contacts"
msgstr[0] "%d संपर्क"
msgstr[1] "%d संपर्क"

#: ../addressbook/gui/widgets/e-addressbook-model.c:303
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:391
#: ../addressbook/gui/widgets/e-addressbook-view.c:236
#: ../addressbook/gui/widgets/e-minicard-view-widget.c:114
#: ../addressbook/gui/widgets/e-minicard-view.c:512
msgid "Query"
msgstr "प्रश्नहरू"

#: ../addressbook/gui/widgets/e-addressbook-model.c:446
msgid "Error getting book view"
msgstr "पुस्तक देखाउदा गल्ती"

#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:405
#: ../widgets/table/e-table-click-to-add.c:503
#: ../widgets/table/e-table-selection-model.c:311
#: ../widgets/table/e-table.c:3344
#: ../widgets/table/e-tree-selection-model.c:825
#: ../widgets/text/e-entry.c:1235 ../widgets/text/e-entry.c:1236
#: ../widgets/text/e-text.c:3448 ../widgets/text/e-text.c:3449
msgid "Model"
msgstr "नमुना"

#: ../addressbook/gui/widgets/e-addressbook-table-adapter.c:103
msgid "Error modifying card"
msgstr "कार्ड संसोधन गर्दा गल्ती"

#: ../addressbook/gui/widgets/e-addressbook-view.c:168
msgid "Name begins with"
msgstr "सँगै सुरुहुने नाम"

#: ../addressbook/gui/widgets/e-addressbook-view.c:169
msgid "Email begins with"
msgstr "सँगै सुरु हुने इमेल"

#: ../addressbook/gui/widgets/e-addressbook-view.c:170
#: ../calendar/gui/cal-search-bar.c:53
msgid "Category is"
msgstr "समूह "

#. We attach subitems below
#: ../addressbook/gui/widgets/e-addressbook-view.c:171
#: ../calendar/gui/cal-search-bar.c:48
msgid "Any field contains"
msgstr "कुनै क्षेत्र "

#: ../addressbook/gui/widgets/e-addressbook-view.c:172
#: ../addressbook/gui/widgets/e-addressbook-view.c:177
msgid "Advanced..."
msgstr "आधुनिक."

#: ../addressbook/gui/widgets/e-addressbook-view.c:229
msgid "Source"
msgstr "स्रोत"

#: ../addressbook/gui/widgets/e-addressbook-view.c:243
#: ../calendar/gui/dialogs/meeting-page.etspec.h:11
#: ../calendar/gui/e-calendar-table.etspec.h:13
#: ../calendar/gui/e-meeting-list-view.c:370
#: ../calendar/gui/e-meeting-time-sel.etspec.h:11
msgid "Type"
msgstr "प्रकार"

#: ../addressbook/gui/widgets/e-addressbook-view.c:543
msgid "Address Book"
msgstr "ठेगाना पुस्तक"

#: ../addressbook/gui/widgets/e-addressbook-view.c:806
#: ../addressbook/gui/widgets/e-addressbook-view.c:924
#: ../addressbook/gui/widgets/e-addressbook-view.c:1986
#: ../ui/evolution-addressbook.xml.h:19
msgid "Save as VCard..."
msgstr "भि कार्ड संग्रह गर्नुस."

#: ../addressbook/gui/widgets/e-addressbook-view.c:920
msgid "New Contact..."
msgstr "नयाँ सम्पर्क."

#: ../addressbook/gui/widgets/e-addressbook-view.c:921
msgid "New Contact List..."
msgstr "नयाँ सम्पर्क सूची."

#: ../addressbook/gui/widgets/e-addressbook-view.c:925
#: ../ui/evolution-addressbook.xml.h:10
msgid "Forward Contact"
msgstr "सम्पर्क अगाडि पठाउ"

#: ../addressbook/gui/widgets/e-addressbook-view.c:926
msgid "Send Message to Contact"
msgstr "सम्पर्कका लागि खबर पठाऊ"

#: ../addressbook/gui/widgets/e-addressbook-view.c:927
#: ../calendar/gui/calendar-commands.c:120 ../calendar/gui/print.c:2501
#: ../ui/evolution-addressbook.xml.h:16 ../ui/evolution-calendar.xml.h:19
#: ../ui/evolution-mail-message.xml.h:74 ../ui/evolution-tasks.xml.h:14
msgid "Print"
msgstr "टंकण"

#: ../addressbook/gui/widgets/e-addressbook-view.c:930
msgid "Copy to Address Book..."
msgstr " ठेगाना पुस्तिकामा नक्कल गर्नुहोस्"

#: ../addressbook/gui/widgets/e-addressbook-view.c:931
msgid "Move to Address Book..."
msgstr "ठेगाना पुस्तिका.सार्नुहोस्"

#: ../addressbook/gui/widgets/e-addressbook-view.c:934
#: ../ui/evolution-addressbook.xml.h:6 ../ui/evolution-tasks.xml.h:4
msgid "Cut"
msgstr "काट"

#: ../addressbook/gui/widgets/e-addressbook-view.c:935
#: ../calendar/gui/calendar-component.c:536
#: ../calendar/gui/tasks-component.c:440 ../ui/evolution-addressbook.xml.h:2
#: ../ui/evolution-mail-message.xml.h:11 ../ui/evolution-tasks.xml.h:2
msgid "Copy"
msgstr "नक्कल गर्नु"

#: ../addressbook/gui/widgets/e-addressbook-view.c:936
#: ../ui/evolution-addressbook.xml.h:13 ../ui/evolution-tasks.xml.h:11
msgid "Paste"
msgstr "टाँस"

#. All, unmatched, separator
#: ../addressbook/gui/widgets/e-addressbook-view.c:1539
#: ../calendar/gui/cal-search-bar.c:346
msgid "Any Category"
msgstr "कुनै समूह "

#: ../addressbook/gui/widgets/e-addressbook-view.c:1738
msgid "Print cards"
msgstr "कार्ड टंकण गर"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:1
msgid "Assistant"
msgstr "सहयोगी"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:2
msgid "Assistant Phone"
msgstr "सहयोगी फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:3
msgid "Business Fax"
msgstr "व्यापार फ्याक्स"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:4
msgid "Business Phone"
msgstr "व्यापारिक फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:5
msgid "Business Phone 2"
msgstr "व्यापारिक फोन २"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:6
msgid "Callback Phone"
msgstr "दोहोरो फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:7
msgid "Car Phone"
msgstr "कार फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:8
#: ../calendar/gui/dialogs/task-page.glade.h:6
#: ../calendar/gui/e-cal-list-view.etspec.h:1
#: ../calendar/gui/e-calendar-table.etspec.h:3
msgid "Categories"
msgstr "कोटिहरू"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:9
msgid "Company Phone"
msgstr "कम्पनी फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:10
#: ../addressbook/gui/widgets/eab-contact-display.c:562
#: ../smime/lib/e-cert.c:826
msgid "Email"
msgstr "इमेल"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:11
#: ../addressbook/gui/widgets/eab-popup-control.c:441
msgid "Email 2"
msgstr "इमेल २"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:12
#: ../addressbook/gui/widgets/eab-popup-control.c:451
msgid "Email 3"
msgstr "इमेल ३"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:13
msgid "Family Name"
msgstr "पारिवारिक नाम"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:14
msgid "File As"
msgstr "फाईल जस्तोकी"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:16
msgid "Given Name"
msgstr "दिइएको नाम"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:17
msgid "Home Fax"
msgstr "घरको फ्याक्स"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:18
msgid "Home Phone"
msgstr "घरको फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:19
msgid "Home Phone 2"
msgstr "घरको फोन २"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:20
msgid "ISDN Phone"
msgstr "आई एस डि एन फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:21
msgid "Journal"
msgstr "जर्नल"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:22
msgid "Manager"
msgstr "प्रबन्धक"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:23
#: ../addressbook/gui/widgets/eab-contact-display.c:381
msgid "Mobile Phone"
msgstr "मोबाइल फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:24
msgid "Nickname"
msgstr "उपनाम"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:25
#: ../addressbook/gui/widgets/eab-contact-display.c:392
msgid "Note"
msgstr "टिप्पणी"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:26
msgid "Office"
msgstr "कार्यालाय"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:27
#: ../addressbook/gui/widgets/eab-contact-display.c:362
msgid "Organization"
msgstr "संस्था"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:28
msgid "Other Fax"
msgstr "अन्य फ्याक्स"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:29
msgid "Other Phone"
msgstr "अन्य फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:30
msgid "Pager"
msgstr "पेजर"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:31
msgid "Primary Phone"
msgstr "प्राथमिक फोन"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:32
msgid "Radio"
msgstr "रेडियो"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:33
#: ../calendar/gui/dialogs/meeting-page.etspec.h:9
#: ../calendar/gui/e-meeting-list-view.c:378
#: ../calendar/gui/e-meeting-time-sel.etspec.h:9
msgid "Role"
msgstr "भुमिका"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:34
msgid "Spouse"
msgstr "Spouse"

#. Translators: This is a vcard standard and stands for the type of
#. phone used by the hearing impaired. TTY stands for "teletype"
#. (familiar from Unix device names), and TDD is "Telecommunications
#. Device for Deaf". However, you probably want to leave this
#. abbreviation unchanged unless you know that there is actually a
#. different and established translation for this in your language.
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:41
msgid "TTYTDD"
msgstr "TTYTDD"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:42
msgid "Telex"
msgstr "टेलेक्स"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:43
msgid "Title"
msgstr "शीर्षक"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:44
msgid "Unit"
msgstr "एकाइ"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:45
msgid "Web Site"
msgstr "वेब साइटजाल"

#: ../addressbook/gui/widgets/e-minicard-label.c:115
#: ../addressbook/gui/widgets/e-minicard.c:137
#: ../widgets/misc/e-canvas-vbox.c:96 ../widgets/misc/e-canvas-vbox.c:97
#: ../widgets/misc/e-reflow.c:1437 ../widgets/misc/e-reflow.c:1438
#: ../widgets/table/e-table-click-to-add.c:517
#: ../widgets/table/e-table-col.c:98
#: ../widgets/table/e-table-field-chooser-item.c:667
#: ../widgets/table/e-table-group-leaf.c:629
#: ../widgets/table/e-table-group-leaf.c:630
#: ../widgets/table/e-table-item.c:3008 ../widgets/table/e-table-item.c:3009
#: ../widgets/text/e-text.c:3626 ../widgets/text/e-text.c:3627
msgid "Width"
msgstr "चौडाई"

#: ../addressbook/gui/widgets/e-minicard-label.c:122
#: ../addressbook/gui/widgets/e-minicard.c:144
#: ../widgets/misc/e-canvas-vbox.c:108 ../widgets/misc/e-canvas-vbox.c:109
#: ../widgets/misc/e-reflow.c:1445 ../widgets/misc/e-reflow.c:1446
#: ../widgets/table/e-table-click-to-add.c:524
#: ../widgets/table/e-table-field-chooser-item.c:674
#: ../widgets/table/e-table-group-leaf.c:622
#: ../widgets/table/e-table-group-leaf.c:623
#: ../widgets/table/e-table-item.c:3014 ../widgets/table/e-table-item.c:3015
#: ../widgets/text/e-text.c:3634 ../widgets/text/e-text.c:3635
msgid "Height"
msgstr "उचाई"

#: ../addressbook/gui/widgets/e-minicard-label.c:129
#: ../addressbook/gui/widgets/e-minicard.c:152
msgid "Has Focus"
msgstr "हास फोकस"

#: ../addressbook/gui/widgets/e-minicard-label.c:136
msgid "Field"
msgstr "क्षेत्र"

#: ../addressbook/gui/widgets/e-minicard-label.c:143
msgid "Field Name"
msgstr "क्षेत्रको नाम"

#: ../addressbook/gui/widgets/e-minicard-label.c:150
msgid "Text Model"
msgstr "पाठ नमुना"

#: ../addressbook/gui/widgets/e-minicard-label.c:157
msgid "Max field name length"
msgstr "बढीमा क्षेत्रको लम्बाई"

#: ../addressbook/gui/widgets/e-minicard-view-widget.c:128
msgid "Column Width"
msgstr "स्तम्भ चौडाई"

#: ../addressbook/gui/widgets/e-minicard-view.c:171
msgid ""
"\n"
"\n"
"Search for the Contact\n"
"\n"
"or double-click here to create a new Contact."
msgstr ""
"\n"
"\n"
"संपर्कका लागि खोज \n"
"\n"
"वा नयाँ संपर्क बनाउन यहाँ दुई पटक दबाउनु होला।"

#: ../addressbook/gui/widgets/e-minicard-view.c:174
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"
"यहाँ यस दृष्यका लागि देखाउने कुनै प्रकार छैनागि खोज \n"
"\n"
"नयाँ संपर्क बनाउन यहाँ दुई पटक दबाउनु होला।"

#: ../addressbook/gui/widgets/e-minicard-view.c:179
msgid ""
"\n"
"\n"
"Search for the Contact."
msgstr ""
"\n"
"\n"
"संपर्कका लागि खोज।"

#: ../addressbook/gui/widgets/e-minicard-view.c:181
msgid ""
"\n"
"\n"
"There are no items to show in this view."
msgstr ""
"\n"
"\n"
"यहाँ यस दृष्यका लागि देखाउने कुनै प्रकार छैनागि खोज।"

#: ../addressbook/gui/widgets/e-minicard-view.c:498
msgid "Adapter"
msgstr "एडप्टर"

#: ../addressbook/gui/widgets/e-minicard.c:160
msgid "Selected"
msgstr "छानिएको"

#: ../addressbook/gui/widgets/e-minicard.c:167
msgid "Has Cursor"
msgstr "हास कर्सर"

#: ../addressbook/gui/widgets/eab-contact-display.c:135
#: ../addressbook/gui/widgets/eab-contact-display.c:198
msgid "(map)"
msgstr "(नक्सा)"

#: ../addressbook/gui/widgets/eab-contact-display.c:145
#: ../addressbook/gui/widgets/eab-contact-display.c:211
msgid "map"
msgstr "नक्सा"

#: ../addressbook/gui/widgets/eab-contact-display.c:276
#: ../addressbook/gui/widgets/eab-contact-display.c:543
msgid "List Members"
msgstr "सदस्यहरूको सूची"

#: ../addressbook/gui/widgets/eab-contact-display.c:339
#: ../addressbook/gui/widgets/eab-contact-display.c:341
msgid "E-mail"
msgstr "इमेलत्र"

#: ../addressbook/gui/widgets/eab-contact-display.c:363
msgid "Position"
msgstr "अवस्था"

#: ../addressbook/gui/widgets/eab-contact-display.c:364
msgid "Video Conferencing"
msgstr "भिडिओ(दृष्य) सम्मेलित"

#: ../addressbook/gui/widgets/eab-contact-display.c:365
#: ../addressbook/gui/widgets/eab-contact-display.c:380
msgid "Phone"
msgstr "फोन"

#: ../addressbook/gui/widgets/eab-contact-display.c:366
msgid "Fax"
msgstr "फ्याक्स"

#: ../addressbook/gui/widgets/eab-contact-display.c:370
msgid "work"
msgstr "काम"

#: ../addressbook/gui/widgets/eab-contact-display.c:377
msgid "WWW"
msgstr "WWW"

#: ../addressbook/gui/widgets/eab-contact-display.c:378
#: ../addressbook/gui/widgets/eab-contact-display.c:597
msgid "Blog"
msgstr "ब्लग"

#: ../addressbook/gui/widgets/eab-contact-display.c:385
msgid "personal"
msgstr "ब्यक्तिगत"

#: ../addressbook/gui/widgets/eab-contact-display.c:558
msgid "Job Title"
msgstr "पेशाम शीर्षक"

#: ../addressbook/gui/widgets/eab-contact-display.c:589
msgid "Home page"
msgstr "मुख्य पृष्ठ"

#. E_BOOK_ERROR_OK
#: ../addressbook/gui/widgets/eab-gui-util.c:49
msgid "Success"
msgstr "सफल"

#. E_BOOK_ERROR_INVALID_ARG
#. E_BOOK_ERROR_BUSY
#: ../addressbook/gui/widgets/eab-gui-util.c:51
msgid "Backend busy"
msgstr "ब्यस्त"

#. E_BOOK_ERROR_REPOSITORY_OFFLINE
#: ../addressbook/gui/widgets/eab-gui-util.c:52
msgid "Repository offline"
msgstr "रिपोजिटरी अफलाइन"

#. E_BOOK_ERROR_NO_SUCH_BOOK
#: ../addressbook/gui/widgets/eab-gui-util.c:53
msgid "Address Book does not exist"
msgstr "ठेगाना पुस्तक अस्तित्वमा छैन"

#. E_BOOK_ERROR_NO_SELF_CONTACT
#: ../addressbook/gui/widgets/eab-gui-util.c:54
msgid "No Self Contact defined"
msgstr "आफैँ परिभाषित संपर्क छैन"

#. E_BOOK_ERROR_URI_NOT_LOADED
#. E_BOOK_ERROR_URI_ALREADY_LOADED
#. E_BOOK_ERROR_PERMISSION_DENIED
#: ../addressbook/gui/widgets/eab-gui-util.c:57
msgid "Permission denied"
msgstr "अनुमति निषेध"

#. E_BOOK_ERROR_CONTACT_NOT_FOUND
#: ../addressbook/gui/widgets/eab-gui-util.c:58
msgid "Contact not found"
msgstr "सम्पर्क फेला पारिएन"

#. E_BOOK_ERROR_CONTACT_ID_ALREADY_EXISTS
#: ../addressbook/gui/widgets/eab-gui-util.c:59
msgid "Contact ID already exists"
msgstr "सम्पर्क परिचय पहिलेनै छ"

#. E_BOOK_ERROR_PROTOCOL_NOT_SUPPORTED
#: ../addressbook/gui/widgets/eab-gui-util.c:60
msgid "Protocol not supported"
msgstr "प्रोटोकललाई सहारा दिदैनन"

#. E_BOOK_ERROR_CANCELLED
#: ../addressbook/gui/widgets/eab-gui-util.c:61
#: ../calendar/gui/dialogs/task-details-page.glade.h:3
#: ../calendar/gui/e-cal-component-preview.c:232
#: ../calendar/gui/e-cal-model-tasks.c:347
#: ../calendar/gui/e-cal-model-tasks.c:660
#: ../calendar/gui/e-calendar-table.c:458 ../calendar/gui/print.c:2364
msgid "Cancelled"
msgstr "रद्द गरियो"

#. E_BOOK_ERROR_COULD_NOT_CANCEL
#: ../addressbook/gui/widgets/eab-gui-util.c:62
msgid "Could not cancel"
msgstr "रद्द गर्न सकेन"

#. E_BOOK_ERROR_AUTHENTICATION_FAILED
#: ../addressbook/gui/widgets/eab-gui-util.c:63
#: ../calendar/gui/comp-editor-factory.c:431
msgid "Authentication Failed"
msgstr "प्रमाणीकरण असफल"

#. E_BOOK_ERROR_AUTHENTICATION_REQUIRED
#: ../addressbook/gui/widgets/eab-gui-util.c:64
msgid "Authentication Required"
msgstr "प्रमाणिकरणिआबस्यकज्यो"

#. E_BOOK_ERROR_TLS_NOT_AVAILABLE
#: ../addressbook/gui/widgets/eab-gui-util.c:65
msgid "TLS not Available"
msgstr "टिएलएस उपलब्ध छैन"

#. E_BOOK_ERROR_CORBA_EXCEPTION
#. E_BOOK_ERROR_NO_SUCH_SOURCE
#: ../addressbook/gui/widgets/eab-gui-util.c:67
msgid "No such source"
msgstr "यस्तो कुनै श्रोत छैन"

#. E_BOOK_ERROR_OTHER_ERROR
#: ../addressbook/gui/widgets/eab-gui-util.c:68
msgid "Other error"
msgstr "अन्य गल्ती"

#: ../addressbook/gui/widgets/eab-gui-util.c:90
msgid ""
"We were unable to open this addressbook. This either means this book is not "
"marked for offline usage or not yet downloaded for offline usage. Please "
"load the addressbook once in online mode to download its contents"
msgstr ""
"हामी यो ठेगाना पुस्तिका खोल्न असक्षम थियौँ। यो या त अफ लाइन प्रयोगका लागि संकेत "
"गरिएको थिएन वा अफ लाइन प्रयोगका लगि अहिले सम्म डाउनलोड गरिएको छैन। कृपया विषयवस्तु "
"डाउनलोडका लागि ठेगाना पुस्तिका एकपटक अन लाइन मोडमा लोड गर्नुहोस्।"

#: ../addressbook/gui/widgets/eab-gui-util.c:98
msgid ""
"We were unable to open this addressbook.  Please check that the path exists "
"and that you have permission to access it."
msgstr ""
"हामी यो ठेगाना पुस्तिका खोल्न असक्षम थियौँ। कृपया अहिलेको बाटो जाँच गर्नुहोला जुन "
"तपाईँलाई यसको पहुँचका लागि अनुमति छ।ोल and."

#: ../addressbook/gui/widgets/eab-gui-util.c:105
msgid ""
"We were unable to open this addressbook.  This either means you have entered "
"an incorrect URI, or the LDAP server is unreachable."
msgstr ""
"यो ठेगाना पुस्तिका खोल्न हामी असमर्थ भयौँ। यसको अर्थ या तपाईँ गलत युआरआइ मा छिर्नुभएको "
"छ अथवा एलडिएपी सर्भर पहुँच बाहिर छ।"

#: ../addressbook/gui/widgets/eab-gui-util.c:110
msgid ""
"This version of Evolution does not have LDAP support compiled in to it.  If "
"you want to use LDAP in Evolution, you must install an LDAP-enabled "
"Evolution package."
msgstr ""
"यो इभोलुसन संस्करणमा एलडिएपि सहारा समेटिएको छैन।  यदि तपाईँ इभोलुसनमा एलडिएपि प्रयोग "
"गर्न चाहनुहुन्छ भने तपाईँले अनिबार्य एउटा एलडिएपि-कृयाशिल इभोलुसन प्याकेज न स्थापना "
"गर्नुपर्छ।इ."

#: ../addressbook/gui/widgets/eab-gui-util.c:117
msgid ""
"We were unable to open this addressbook.  This either means you have entered "
"an incorrect URI, or the server is unreachable."
msgstr ""
"यो ठेगाना पुस्तिका खोल्न हामी असमर्थ भयौँ। या तपाईँ गलत युआरआइ मा छिर्नुभएको छ अथपी "
"सर्भर पहुँच बाहिर छ।"

#: ../addressbook/gui/widgets/eab-gui-util.c:137
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 ""
"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."

#: ../addressbook/gui/widgets/eab-gui-util.c:143
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 ""
"कार्यान्वयन गर्ने समयमा यस क्वेरीले सिमित सर्भरला बढायो वा यो सिमितता\n"
" तपाईँले यस ठेगाना पुस्तिकाको लागि बनाएको हो। कृपया तपाईँको खोजलाई\n"
"अझ निश्चित वा डाइरेक्टरी सर्भरको ठेगाना पुस्तिकाको लागि समय सिमितता\n"
"प्राथमिकताहरू ब्बढाउनुहो।k."

#: ../addressbook/gui/widgets/eab-gui-util.c:149
msgid "The backend for this addressbook was unable to parse this query."
msgstr "ठेगाना पुस्तिकाको लागि अन्तिम-पछिल्लोले यस क्वेरीलाई पर्से गर्न सकेन। "

#: ../addressbook/gui/widgets/eab-gui-util.c:152
msgid "The backend for this addressbook refused to perform this query."
msgstr ""
"ठेगाना पुस्तिकाको लागि अन्तिम-पछिल्लोले यस क्वेरीको कार्य गर्न अस्विकार गर्यो।सकेन। "

#: ../addressbook/gui/widgets/eab-gui-util.c:155
msgid "This query did not complete successfully."
msgstr "यस क्वेरी सफलताका साथ सम्पन्न भएन।"

#: ../addressbook/gui/widgets/eab-gui-util.c:177
msgid "Error adding list"
msgstr "गल्ती थप सूची"

#: ../addressbook/gui/widgets/eab-gui-util.c:177
#: ../addressbook/gui/widgets/eab-gui-util.c:675
msgid "Error adding contact"
msgstr "संपर्क थप गर्दा गल्ती"

#: ../addressbook/gui/widgets/eab-gui-util.c:188
msgid "Error modifying list"
msgstr "गल्ती परिष्कृत सूची"

#: ../addressbook/gui/widgets/eab-gui-util.c:188
msgid "Error modifying contact"
msgstr "गल्ती परिष्कृत संपर्क्ती"

#: ../addressbook/gui/widgets/eab-gui-util.c:200
msgid "Error removing list"
msgstr "गल्ती सूची"

#: ../addressbook/gui/widgets/eab-gui-util.c:200
#: ../addressbook/gui/widgets/eab-gui-util.c:633
msgid "Error removing contact"
msgstr "गल्ती हटाउने संपर्कल्ती"

#: ../addressbook/gui/widgets/eab-gui-util.c:282
#, c-format
msgid ""
"Opening %d contact will open %d new window as well.\n"
"Do you really want to display this contact?"
msgid_plural ""
"Opening %d contacts will open %d new windows as well.\n"
"Do you really want to display all of these contacts?"
msgstr[0] "खोल नयाँ विन्डो?"
msgstr[1] ""
"नायाँ संझ्याल झैँ d खोल्दा संपर्क %d खुल्नेछ ।nDके तपाईँ साँच्चै नै यो संपर्क लाई देखाउन चाहनुहुन्छ।"

#: ../addressbook/gui/widgets/eab-gui-util.c:311
#, c-format
msgid ""
"%s already exists\n"
"Do you want to overwrite it?"
msgstr ""
"%s पहिलेनै अस्तित्वमा छ\n"
"के तपाईँ यसलाई अधिलेखन गर्नु हुन्छ?"

#: ../addressbook/gui/widgets/eab-gui-util.c:315
msgid "Overwrite"
msgstr "अधिलेखन"

#. more than one, finding the total number of contacts might
#. * hit performance while saving large number of contacts
#.
#: ../addressbook/gui/widgets/eab-gui-util.c:360
#: ../addressbook/gui/widgets/eab-gui-util.c:363
#, fuzzy
msgid "contact"
msgid_plural "contacts"
msgstr[0] "सम्पर्क"
msgstr[1] "सम्पर्क"

#. This is a filename. Translators take note.
#: ../addressbook/gui/widgets/eab-gui-util.c:410
msgid "card.vcf"
msgstr "कार्ड.vcf"

# भिसिएफ"
# भिसिएफ"
#: ../addressbook/gui/widgets/eab-gui-util.c:580
msgid "list"
msgstr "सूची"

#: ../addressbook/gui/widgets/eab-gui-util.c:729
msgid "Move contact to"
msgstr "संपर्क सार्नु"

#: ../addressbook/gui/widgets/eab-gui-util.c:731
msgid "Copy contact to"
msgstr "संपर्क नक्कल गर्नु"

#: ../addressbook/gui/widgets/eab-gui-util.c:734
msgid "Move contacts to"
msgstr "संपर्कहरू सार्नु"

#: ../addressbook/gui/widgets/eab-gui-util.c:736
msgid "Copy contacts to"
msgstr "संपर्कहरू नक्कल गर्नु"

#: ../addressbook/gui/widgets/eab-gui-util.c:739
msgid "Select target addressbook."
msgstr "लक्षित ठेगाना पुस्तिका छनोट गर"

#: ../addressbook/gui/widgets/eab-gui-util.c:962
msgid "Multiple VCards"
msgstr "बहुमुखी भिकार्डहरू"

#: ../addressbook/gui/widgets/eab-gui-util.c:965
#, c-format
msgid "VCard for %s"
msgstr "भिकार्ड %s लागि"

#.
#. * 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
#. * contact.
#.
#: ../addressbook/gui/widgets/eab-popup-control.c:198
msgid "(none)"
msgstr "(कोही पनि छैन)"

#: ../addressbook/gui/widgets/eab-popup-control.c:431
msgid "Primary Email"
msgstr "प्राथमिक इमेल"

#: ../addressbook/gui/widgets/eab-popup-control.c:567
msgid "Select an Action"
msgstr "एउटा कार्य गर"

#: ../addressbook/gui/widgets/eab-popup-control.c:575
#, c-format
msgid "Create a new contact \"%s\""
msgstr "एउटा नयाँ संपर्क बनाऊ \"%s\""

#: ../addressbook/gui/widgets/eab-popup-control.c:591
#, c-format
msgid "Add address to existing contact \"%s\""
msgstr "हाल भएको संपर्कमा ठेगाना थप्नुहोस् \"%s\""

#: ../addressbook/gui/widgets/eab-popup-control.c:869
msgid "Querying Address Book..."
msgstr "ठेगाना पुस्तिका क्वेरी गर"

#: ../addressbook/gui/widgets/eab-popup-control.c:970
msgid "Merge E-Mail Address"
msgstr "इमेल ठेगाना एउटैमा मिलाउनुहोस ठेगाना"

#: ../addressbook/gui/widgets/eab-vcard-control.c:139
#, c-format
msgid "There is one other contact."
msgid_plural "There are %d other contacts."
msgstr[0] "त्यहाँ एउटा अर्को.संपर्क छ।"
msgstr[1] "अर्को."

#: ../addressbook/gui/widgets/eab-vcard-control.c:223
#: ../addressbook/gui/widgets/eab-vcard-control.c:272
msgid "Show Full VCard"
msgstr "पुरा भि कार्ड देखाऊ।"

#: ../addressbook/gui/widgets/eab-vcard-control.c:227
msgid "Show Compact VCard"
msgstr "कम्प्याक्ट भि कार्ड देखाऊ"

#: ../addressbook/gui/widgets/eab-vcard-control.c:277
msgid "Save in addressbook"
msgstr "ठेगाना पुस्तिकामा संग्रह गर्नुहोस्"

#: ../addressbook/gui/widgets/gal-view-factory-minicard.c:25
msgid "Card View"
msgstr "कार्ड दृष्य"

#: ../addressbook/gui/widgets/gal-view-factory-treeview.c:26
msgid "GTK Tree View"
msgstr "जिटिके ट्री दृष्य"

#: ../addressbook/importers/GNOME_Evolution_Addressbook_LDIF_Importer.server.in.in.h:1
msgid "Evolution LDIF importer"
msgstr "इभोलुसन एलडिआइएफ इम्पोर्टर"

#: ../addressbook/importers/GNOME_Evolution_Addressbook_LDIF_Importer.server.in.in.h:2
msgid "LDAP Data Interchange Format (.ldif)"
msgstr "एलडिएपी डाटा प्रारूप अदल-बदल गर्नुहोस् (.ldif)"

#: ../addressbook/importers/GNOME_Evolution_Addressbook_VCard_Importer.server.in.in.h:1
msgid "Evolution VCard Importer"
msgstr "इभोलुसन भि कार्ड इम्पोर्टर"

#: ../addressbook/importers/GNOME_Evolution_Addressbook_VCard_Importer.server.in.in.h:2
msgid "VCard (.vcf, .gcrd)"
msgstr "भि कार्ड (.vcf, .gcrd)"

#: ../addressbook/printing/e-contact-print-envelope.c:213
#: ../addressbook/printing/e-contact-print-envelope.c:234
msgid "Print envelope"
msgstr "खाम छाप्नुहोस्"

#: ../addressbook/printing/e-contact-print.c:1001
msgid "Print contacts"
msgstr "संपर्कहरू छाप्नुहोस्"

#: ../addressbook/printing/e-contact-print.c:1066
#: ../addressbook/printing/e-contact-print.c:1093
msgid "Print contact"
msgstr "संपर्क छाप्नुहोस्"

#: ../addressbook/printing/e-contact-print.glade.h:1
msgid "10 pt. Tahoma"
msgstr "10 pt. टाहोमा"

#: ../addressbook/printing/e-contact-print.glade.h:2
msgid "8 pt. Tahoma"
msgstr "8 pt. टाहोमा"

#: ../addressbook/printing/e-contact-print.glade.h:3
msgid "Blank forms at end:"
msgstr "अन्त्यमा खालि फारमहरु:ा/तिर:"

#: ../addressbook/printing/e-contact-print.glade.h:4
msgid "Body"
msgstr "मुख्य भाग"

#: ../addressbook/printing/e-contact-print.glade.h:5
msgid "Bottom:"
msgstr "तल:"

#: ../addressbook/printing/e-contact-print.glade.h:6
msgid "Dimensions:"
msgstr "आयामहरू:"

#: ../addressbook/printing/e-contact-print.glade.h:7
msgid "F_ont..."
msgstr "फण्ट..."

#: ../addressbook/printing/e-contact-print.glade.h:8
msgid "Fonts"
msgstr "फण्टहरूरु"

#: ../addressbook/printing/e-contact-print.glade.h:9
msgid "Footer:"
msgstr "फुटरो भाग:"

#: ../addressbook/printing/e-contact-print.glade.h:10
msgid "Format"
msgstr "ढाँचाारूप"

#: ../addressbook/printing/e-contact-print.glade.h:11
#: ../widgets/table/e-table-click-to-add.c:496
#: ../widgets/table/e-table-field-chooser-dialog.c:91
#: ../widgets/table/e-table-field-chooser-item.c:660
#: ../widgets/table/e-table-field-chooser.c:93
#: ../widgets/table/e-table-header-item.c:1831
#: ../widgets/table/e-table-selection-model.c:318
msgid "Header"
msgstr "हेडरलो भागको टीका"

#: ../addressbook/printing/e-contact-print.glade.h:12
msgid "Header/Footer"
msgstr "हेडर/फुटर"

#: ../addressbook/printing/e-contact-print.glade.h:13
msgid "Headings"
msgstr "शीर्षकहरू"

#: ../addressbook/printing/e-contact-print.glade.h:14
msgid "Headings for each letter"
msgstr "प्रत्येक पाठको लागि शीर्षकहरू"

#: ../addressbook/printing/e-contact-print.glade.h:15
msgid "Height:"
msgstr "उचाई:"

#: ../addressbook/printing/e-contact-print.glade.h:16
msgid "Immediately follow each other"
msgstr "एक अर्कालाई तत्काल फलो गर"

#: ../addressbook/printing/e-contact-print.glade.h:17
msgid "Include:"
msgstr "सम्मिलित गर्नुहोस्:"

#: ../addressbook/printing/e-contact-print.glade.h:18
msgid "Landscape"
msgstr "ष्य/तेर्सो"

#: ../addressbook/printing/e-contact-print.glade.h:19
msgid "Left:"
msgstr "बायाँ:"

#: ../addressbook/printing/e-contact-print.glade.h:20
msgid "Letter tabs on side"
msgstr "अक्षर ट्याब किनारा"

#: ../addressbook/printing/e-contact-print.glade.h:21
msgid "Margins"
msgstr "मार्जिन"

#: ../addressbook/printing/e-contact-print.glade.h:22
msgid "Number of columns:"
msgstr " स्तम्भहरको संख्याू:"

#: ../addressbook/printing/e-contact-print.glade.h:23
msgid "Options"
msgstr "विकल्पहरु"

#: ../addressbook/printing/e-contact-print.glade.h:24
#: ../e-util/eggtrayicon.c:118
msgid "Orientation"
msgstr "अभिमुखीकरण"

#: ../addressbook/printing/e-contact-print.glade.h:25
msgid "Page"
msgstr "पृष्ठ"

#: ../addressbook/printing/e-contact-print.glade.h:26
msgid "Page Setup:"
msgstr "पृष्ठ सेटअप:"

#: ../addressbook/printing/e-contact-print.glade.h:27
msgid "Paper"
msgstr "कागज"

#: ../addressbook/printing/e-contact-print.glade.h:28
msgid "Paper source:"
msgstr "कागज श्रोत:"

#: ../addressbook/printing/e-contact-print.glade.h:29
msgid "Portrait"
msgstr "पोर्ट्रेट"

#: ../addressbook/printing/e-contact-print.glade.h:30
msgid "Preview:"
msgstr "पुर्वद्रिश्य:"

#: ../addressbook/printing/e-contact-print.glade.h:31
msgid "Print using gray shading"
msgstr "खैरो छायाँ प्रयोग गरेर छाप"

#: ../addressbook/printing/e-contact-print.glade.h:32
msgid "Reverse on even pages"
msgstr "क्रमिक पृष्ठहरू उल्टाउनुहोस "

#: ../addressbook/printing/e-contact-print.glade.h:33
msgid "Right:"
msgstr "दायाँ:"

#: ../addressbook/printing/e-contact-print.glade.h:34
msgid "Sections:"
msgstr "खण्डहरू:"

#: ../addressbook/printing/e-contact-print.glade.h:35
msgid "Shading"
msgstr "छायाँ पार्दै"

#: ../addressbook/printing/e-contact-print.glade.h:36
msgid "Size:"
msgstr "आकार:"

#: ../addressbook/printing/e-contact-print.glade.h:37
msgid "Start on a new page"
msgstr "नयाँ पृष्ठमा शुरु गर्नुहोस्"

#: ../addressbook/printing/e-contact-print.glade.h:38
msgid "Style name:"
msgstr "शैलि नाम:"

#: ../addressbook/printing/e-contact-print.glade.h:39
msgid "Top:"
msgstr "माथि:"

#: ../addressbook/printing/e-contact-print.glade.h:40
#: ../calendar/gui/dialogs/calendar-setup.c:176
msgid "Type:"
msgstr "प्रकार:"

#: ../addressbook/printing/e-contact-print.glade.h:41
msgid "Width:"
msgstr "चौडाई:"

#: ../addressbook/printing/e-contact-print.glade.h:42
msgid "_Font..."
msgstr "फण्ट."

#: ../addressbook/printing/test-contact-print-style-editor.c:53
msgid "Contact Print Style Editor Test"
msgstr "सम्पर्क छपाई शैलि संपादक परिक्षण"

#: ../addressbook/printing/test-contact-print-style-editor.c:54
#: ../addressbook/printing/test-print.c:53
msgid "Copyright (C) 2000, Ximian, Inc."
msgstr "प्रतिलिपि अधिकार (सि) 2000, Ximian, Inc."

#: ../addressbook/printing/test-contact-print-style-editor.c:56
msgid "This should test the contact print style editor widget"
msgstr "यसले संपर्क छपाई शैली संपादक विजेट परिक्षण गर्नु पर्छ।नु "

#: ../addressbook/printing/test-print.c:52
msgid "Contact Print Test"
msgstr "सम्पर्क छपाई परिक्षण"

#: ../addressbook/printing/test-print.c:55
msgid "This should test the contact print code"
msgstr "यसले संपर्क छपाई कोड परिक्षण गर्नु पर्छ।"

#: ../addressbook/tools/evolution-addressbook-export-list-cards.c:657
#: ../addressbook/tools/evolution-addressbook-export-list-cards.c:693
#: ../addressbook/tools/evolution-addressbook-export-list-folders.c:49
msgid "Can not open file"
msgstr "फाइल खोल्न सक्दैन"

#: ../addressbook/tools/evolution-addressbook-export-list-folders.c:43
msgid "Couldn't get list of addressbooks"
msgstr "ठेगाना पुस्तिकाको सूची प्राप्त गर्न सकेनो"

#: ../addressbook/tools/evolution-addressbook-export-list-folders.c:71
msgid "failed to open book"
msgstr "पुस्तक खोल्न असक्षम भयो।"

#: ../addressbook/tools/evolution-addressbook-export.c:56
msgid "Specify the output file instead of standard output"
msgstr "मानक निर्गत भन्दा अर्को निर्गत फाइल निश्चय गर्नु होला"

#: ../addressbook/tools/evolution-addressbook-export.c:57
msgid "OUTPUTFILE"
msgstr "निर्गत फाइल"

#: ../addressbook/tools/evolution-addressbook-export.c:58
msgid "List local addressbook folders"
msgstr "स्थानिय ठेगाना पुस्तिका फोल्डरहरूको सूची"

#: ../addressbook/tools/evolution-addressbook-export.c:60
msgid "Show cards as vcard or csv file"
msgstr "भि  कार्ड वा सिभिएस फाइ जस्ता कार्डहरू देखाउल"

#: ../addressbook/tools/evolution-addressbook-export.c:60
msgid "[vcard|csv]"
msgstr "[vcard|csv]"

#: ../addressbook/tools/evolution-addressbook-export.c:61
msgid "Export in asynchronous mode"
msgstr "असिन्क्रोनस मोडेल मा निर्यात गर्नुस्"

#: ../addressbook/tools/evolution-addressbook-export.c:63
msgid ""
"The number of cards in one output file in asychronous mode, default size 100."
msgstr ""
"एउटा निर्गत फाइल भित्रा असिन्क्रोनस मोमा कार्डहरूको संख्या, पूर्व निर्धारित आकार १००।."

#: ../addressbook/tools/evolution-addressbook-export.c:63
msgid "NUMBER"
msgstr "संख्या"

#: ../addressbook/tools/evolution-addressbook-export.c:91
msgid ""
"Command line arguments error, please use --help option to see the usage."
msgstr ""
"कमाण्ड लाइन तर्क गल्ति, कृपया प्रयोग हेर्नका लागि सहयोग विकल्प प्रयोग गर्नुहोस्।ोग ."

#: ../addressbook/tools/evolution-addressbook-export.c:105
msgid "Only support csv or vcard format."
msgstr "सिभिएस वा भि कार्डलाइ मात्र सहारा दिन्छ।"

#: ../addressbook/tools/evolution-addressbook-export.c:114
msgid "In async mode, output must be file."
msgstr "असिङ्क मोड मा निर्गत फाइल हुनु पर्छ।"

#: ../addressbook/tools/evolution-addressbook-export.c:122
msgid "In normal mode, there is no need for the size option."
msgstr "साधारण मोडमा साइज विकल्पको कुनै आबस्यकता छैन।ई साईज."

#: ../addressbook/tools/evolution-addressbook-export.c:153
msgid "Unhandled error"
msgstr "ह्याण्डल नभएको गल्ती"

#: ../addressbook/tools/evolution-addressbook-import.c:46
msgid "Error loading default addressbook."
msgstr "पूर्वनिर्धारित ठेगाना पुस्तिका लोडिङ गर्दा गल्ति"

#: ../addressbook/tools/evolution-addressbook-import.c:67
msgid "Input File"
msgstr "इनपुट फाईल"

#: ../addressbook/tools/evolution-addressbook-import.c:82
msgid "No filename provided."
msgstr "फाइलको नाम दिइएको छैन।."

#: ../calendar/calendar.error.xml.h:1
msgid ""
" There are few attachments getting downloaded. Saving the appointment will "
"cause the appointment to be saved without those pending attachments "
msgstr ""

#: ../calendar/calendar.error.xml.h:2
msgid ""
" There are few attachments getting downloaded. Saving the task will cause "
"the task to be saved without those pending attachments "
msgstr ""

#: ../calendar/calendar.error.xml.h:3
msgid ""
"Adding a meaningful Summary to your appointment will give your recipients an "
"idea of what your appointment is about."
msgstr ""
"एउटा अर्थपूर्ण शारंश तपाईँको भेट्ने निधोमा थप्दा तपाईँका प्रापकहरूलाई भेट्ने निधोका बारेमा "
"एउटा विचार दिइनेछ।"

#: ../calendar/calendar.error.xml.h:4
msgid ""
"Adding a meaningful Summary to your task will give your recipients an idea "
"of what your task is about."
msgstr ""
"एउटा अर्थपूर्ण शारंश तपाईँको कार्यमा थप्दा तपाईँका प्रापकहरूलाई कार्यधोका बारेमा एउ "
"विचार दिइनेछ।"

#: ../calendar/calendar.error.xml.h:5
msgid ""
"All information in these journal entries will be deleted and can not be "
"restored."
msgstr ""
"यी जर्नल प्रविष्टीहरूका बारेको सबै सूचनाहरू मेटिने छन र पुर्वावस्थामा ल्याउन सकिने छैन।"

#: ../calendar/calendar.error.xml.h:6
msgid ""
"All information in this journal will be deleted and can not be restored."
msgstr "यस जर्नलका बारेको सबै सूचनाहरू मेटिने छन र पुर्वावस्थामा ल्याउन सकिने छैन।"

#: ../calendar/calendar.error.xml.h:7
msgid ""
"All information on these appointments will be deleted and can not be "
"restored."
msgstr "यस भेट्ने निधो बारेको सबै सूचनाहरू मेटिने छन र पुर्वावस्थामा ल्याउन सकिने छैन।"

#: ../calendar/calendar.error.xml.h:8
msgid "All information on these tasks will be deleted and can not be restored."
msgstr ""
"यी कार्यहरूकारविष्टीका बारेको सबै सूचनाहरू मेटिने छन र पुर्वावस्थामा ल्याउन सand होइन."

#: ../calendar/calendar.error.xml.h:9
msgid ""
"All information on this appointment will be deleted and can not be restored."
msgstr ""
"यस भेटघाट निधोा बारेको सबै सूचनाहरू मेटिने छन र पुर्वावस्थामा ल्याउन सकिने छैन।होइन."

#: ../calendar/calendar.error.xml.h:10
msgid ""
"All information on this journal entry will be deleted and can not be "
"restored."
msgstr "यस जर्नल प्रविष्टीका बारेको सबै सूचनाहरू मेटिने छन र पुर्वावस्थामा ल्याउन सकिने छैन।"

#: ../calendar/calendar.error.xml.h:11
msgid ""
"All information on this meeting will be deleted and can not be restored."
msgstr "यस बैठकका सबै सूचनाहरू मेटिने छन र पूर्वावस्थामा ल्याउन सकिने छैन।ोइन."

#: ../calendar/calendar.error.xml.h:12
msgid "All information on this task will be deleted and can not be restored."
msgstr "यस कार्यका सबै सूचनाहरू मेटिने छन र पूर्वावस्थामा ल्याउन सकिने छैन।nd होइन."

#: ../calendar/calendar.error.xml.h:13
msgid "Are you sure you want to delete the '{0}' task?"
msgstr "के तपाईँ साँच्चै नै'{0}' कार्य मेट्न चाहनु हुन्छ?"

#: ../calendar/calendar.error.xml.h:14
msgid "Are you sure you want to delete the appointment titled '{0}'?"
msgstr "के तपाईँ साँच्चै नै भेट्ने निधोको शीर्षक '{0}' मेट्न चाहनुहुन्छ्नु ?"

#: ../calendar/calendar.error.xml.h:15
msgid "Are you sure you want to delete the journal entry '{0}'?"
msgstr "के तपाईँ साँच्चै नै जर्नल प्रविष्टीषक '{0}' मेट्न चाहनुहुन्छ्नु ?"

#: ../calendar/calendar.error.xml.h:16
msgid "Are you sure you want to delete these {0} appointments?"
msgstr "के तपाईँ साँच्चै नै भेट्ने निधोको '{0}' मेट्न चाहनुहुन्छ्नु ?नु ?"

#: ../calendar/calendar.error.xml.h:17
msgid "Are you sure you want to delete these {0} journal entries?"
msgstr "के तपाईँ साँच्चै नै '{0}' यी जर्नल प्रविष्टिहरू मेट्न चाहनुहुन्छ्नु ?"

#: ../calendar/calendar.error.xml.h:18
msgid "Are you sure you want to delete these {0} tasks?"
msgstr "के तपाईँ साँच्चै नै यी{0} कार्यहरू लाई मेट्न चाहनु हुन्छ?"

#: ../calendar/calendar.error.xml.h:19
msgid "Are you sure you want to delete this appointment?"
msgstr "के तपाईँ साँच्चै नै यस भेट्ने निधोलाई मेट्न चाहनु हुन्छ?नु ?"

#: ../calendar/calendar.error.xml.h:20
msgid "Are you sure you want to delete this journal entry?"
msgstr "के तपाईँ साँच्चै नै यस जर्नल इन्ट्रिलाई मेट्न चाहनु हुन्छ?"

#: ../calendar/calendar.error.xml.h:21
msgid "Are you sure you want to delete this meeting?"
msgstr "के तपाईँ साँच्चै नै यस मिटिङलाई मेट्न चाहनु हुन्छ?"

#: ../calendar/calendar.error.xml.h:22
msgid "Are you sure you want to delete this task?"
msgstr "के तपाईँ साँच्चै नै यस कार्यलाई मेट्न चाहनु हुन्छ?"

#: ../calendar/calendar.error.xml.h:23
msgid "Are you sure you want to send the appointment without a summary?"
msgstr "उगkjklet"

#: ../calendar/calendar.error.xml.h:24
msgid "Are you sure you want to send the task without a summary?"
msgstr "के तपाईँ साँच्चै नै शारंश बिना नै कार्यहरू पठाउन चाहनुहुन्छ? "

#: ../calendar/calendar.error.xml.h:25
msgid "Delete calendar '{0}'?"
msgstr "पात्रो मेट्नुहोस्'{0}'?"

#: ../calendar/calendar.error.xml.h:26
msgid "Delete task list '{0}'?"
msgstr "कार्य सूची'{0}'मेट्नुहोस्?"

#: ../calendar/calendar.error.xml.h:27
msgid "Discard Changes"
msgstr " परिवर्तनहरू उपेक्षा गर"

#: ../calendar/calendar.error.xml.h:28
msgid "Don't Send"
msgstr "नपठाउनुहोस्"

#: ../calendar/calendar.error.xml.h:29
#, fuzzy
msgid "Download in progress. Do you want to save the appointment?"
msgstr "के तपाईँ साँच्चै नै यस भेट्ने निधोलाई मेट्न चाहनु हुन्छ?नु ?"

#: ../calendar/calendar.error.xml.h:30
msgid "Download in progress. Do you want to save the task?"
msgstr ""

#: ../calendar/calendar.error.xml.h:31
#, fuzzy
msgid "Editor could not be loaded."
msgstr "यस ठेगाना पुस्तिका खुल्न सकेन."

#: ../calendar/calendar.error.xml.h:32
msgid ""
"Email invitations will be sent to all participants and allow them to RSVP."
msgstr ""
"इमेल निमन्त्रणाहरू सबै सहभागीहरुलाई पठाउने छ र तिनीहरूलाई आरएसभिपि अनुमति दिइन्छ।?इमेल "
"and."

#: ../calendar/calendar.error.xml.h:33
msgid ""
"Email invitations will be sent to all participants and allow them to accept "
"this task."
msgstr "इमेल निमन्त्रणा सबै सहभागीहरूलाई पठाइने छ र यस कार्यलाई स्विकार्न अनुमति दिइनेछ।"

#: ../calendar/calendar.error.xml.h:34
msgid "Error loading calendar"
msgstr "ती पात लोड गर्दा गल्ति्रो"

#: ../calendar/calendar.error.xml.h:35
msgid "Error loading task list"
msgstr "कार्य सूची लोडिङ् गल्ति"

#: ../calendar/calendar.error.xml.h:36
msgid ""
"If you don't send a cancellation notice, the other participants may not know "
"the journal has been deleted."
msgstr ""
"यदि तपाईँले एउटा खारेजी सूचना पठाउनु हुन्न भने अरू सहभागीहरूले जर्नल मेटिइको बारेेज भएको "
"थाह नपाउन सक्छन्न।"

#: ../calendar/calendar.error.xml.h:37
msgid ""
"If you don't send a cancellation notice, the other participants may not know "
"the meeting is canceled."
msgstr ""
"यदि तपाईँले एउटा खारेजी सूचना पठाउनु हुन्न भने अरू सहभागीहरूले बैठक खारेज भएको थाह नपाउन "
"सक्छन्न।"

#: ../calendar/calendar.error.xml.h:38
msgid ""
"If you don't send a cancellation notice, the other participants may not know "
"the task has been deleted."
msgstr ""
"तपाईँले एउटा खारेजी सूचना पठाउनु हुन्न भने अरू सहभागीहरूले मेटिएको कार्यको बारेमा थाह पाउने "
"छैनन्।"

#: ../calendar/calendar.error.xml.h:39
msgid "Save Changes"
msgstr "परिवर्तनहरू संग्रह गर्नुस "

#: ../calendar/calendar.error.xml.h:40
#: ../ui/evolution-message-composer.xml.h:26
msgid "Send"
msgstr "पठाऊ"

#: ../calendar/calendar.error.xml.h:41
msgid "Send Notice"
msgstr "सुचना पठाउनुहोस्"

#: ../calendar/calendar.error.xml.h:42
msgid ""
"Sending updated information allows other participants to keep their "
"calendars up to date."
msgstr "अन्य सहभागीहरूलाई उनीहरूको पात्रो अद्याबधिक गर्न अद्याबधिक सूचना पठाउदै।को."

#: ../calendar/calendar.error.xml.h:43
msgid ""
"Sending updated information allows other participants to keep their task "
"lists up to date."
msgstr "सहभागीहरूलाई उनीहरूको कार्य सूची सहभागीहरूलाई अद्याबधिक सूचना पठाउदै छ।"

#: ../calendar/calendar.error.xml.h:45
msgid "The Evolution calendar has quit unexpectedly."
msgstr "यो इभोलुसन पात्रो अप्रत्यासित रुपमा बन्द भएको छ।्य ."

#: ../calendar/calendar.error.xml.h:46
msgid "The Evolution tasks have quit unexpectedly."
msgstr "यो इभोलुसन कार्यहरू अप्रत्यासित रूपमा बन्द भएको छ।"

#: ../calendar/calendar.error.xml.h:47
msgid "The calendar is not marked for offline usage"
msgstr "पात्रोको अफलाइन प्रयोगका लागि चिन्ह दिइदैन"

#: ../calendar/calendar.error.xml.h:48
msgid "The task list is not marked for offline usage"
msgstr "कार्य सूचीत्रोको अफलाइन प्रयोगका लागि चिन्ह दि।नहोइन"

#: ../calendar/calendar.error.xml.h:49
msgid "This calendar will be removed permanently."
msgstr "यो पात्रो सधैँका लागि हटाइने छ।"

#: ../calendar/calendar.error.xml.h:50
msgid "This task list will be removed permanently."
msgstr "यस कार्य सूची सधैको लागि हटाइने छ।"

#: ../calendar/calendar.error.xml.h:51
msgid "Would you like to save your changes to this appointment?"
msgstr "के तपाईँ यस भेट्ने निधोमा गरिएका परिबर्तनहरू बचत गर्न चाहनुहुन्छ?"

#: ../calendar/calendar.error.xml.h:52
msgid "Would you like to save your changes to this task?"
msgstr "तपाईँ यस कार्यमा गरिएका परिबर्तनहरू बचत गर्न चाहनुहुन्थ्यो की?"

#: ../calendar/calendar.error.xml.h:53
msgid "Would you like to send a cancellation notice for this journal entry?"
msgstr ""
"के तपाईँ साँच्चै नै यस जर्नल इन्ट्रिका लागि एउटा खारेजी सूचना पठाउन मेट्न चाहनथ्यो की हुन्छ?"

#: ../calendar/calendar.error.xml.h:54
msgid "Would you like to send all the participants a cancellation notice?"
msgstr "के तपाईँ साँच्चै नै सबै सहभागिहरूलाई एउटा खारेजी सूचना पठाउन मेट्न चाहनु हुन्छ?"

#: ../calendar/calendar.error.xml.h:55
msgid "Would you like to send meeting invitations to participants?"
msgstr ""
"तपाईँले सहभागीहरूलाई बैठक निमन्त्र्तहरू पठाउन चाहनु हुन्थ्यो की?हरू बचत गर्न चाहनुहुन्छ?"

#: ../calendar/calendar.error.xml.h:56
msgid "Would you like to send this task to participants?"
msgstr "तपाईँले यस कार्यलाई सहभागीहरूलाई पठाउन चाहनु हुन्थ्यो की?"

#: ../calendar/calendar.error.xml.h:57
msgid "Would you like to send updated meeting information to participants?"
msgstr "तपाईँले अध्याबधिक गरिएको बैठक सूचना सहभागीहरूलाई पठाउन चाहनु हुन्थ्यो की?"

#: ../calendar/calendar.error.xml.h:58
msgid "Would you like to send updated task information to participants?"
msgstr "तपाईँ अद्याबधिक गरिएको कार्य सहभागीहरूलाई पठाउन चाहनु हुन्थ्यो कि?"

#: ../calendar/calendar.error.xml.h:60
msgid "You have made changes to this appointment, but not yet saved them."
msgstr "तपाईँले यस भेट्ने निधोमा परिबर्तनहरू गर्नु भएको छ, तर अहिले सम्म बचत गर्नु भएको छैन।"

#: ../calendar/calendar.error.xml.h:61
msgid "You have made changes to this task, but not yet saved them."
msgstr ""
"तपाईँले यस कार्यहरूमा परिबर्तनहरू गर्नुभएको छ,तर अहिले सम्म तिनीहरूलाई बचत गरिएको छैन।?"
"होइन."

#: ../calendar/calendar.error.xml.h:62
msgid "Your calendars will not be available until Evolution is restarted."
msgstr "इभोलुसन पुन सुरू नगरे सम्म तपाईँको पात्रो उपलब्ध हुने छैन।"

#: ../calendar/calendar.error.xml.h:63
msgid "Your tasks will not be available until Evolution is restarted."
msgstr "इभोलुसन पुन सुरू नगरे सम्म यस कार्यहरू प्राप्त हुने छैन।."

#: ../calendar/calendar.error.xml.h:64
#: ../ui/evolution-message-composer.xml.h:49
#: ../ui/evolution-signature-editor.xml.h:15
msgid "_Save"
msgstr "_बचत गर्नु"

#: ../calendar/calendar.error.xml.h:65
#: ../composer/mail-composer.error.xml.h:31 ../mail/mail.error.xml.h:118
msgid "_Send"
msgstr "_पठाऊ"

#: ../calendar/calendar.error.xml.h:66
msgid "{0}."
msgstr "{0}."

#: ../calendar/common/authentication.c:49 ../calendar/gui/e-pub-utils.c:301
#: ../smime/gui/component.c:48
msgid "Enter password"
msgstr "पासवर्ड प्रविष्टि गराउनुहोस्"

#: ../calendar/conduits/calendar/calendar-conduit.c:246
msgid "Split Multi-Day Events:"
msgstr "Split Multi-Day Events:"

#: ../calendar/conduits/calendar/calendar-conduit.c:1359
#: ../calendar/conduits/calendar/calendar-conduit.c:1360
#: ../calendar/conduits/todo/todo-conduit.c:879
#: ../calendar/conduits/todo/todo-conduit.c:880
msgid "Could not start evolution-data-server"
msgstr "इभोलुसन-लगत-सर्भर सुरू गर्न सकेन"

#: ../calendar/conduits/calendar/calendar-conduit.c:1468
#: ../calendar/conduits/calendar/calendar-conduit.c:1471
msgid "Could not read pilot's Calendar application block"
msgstr "पाइलट को  पात्रो अनुप्रयो ब्लक पढ्न सकेनग"

#: ../calendar/conduits/todo/todo-conduit.c:234
msgid "Default Priority:"
msgstr "पूर्वनिर्धारित प्राथमिकता:"

#: ../calendar/conduits/todo/todo-conduit.c:959
#: ../calendar/conduits/todo/todo-conduit.c:962
msgid "Could not read pilot's ToDo application block"
msgstr "पाइलटको ToDo  अनुप्रयो ब्लक पढ्न सकेन ग"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:1
msgid "Calendar and Tasks"
msgstr "पात्रो र कार्यहरु"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:2
#: ../calendar/gui/calendar-component.c:1292
msgid "Calendars"
msgstr "पात्रोहरू"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:3
msgid "Configure your timezone, Calendar and Task List here "
msgstr "समय क्षेत्र, पात्रो र कार्य सूची यहाँ कन्फिगर गरो and सूची "

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:4
msgid "Evolution Calendar and Tasks"
msgstr "इभोलुसन पात्रो र कार्यहरु"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:5
msgid "Evolution Calendar configuration control"
msgstr "इभोलुसन पात्रोको बनावट नियन्त्रण"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:6
msgid "Evolution Calendar scheduling message viewer"
msgstr "इभोलुसन पात्रो कार्य तालिका सन्देश देखाउने"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:7
msgid "Evolution Calendar/Task editor"
msgstr "इभोलुसन पात्रो/कार्य सम्पादक"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:8
msgid "Evolution's Calendar component"
msgstr "इभोलुसन पात्रोको अवयव"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:9
msgid "Evolution's Tasks component"
msgstr "इभोलुसनको कार्यहरु अवयव"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:10
#: ../calendar/gui/e-tasks.c:1222 ../calendar/gui/print.c:1822
#: ../calendar/gui/tasks-component.c:519 ../calendar/gui/tasks-component.c:994
#: ../calendar/gui/tasks-control.c:408
#: ../calendar/importers/icalendar-importer.c:83
#: ../calendar/importers/icalendar-importer.c:701
#: ../plugins/groupwise-features/camel-gw-listener.c:383
msgid "Tasks"
msgstr "कार्यहरु"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:11
msgid "_Calendars"
msgstr "_पात्रोहरू"

#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:12
#: ../views/tasks/galview.xml.h:3
msgid "_Tasks"
msgstr "_कार्यहरु"

#: ../calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in.h:1
msgid "Evolution Calendar alarm notification service"
msgstr "इभोलुसन पात्रो अलार्म सूचना सेवा"

#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:115
msgid "minute"
msgid_plural "minutes"
msgstr[0] "मिनेट"
msgstr[1] "मिनेट"

#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:215
#, fuzzy
msgid "Start time"
msgstr "शुरु समय:"

#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:312
#, c-format
msgid ""
"<big><b>%s</b></big>\n"
"%s until %s"
msgstr ""

#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:1
#, fuzzy
msgid "Appointments"
msgstr "भेट्ने निधो"

#. Location
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:2
#: ../calendar/gui/e-itip-control.c:1118
#: ../plugins/itip-formatter/itip-view.c:863
msgid "Location:"
msgstr "स्थान:"

#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:3
msgid "Snooze _time:"
msgstr "स्नुज _समय:"

#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:4
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:51
#: ../calendar/gui/dialogs/recurrence-page.glade.h:6
#: ../filter/filter.glade.h:11 ../mail/mail-config.glade.h:158
#: ../ui/evolution-addressbook.xml.h:34 ../ui/evolution-calendar.xml.h:41
#: ../ui/evolution-composer-entries.xml.h:8
#: ../ui/evolution-mail-messagedisplay.xml.h:5
#: ../ui/evolution-message-composer.xml.h:42
#: ../ui/evolution-signature-editor.xml.h:12
#: ../ui/evolution-subscribe.xml.h:10 ../ui/evolution-tasks.xml.h:22
#: ../ui/evolution.xml.h:32
msgid "_Edit"
msgstr "_संपादन गर"

#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:5
msgid "_Snooze"
msgstr "_स्नुज"

#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:6
msgid "description of appointment"
msgstr "भेट्ने निधोको विवरण को"

#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:7
#, fuzzy
msgid "location of appointment"
msgstr "भेट्ने निधोको विवरण को"

#: ../calendar/gui/alarm-notify/alarm-queue.c:954
msgid "Dismiss"
msgstr "खारेजी गर"

#: ../calendar/gui/alarm-notify/alarm-queue.c:955
msgid "Dismiss All"
msgstr "सबै खारेजी गर"

#: ../calendar/gui/alarm-notify/alarm-queue.c:1037
msgid "No summary available."
msgstr "कुनै शारंश प्रप्त छैन।."

#: ../calendar/gui/alarm-notify/alarm-queue.c:1046
#: ../calendar/gui/alarm-notify/alarm-queue.c:1048
msgid "No description available."
msgstr "कुनैन बर्ण प्रप्त छैन।."

#: ../calendar/gui/alarm-notify/alarm-queue.c:1056
msgid "No location information available."
msgstr "स्थानको सूचना प्राप्त छैन।"

#: ../calendar/gui/alarm-notify/alarm-queue.c:1072
#, c-format
msgid ""
"Alarm on %s\n"
"%s\n"
"Starting at %s\n"
"Ending at %s"
msgstr ""
"सुचक %s\n"
"%s\n"
"सुरुवात %s\n"
"समापन %s"

#: ../calendar/gui/alarm-notify/alarm-queue.c:1175
#: ../calendar/gui/alarm-notify/alarm-queue.c:1199
msgid "Warning"
msgstr "चेतावनी"

#: ../calendar/gui/alarm-notify/alarm-queue.c:1179
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 ""
"इभोलुसनले पात्रो सम्झाउनीलाई सहारा दिदैन\n"
" इमेल सूचनाहरू सम्म, तर यो सम्झाउनी\n"
" एउटा इमेल पठाउन कन्फिगर गरिएको थियो।  इभोलुसनले\n"
" एक साधारण सम्झाउनी डायलग बक्स मात्र देखाउने छ।"

#: ../calendar/gui/alarm-notify/alarm-queue.c:1205
#, 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 ""
"एक इभिलुसन पात्रो सम्झाउनी सुरु गर्न लागेको छ। यो सम्झाउनी तलका कार्यक्रमका लागि "
"कन्फिगर गरिएको हो:\n"
"\n"
"        %s\n"
"\n"
"के तपाईँ साँच्चै नै यस कार्यक्रम सञ्चालन गर्न चाहनुहुन्छ?"

#: ../calendar/gui/alarm-notify/alarm-queue.c:1219
msgid "Do not ask me about this program again."
msgstr "यस प्रोग्रामका बारेमा मलाई फेरि नसोध्नुहोला ।"

#: ../calendar/gui/alarm-notify/notify-main.c:139
msgid "Could not initialize Bonobo"
msgstr "बोनोबोको सुरूआत गर्न सकिएन"

#: ../calendar/gui/alarm-notify/notify-main.c:150
msgid "Could not create the alarm notify service factory"
msgstr "यो अलार्म सूचना सेवा फ्याक्ट्री बनाउन सकिएन"

#: ../calendar/gui/alarm-notify/util.c:41
msgid "invalid time"
msgstr "अमान्य समय"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:1
msgid "Alarm programs"
msgstr "सुचक कार्यक्रमहरू"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:2
msgid "Ask for confirmation when deleting items"
msgstr "बस्तुहरू मेट्नु अगाडि का(पुष गर्नाका लागि सोध्नुहोस्टि)"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:3
msgid "Background color of tasks that are due today, in \"#rrggbb\" format."
msgstr "कार्यहरूको पृष्ठभुमी रङ्ग जुन आज गरिन्छ, \"#rrggbb\" ढाँचामा।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:4
msgid "Background color of tasks that are overdue, in \"#rrggbb\" format."
msgstr "कार्यहरूको पृष्ठभुमी रङ्ग पुन गरिन्छ, \"#rrggbb\" ढाँचामा।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:5
msgid "Calendars to run alarms for"
msgstr "पात्रोहरू सुचारू गर्न सूचक"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:6
msgid ""
"Color to draw the Marcus Bains Line in the Time bar (empty for default)."
msgstr ""

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:7
msgid "Color to draw the Marcus Bains line in the Day View."
msgstr ""

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:8
msgid "Compress weekends in month view"
msgstr "सप्ताहन्त लाई माषिक दृष्यमा सङ्कुचन गर"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:9
msgid "Confirm expunge"
msgstr "expunge निश्चय गर "

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:10
msgid "Days on which the start and end of work hours should be indicated."
msgstr "दिनहरू जहिले कार्य घण्टाहरू सुरु र अन्त्य हुन्छ तोक्नु पर्छ।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:11
msgid "Default appointment reminder"
msgstr "पूर्वनिर्धारित भेट्ने निधो सम्झाउने"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:12
msgid "Default reminder units"
msgstr "पूर्वनिर्धारित सम्झाउने इकाइहरू"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:13
msgid "Default reminder value"
msgstr "पूर्वनिर्धारित सम्झाउनीको मान"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:14
msgid "Free/busy server urls"
msgstr "स्वतन्त्र/ब्यस्त सर्भर युआरएल हरू"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:15
msgid "Free/busy template url"
msgstr "स्वतन्त्र/ब्यस्त टेम्प्लेट युआरएलुक्त"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:16
msgid "Hide completed tasks"
msgstr "पूरा भएको कार्यहरू लुकाऊ"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:17
msgid "Hide task units"
msgstr "कार्य एकाइ लुकाऊ"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:18
msgid "Hide task value"
msgstr "कार्य मान लुकाऊ"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:19
msgid "Horizontal pane position"
msgstr "ठाडो फलकको अवस्था"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:20
msgid "Hour the workday ends on, in twenty four hour format, 0 to 23."
msgstr "कार्यदिन समाप्त हुने घण्टा, चौबीस घण्टे ढाँचामा, ० देखि २३ "

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:21
msgid "Hour the workday starts on, in twenty four hour format, 0 to 23."
msgstr "कार्यदिन सुरूहुने घण्टा, चौबीस घण्टे ढाँचामा, ० देखि २३ "

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:22
#, fuzzy
msgid "Intervals shown in Day and Work Week views, in minutes."
msgstr "समय बिभाजन</short> <short>अन्तरहरू देखाउने देनिक र साप्ताहिक दृष्यहरू,मिनेटहरूमा।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:23
msgid "Last alarm time"
msgstr "अन्तिम चेताबनी समय"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:24
msgid "List of server urls for free/busy publishing."
msgstr "ब्यस्त/स्वतन्त्र प्रकाशित गर्नका लागि सर्भर युआरएल सूची"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:25
msgid "Marcus Bains Line"
msgstr ""

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:26
msgid "Marcus Bains Line Color - Day View"
msgstr ""

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:27
msgid "Marcus Bains Line Color - Time bar"
msgstr ""

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:28
#, fuzzy
msgid "Minute the workday ends on, 0 to 59."
msgstr "कार्य समापन टिपोट गर, ० देखि ५९"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:29
msgid "Minute the workday starts on, 0 to 59."
msgstr "कार्य सुरुवात टिपोट गर, ० देखि ५९"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:30
msgid "Month view horizontal pane position"
msgstr "माषिक दृष्य तेर्सो फलक स्थितिमा"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:31
msgid "Month view vertical pane position"
msgstr "माषिक दृष्य ठाडो फलक स्थितिमा"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:32
msgid "Number of units for determining for a default reminder."
msgstr "इकाईहरूको संख्या निर्धारण गर्नका लागि पुर्बनिर्धारित सम्झाउनी।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:33
msgid "Number of units for determining when to hide tasks."
msgstr "इकाईहरूको संख्या निर्धारण गर्न जव कार्यहरू लुकाइन्छ।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:34
msgid "Overdue tasks color"
msgstr "बाँकी रहेको कार्यहरू रंग"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:35
msgid ""
"Position of the horizontal pane, between the date navigator calendar and the "
"task list when not in the month view, in pixels."
msgstr ""
"तेर्सो फलकको अवस्था, मिति पत्तालगाउने पात्रो र कार्य सूची बिच जब माषिक दृष्यमा नभइ "
"पिक्सेलहरूमा।इ इ पिक्सेलहरू."

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:36
msgid ""
"Position of the horizontal pane, between the view and the date navigator "
"calendar and task list in the month view, in pixels."
msgstr ""
"तेर्सो फलकको अवस्था, दृष्य, मिति पत्तालगाउने पात्रो र कार्य सूची बिच जब माषिक दृष्यमा "
"नभइ पिक्सेलहरूमा।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:37
#, fuzzy
msgid ""
"Position of the vertical pane, between the task list and the task preview "
"pane, in pixels."
msgstr "ठाडो फलकको अवस्था, कार्य सूची र कार्य पुर्व दृष्य फलक बिच, पिक्सेलहरूमा।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:38
msgid ""
"Position of the vertical pane, between the view and the date navigator "
"calendar and task list in the month view, in pixels."
msgstr ""
"ठाडो फलकको अवस्था, दृष्य र मिति पत्तालगाउने पात्रो र कार्य सूची बिच माषिक दृष्यमाच, "
"पिक्सेलहरूमा।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:39
msgid ""
"Position of the vertical pane, between the view and the date navigator "
"calendar and task list when not in the month view, in pixels."
msgstr ""
"ठाडो फलकको अवस्था, दृष्य र मिति पत्तालगाउने पात्रो र कार्य सूची बिच जब माषिक दृष्यमा "
"नभई पिक्सेलहरूमा।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:40
msgid "Programs that are allowed to be run by alarms."
msgstr "सुचकहरू द्वारा कार्यक्रम सञ्चालनका लागि अनुमति दिइन्छ।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:41
msgid "Show appointment end times in week and month views"
msgstr "भेट्ने निधो समाप्त हुने समय हप्ता र महिना दृष्यमा देखाऊ"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:42
msgid "Show display alarms in notification tray"
msgstr "सूचना ट्रेमा सूचक प्रदर्शन गर"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:43
msgid "Show week numbers in date navigator"
msgstr "मिति पत्ता लगाउनेमा हप्ता संख्या देखाऊ"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:44
msgid "Tasks due today color"
msgstr "बाँकी रहेको कार्य रङ्ग"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:45
msgid "Tasks vertical pane position"
msgstr "कार्यहरूको ठाडो फलक स्थिति"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:46
msgid ""
"The default timezone to use for dates and times in the calendar, as an "
"untranslated Olsen timezone database location like \"America/New York\"."
msgstr ""
"यस पूर्वनिर्धारित समयक्षेत्रको प्रयोग पात्रोमा मिति र समयका लागि गरिन्छ, अनुवाद "
"नगरिएको ओस्लेन समयक्षेत्र डाटाबेस स्थान जस्तो \"अमेरिका/न्युयोर्क\"."

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:48
#, no-c-format
msgid ""
"The url template to use as a free/busy data fallback, %u is replaced by the "
"user part of the mail address and %d is replaced by the domain."
msgstr ""
"यो युआरएलको प्रयोग स्वतन्त्र/ब्यस्त पछाडिको लगत, %u लाई पत्र ठेगानाको केहि अंश "
"प्रयोगकर्ता द्वारा बदलिएको छ र %d लाई डोमेन द्वारा बदलिन्छ।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:49
#, fuzzy
msgid "Time divisions"
msgstr "_समय बिभाजन:"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:50
msgid "Time the last alarm ran, in time_t."
msgstr "सूचक बज्ने अन्तिम समय, समय तालिकामा"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:51
msgid "Timezone"
msgstr "टाइमजोन"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:52
msgid "Twenty four hour time format"
msgstr "२४ घण्टा समय ढाँचा"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:53
msgid "Units for a default reminder, \"minutes\", \"hours\" or \"days\"."
msgstr ""
"पूर्व निर्धारित सम्झाउनीका लागि इकाईहरू, \"मिनेटहरू\", \"घण्टाहरू\" वा \"दिनहरू\"."

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:54
msgid ""
"Units for determining when to hide tasks, \"minutes\", \"hours\" or \"days\"."
msgstr ""
"कार्यहरू लुकाउनका लागिा निर्धारण गर्ने युनिटहरूनीका लागि इकाईहरू, \"मिनेटहरू\", \"घण्टाहरू"
"\" वा \"दिनहरू\"."

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:56
msgid "Week start"
msgstr "सप्ताह सुरु"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:57
msgid "Weekday the week starts on, from Sunday (0) to Saturday (6)."
msgstr "सप्ताहिक दिनहरू सुरु, आइतबार  (0) देखि (6) सम्म।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:58
msgid "Whether or not to use the notification tray for display alarms."
msgstr "सूचना ट्रेको प्रयोग सूचक देखाउन गर्ने या नगर्ने"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:59
msgid "Whether to ask for confirmation when deleting an appointment or task."
msgstr "या भेट्ने निधो वा कार्य मेट्दा निश्चय गर्न सोध्ने"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:60
msgid "Whether to ask for confirmation when expunging appointments and tasks."
msgstr "या भेट्ने निधो वा कार्य काट्दा निश्चय गर्न सोध्ने"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:61
msgid ""
"Whether to compress weekends in the month view, which puts Saturday and "
"Sunday in the space of one weekday."
msgstr ""
"माषिक दृष्यमा सप्ताहन्तहरू सङ्कुचन गर्ने, जसले एक हप्ता दिनको ठाउमा शनीबार र आइतबार "
"राख्छ।ट्दा निश्चय गर्न सोध्ने"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:62
msgid "Whether to display the end time of events in the week and month views."
msgstr "हप्ता र महिना दृष्यहरूको घटनाहरू समाप्ति समय देखााऊ"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:63
msgid ""
"Whether to draw the Marcus Bains Line (line at current time) in the calendar."
msgstr ""

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:64
msgid "Whether to hide completed tasks in the tasks view."
msgstr "कार्यहरूको दृष्यवाट पुरा भएको कार्यहरू लुकाउने की।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:65
msgid "Whether to set a default reminder for appointments."
msgstr "भेटघाट निधोका लागि पूर्व निर्धारित संझाउनी सेट गर्नेको कार्यहरू लुकाउने की।"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:66
msgid ""
"Whether to show times in twenty four hour format instead of using am/pm."
msgstr "am/pm को प्रयोग को सट्टामा २४ घण्टा समय ढाँचामा समय देखाउने की."

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:67
msgid "Whether to show week numbers in the date navigator."
msgstr "मिति सञ्चालकमाा हप्ता संख्याहरू देखाउने की"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:68
msgid "Work days"
msgstr "काम गर्ने दिनहरू"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:69
msgid "Workday end hour"
msgstr "काम गर्ने दिनका अन्तिम घण्टा"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:70
msgid "Workday end minute"
msgstr "कार्य दिन समाप्त हुने मिनेट"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:71
msgid "Workday start hour"
msgstr "काम गर्ने दिनको सुरूको घण्टा"

#: ../calendar/gui/apps_evolution_calendar.schemas.in.in.h:72
msgid "Workday start minute"
msgstr "काम गर्ने दिनको सुरूको मिनेट"

#: ../calendar/gui/cal-search-bar.c:49
msgid "Summary contains"
msgstr "सारांश सामाग्रीहरू"

#: ../calendar/gui/cal-search-bar.c:50
msgid "Description contains"
msgstr "विवरण सामाग्रीहरुणन"

#: ../calendar/gui/cal-search-bar.c:51
msgid "Comment contains"
msgstr "टिप्पणी सामाग्रीहरु"

#: ../calendar/gui/cal-search-bar.c:52
msgid "Location contains"
msgstr "स्थान सामाग्रिहरु"

#: ../calendar/gui/cal-search-bar.c:350
msgid "Unmatched"
msgstr "अमिल्दो"

#: ../calendar/gui/calendar-commands.c:120
#: ../calendar/gui/calendar-component.c:708
#: ../calendar/gui/dialogs/calendar-setup.c:369
#: ../calendar/gui/gnome-cal.c:1974
#: ../plugins/groupwise-features/camel-gw-listener.c:382
#: ../plugins/groupwise-features/camel-gw-listener.c:412
msgid "Calendar"
msgstr "पात्रो"

#: ../calendar/gui/calendar-commands.c:355
msgid ""
"This operation will permanently erase all events older than the selected "
"amount of time. If you continue, you will not be able to recover these "
"events."
msgstr ""
"यस कार्यले सधैका लागि छानिएको समय भन्दा पुराना सबै घटनाहरू मेट्ने छ। यदि तपाईँले "
"निरन्तरता दिनु भयो भने, तपाईँले ती घटनाहरू प्राप्त गर्न सक्नु हुने छैन।"

#: ../calendar/gui/calendar-commands.c:361
msgid "Purge events older than"
msgstr "भन्दा पुराना घटनाहरू फ्याँक्नुहोस्"

#: ../calendar/gui/calendar-commands.c:366
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:20
#: ../calendar/gui/dialogs/calendar-setup.glade.h:12
#: ../filter/filter.glade.h:14 ../plugins/calendar-http/calendar-http.c:265
#: ../plugins/calendar-weather/calendar-weather.c:566
#: ../widgets/misc/e-send-options.glade.h:36
msgid "days"
msgstr "दिनहरू"

#. Create the On the web source group
#. Create the Webcal source group
#. Create the LDAP source group
#: ../calendar/gui/calendar-component.c:234 ../calendar/gui/migration.c:489
#: ../calendar/gui/migration.c:582 ../calendar/gui/tasks-component.c:215
msgid "On The Web"
msgstr "वेबमा"

#: ../calendar/gui/calendar-component.c:252 ../calendar/gui/migration.c:391
msgid "Birthdays & Anniversaries"
msgstr "जन्मोत्सबहरू र बार्षिक उत्सबहरू"

#. Create the weather group
#: ../calendar/gui/calendar-component.c:258
#: ../plugins/calendar-weather/calendar-weather.c:100
msgid "Weather"
msgstr "हावापानी"

#: ../calendar/gui/calendar-component.c:535
#: ../calendar/gui/dialogs/calendar-setup.c:450
msgid "New Calendar"
msgstr "नयाँ पात्रो"

#: ../calendar/gui/calendar-component.c:843
msgid "Failed upgrading calendars."
msgstr "पात्रोहरूको स्तर बृद्धि गर्न असफल भयो।"

#: ../calendar/gui/calendar-component.c:1139
#, c-format
msgid "Unable to open the calendar '%s' for creating events and meetings"
msgstr "यो पात्रो '%s' घटनाहरू र बैठकहरुका लागि खोल्न सकिदैन।"

#: ../calendar/gui/calendar-component.c:1155
msgid "There is no calendar available for creating events and meetings"
msgstr "यहाँ घटनाहरू र बैठकहरूका लागि कुनै पात्रो छैन।"

#: ../calendar/gui/calendar-component.c:1267
msgid "Calendar Source Selector"
msgstr "पात्रो स्रोत छनोटकर्ता"

#: ../calendar/gui/calendar-component.c:1458
msgid "New appointment"
msgstr "नयाँ भेट्ने निधो"

#: ../calendar/gui/calendar-component.c:1459
msgid "_Appointment"
msgstr "_भेट्ने निधो"

#: ../calendar/gui/calendar-component.c:1460
msgid "Create a new appointment"
msgstr "एउटा नयाँ भेट्ने समय बनाउनुहोस् "

#: ../calendar/gui/calendar-component.c:1466
msgid "New meeting"
msgstr "नयाँ भेटघाट"

#: ../calendar/gui/calendar-component.c:1467
msgid "M_eeting"
msgstr "मिटिङ्"

#: ../calendar/gui/calendar-component.c:1468
msgid "Create a new meeting request"
msgstr "एक नयाँ बैठक अनुरोध  बनाऊ"

#: ../calendar/gui/calendar-component.c:1474
msgid "New all day appointment"
msgstr "नयाँ सबै दिनको भेट्ने निधो"

#: ../calendar/gui/calendar-component.c:1475
msgid "All Day A_ppointment"
msgstr "सबै दिनको भेट्ने निधो"

#: ../calendar/gui/calendar-component.c:1476
msgid "Create a new all-day appointment"
msgstr "एक नयाँ सबै दिनको भेट्ने निधो बनाउनुहोस्"

#: ../calendar/gui/calendar-component.c:1482
msgid "New calendar"
msgstr "नयाँ पात्रो"

#: ../calendar/gui/calendar-component.c:1483
msgid "Cale_ndar"
msgstr "पात्रो"

#: ../calendar/gui/calendar-component.c:1484
msgid "Create a new calendar"
msgstr "नयाँ पात्रो बनाउनुहोस् "

#: ../calendar/gui/calendar-view-factory.c:109
msgid "Day View"
msgstr "दिन दृष्य"

#: ../calendar/gui/calendar-view-factory.c:112
msgid "Work Week View"
msgstr "साप्ताहिक कार्य दृष्य"

#: ../calendar/gui/calendar-view-factory.c:115
msgid "Week View"
msgstr "साप्ताहिक दृष्य"

#: ../calendar/gui/calendar-view-factory.c:118
msgid "Month View"
msgstr "महिना दृष्य"

#: ../calendar/gui/comp-editor-factory.c:413
msgid "Error while opening the calendar"
msgstr "पात्रो खुल्दै गर्दा त्रुटि"

#: ../calendar/gui/comp-editor-factory.c:419
msgid "Method not supported when opening the calendar"
msgstr "पात्रो खोल्दा पद्दतीले सहारा दिएन"

#: ../calendar/gui/comp-editor-factory.c:425
msgid "Permission denied to open the calendar"
msgstr "पात्रो खोल्न अनुमति दिइएको छैन"

#: ../calendar/gui/comp-editor-factory.c:437 ../shell/e-shell.c:1288
msgid "Unknown error"
msgstr "अज्ञात त्रुटि"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:1
msgid "<b>Alarm</b>"
msgstr "<b>चेताबनी</b>"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:2
msgid "<b>Options</b>"
msgstr "<b> विकल्पहरु</b>"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:3
msgid "<b>Repeat</b>"
msgstr "<b> दोहोर्याउनुस्</b>"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:4
msgid "Add Alarm"
msgstr "साबधानी जोड"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:5
msgid "Custom _message"
msgstr "अनुकुलन _मिलाउनुहोसस"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:6
msgid "Custom alarm sound"
msgstr "सचेतक ध्वनी मिलाउनुहोस"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:7
msgid "Mes_sage:"
msgstr "समाचार:"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:8
#: ../calendar/gui/e-alarm-list.c:444
msgid "Play a sound"
msgstr "बजाउनोहोस्"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:9
#: ../calendar/gui/e-alarm-list.c:448
msgid "Pop up an alert"
msgstr "एउटा पपअप साबधान"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:10
#: ../calendar/gui/e-alarm-list.c:456
msgid "Run a program"
msgstr "कार्यक्रमोग्राम सञ्चालन गर"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:11
msgid "Send To:"
msgstr "पठाऊ:"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:12
#: ../calendar/gui/e-alarm-list.c:452
msgid "Send an email"
msgstr "एउटा इमेल पठाउ"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:13
msgid "_Arguments:"
msgstr "_तर्कहरू:"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:14
msgid "_Program:"
msgstr "_कार्यक्रम:"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:15
msgid "_Repeat the alarm"
msgstr "_सावधानी दोहोर्याउनुस्"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:16
msgid "_Sound:"
msgstr "_ध्वनि:"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:17
msgid "after"
msgstr "पछि"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:18
msgid "before"
msgstr "अगाडि"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:19
#: ../calendar/gui/dialogs/recurrence-page.glade.h:7
msgid "day(s)"
msgstr "दिन(हरू)"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:21
msgid "end of appointment"
msgstr "भेटको अन्त्यमा"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:22
msgid "extra times every"
msgstr "हरेक अतिरिक्त समय"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:23
msgid "hour(s)"
msgstr "घण्टा(हरू)"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:24
#: ../calendar/gui/dialogs/calendar-setup.glade.h:13
#: ../filter/filter.glade.h:15 ../plugins/calendar-http/calendar-http.c:264
#: ../plugins/calendar-weather/calendar-weather.c:565
msgid "hours"
msgstr "घण्टाहरु"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:25
msgid "minute(s)"
msgstr "मिनेट(हरू)"

#: ../calendar/gui/dialogs/alarm-dialog.glade.h:27
msgid "start of appointment"
msgstr "भेट्ने निधोको सुरुवातो"

#: ../calendar/gui/dialogs/alarm-list-dialog.c:199
msgid "Action/Trigger"
msgstr "कार्य/ट्रिगर"

#: ../calendar/gui/dialogs/alarm-list-dialog.glade.h:1
msgid "A_dd"
msgstr "थ_प"

#: ../calendar/gui/dialogs/alarm-list-dialog.glade.h:2
msgid "Alarms"
msgstr "साबधानी"

#: ../calendar/gui/dialogs/cal-attachment-bar.c:110
#: ../composer/e-msg-composer-attachment-bar.c:105
#, c-format
msgid "%.0fK"
msgstr "%.0fK"

#: ../calendar/gui/dialogs/cal-attachment-bar.c:113
#: ../composer/e-msg-composer-attachment-bar.c:108
#, c-format
msgid "%.0fM"
msgstr "%.0fM"

#: ../calendar/gui/dialogs/cal-attachment-bar.c:116
#: ../composer/e-msg-composer-attachment-bar.c:111
#, c-format
msgid "%.0fG"
msgstr "%.0fG"

#: ../calendar/gui/dialogs/cal-attachment-bar.c:311
#: ../calendar/gui/dialogs/cal-attachment-bar.c:1106
#: ../composer/e-msg-composer-attachment-bar.c:307 ../mail/em-utils.c:438
msgid "attachment"
msgstr "सम्लग्न गर्ने"

#: ../calendar/gui/dialogs/cal-attachment-bar.c:473
#: ../calendar/gui/dialogs/meeting-page.c:889
#: ../composer/e-msg-composer-attachment-bar.c:470
#: ../plugins/groupwise-features/properties.glade.h:14
msgid "_Remove"
msgstr "_हटाउ"

#: ../calendar/gui/dialogs/cal-attachment-bar.c:474
#: ../composer/e-msg-composer-attachment-bar.c:471
#: ../mail/em-folder-tree.c:2123 ../ui/evolution-mail-list.xml.h:28
msgid "_Properties"
msgstr "_गुणहरु"

#: ../calendar/gui/dialogs/cal-attachment-bar.c:476
#: ../composer/e-msg-composer-attachment-bar.c:473
msgid "_Add attachment..."
msgstr "_समलग्न गर."

#: ../calendar/gui/dialogs/cal-attachment-bar.c:736
#: ../composer/e-msg-composer-attachment-bar.c:740
msgid "Attachment Bar"
msgstr "सम्लग्न बार"

#: ../calendar/gui/dialogs/cal-attachment-select-file.c:96
#: ../calendar/gui/dialogs/cal-attachment-select-file.c:115
#: ../calendar/gui/dialogs/cal-attachment.glade.h:6
#: ../composer/e-msg-composer-attachment.glade.h:6
#: ../composer/e-msg-composer-select-file.c:96
#: ../composer/e-msg-composer-select-file.c:116
msgid "Suggest automatic display of attachment"
msgstr "सम्लग्न गर्नका लागि स्वत:देखाउने सुझाव"

#: ../calendar/gui/dialogs/cal-attachment-select-file.c:190
#: ../composer/e-msg-composer-select-file.c:235
msgid "Attach file(s)"
msgstr "संलग्न फाइल(हरू)"

#: ../calendar/gui/dialogs/cal-attachment.c:210
#: ../calendar/gui/dialogs/cal-attachment.c:226
#: ../calendar/gui/dialogs/cal-attachment.c:319
#: ../calendar/gui/dialogs/cal-attachment.c:335
#: ../composer/e-msg-composer-attachment.c:187
#: ../composer/e-msg-composer-attachment.c:203
#: ../composer/e-msg-composer-attachment.c:297
#: ../composer/e-msg-composer-attachment.c:313
#, c-format
msgid "Cannot attach file %s: %s"
msgstr "फाइल सम्लग्न गर्न सक्दैन  %s: %s"

#: ../calendar/gui/dialogs/cal-attachment.c:218
#: ../calendar/gui/dialogs/cal-attachment.c:327
#: ../composer/e-msg-composer-attachment.c:195
#: ../composer/e-msg-composer-attachment.c:305
#, c-format
msgid "Cannot attach file %s: not a regular file"
msgstr "फाइल संलग्न गर्न सकिन्न %s: एउटा नियमित फाइल होइनन"

#: ../calendar/gui/dialogs/cal-attachment.glade.h:2
#: ../composer/e-msg-composer-attachment.glade.h:2
msgid "Attachment Properties"
msgstr "सम्लग्न फाइलको सम्पति"

#: ../calendar/gui/dialogs/cal-attachment.glade.h:3
#: ../calendar/gui/e-cal-component-preview.c:267
#: ../calendar/gui/e-itip-control.c:1164
#: ../calendar/gui/e-itip-control.glade.h:6
#: ../composer/e-msg-composer-attachment.glade.h:3
#: ../mail/mail-config.glade.h:69
msgid "Description:"
msgstr "विवरण:"

#: ../calendar/gui/dialogs/cal-attachment.glade.h:4
#: ../composer/e-msg-composer-attachment.glade.h:4
msgid "File name:"
msgstr "फाईलको नाम:"

#: ../calendar/gui/dialogs/cal-attachment.glade.h:5
#: ../composer/e-msg-composer-attachment.glade.h:5
msgid "MIME type:"
msgstr "MIME प्रकार:"

#. g_object_set((GObject *)renderer, "activatable", TRUE, NULL);
#: ../calendar/gui/dialogs/cal-prefs-dialog.c:576
#: ../mail/em-account-prefs.c:476 ../mail/em-composer-prefs.c:888
#: ../plugins/plugin-manager/plugin-manager.c:213
msgid "Enabled"
msgstr "सक्रिय"

#: ../calendar/gui/dialogs/cal-prefs-dialog.c:730
msgid "Are you sure you want to remove this URL?"
msgstr "के तपाईँ साँच्चै नै यस युआरएल हटाउन चाहन हुन्छ??"

#: ../calendar/gui/dialogs/cal-prefs-dialog.c:733
msgid "Remove"
msgstr "हटाऊ"

#: ../calendar/gui/dialogs/cal-prefs-dialog.c:738
msgid "Don't Remove"
msgstr "हटाऊ काम नगर"

#: ../calendar/gui/dialogs/cal-prefs-dialog.c:787
#: ../calendar/gui/dialogs/cal-prefs-dialog.c:820
#: ../calendar/gui/dialogs/cal-prefs-dialog.c:853
#: ../mail/em-account-prefs.c:323 ../mail/em-account-prefs.c:351
#: ../mail/em-account-prefs.c:382
msgid "Disable"
msgstr "निष्कृय"

#: ../calendar/gui/dialogs/cal-prefs-dialog.c:787
#: ../calendar/gui/dialogs/cal-prefs-dialog.c:820
#: ../calendar/gui/dialogs/cal-prefs-dialog.c:855
#: ../mail/em-account-prefs.c:323 ../mail/em-account-prefs.c:351
#: ../mail/em-account-prefs.c:384
msgid "Enable"
msgstr "सकृय"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:2
msgid "05 minutes"
msgstr "०५ मिनेटहरु"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:3
msgid "10 minutes"
msgstr "१० मिनेटहरु"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:4
msgid "15 minutes"
msgstr "१५ मिनेटहरु"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:5
msgid "30 minutes"
msgstr "३० मिनेटहरु"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:6
msgid "60 minutes"
msgstr "६० मिनेटहरु"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:7
msgid "<b>Alerts</b>"
msgstr "<b>साबधानी</b>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:8
msgid "<b>Default Free/Busy Server</b>"
msgstr "<b> पूर्वनिर्धारित स्वतन्त्र/व्यस्त सर्भर</b>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:9
msgid "<b>General</b>"
msgstr "<b>सामान्य</b>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:10
msgid "<b>Publishing</b>"
msgstr "<b>प्रकाशन गर्दै</b>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:11
msgid "<b>Task List</b>"
msgstr "<b> कार्य सूची</b>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:12
msgid "<b>Time</b>"
msgstr "<b>समय</b>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:13
msgid "<b>Work Week</b>"
msgstr "<b> साप्ताहिक काम</b>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:15
#, no-c-format
msgid ""
"<i>%u and %d will be replaced by user and domain from the email address.</i>"
msgstr "<i>%u र %d प्रयोगकर्ता द्वारा स्थानान्तर गरिने छ र नाम इमेल ठेगानाबाट.</i>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:16
msgid "Calendar and Tasks Settings"
msgstr "पात्रो र कार्यहरु सेटिङ्हरू"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:17
msgid "Color for overdue tasks"
msgstr "रङ्ग बाँकी रहेका कार्यहरूका लागि"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:18
msgid "Color for tasks due today"
msgstr "रङ्ग आजको बाँकी कार्यहरूका लगि"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:19
msgid "Day _ends:"
msgstr "दिनका _अन्तिम पलहरू:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:20
msgid "Days"
msgstr "दिनहरू"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:21
msgid "Display"
msgstr "प्रदर्शन"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:22
#: ../mail/mail-config.glade.h:74
msgid "E_nable"
msgstr "सकृय"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:23
msgid "Free/Busy"
msgstr "स्वतन्त्र/ब्यस्त"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:24
#: ../calendar/gui/dialogs/recurrence-page.c:1046
#: ../calendar/gui/e-itip-control.c:732
msgid "Friday"
msgstr "शुक्रबार"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:26
msgid "Hours"
msgstr "घण्टाहरु"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:27
msgid "Minutes"
msgstr " मिनेटहरू"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:28
#: ../calendar/gui/dialogs/recurrence-page.c:1042
#: ../calendar/gui/e-itip-control.c:728
msgid "Monday"
msgstr "सोमबार"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:29
#, fuzzy
msgid "Publishing Table"
msgstr "<b>प्रकाशन गर्दै</b>"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:30
msgid "S_un"
msgstr "आ_इत"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:31
#: ../calendar/gui/dialogs/recurrence-page.c:1047
#: ../calendar/gui/e-itip-control.c:733
msgid "Saturday"
msgstr "शनीबार"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:32
msgid "Sh_ow a reminder"
msgstr "सम्झाउनी देखाऊ"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:33
msgid "Show week _numbers in date navigator"
msgstr "मिति सञ्चालकमा हप्ता _संख्याहरू देखाऊ"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:34
#: ../calendar/gui/dialogs/recurrence-page.c:1048
#: ../calendar/gui/e-itip-control.c:727
msgid "Sunday"
msgstr "आइतबार"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:35
msgid "T_asks due today:"
msgstr "आजको बाँकि कार्यहरू:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:36
msgid "T_hu"
msgstr "T_hu"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:37
msgid "Template:"
msgstr "टेमप्लेट"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:38
#: ../calendar/gui/dialogs/recurrence-page.c:1045
#: ../calendar/gui/e-itip-control.c:731
msgid "Thursday"
msgstr "बिहिबार"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:39
msgid "Time _zone:"
msgstr "समय _क्षेत्र:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:40
msgid "Time format:"
msgstr "समय ढाँचा:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:41
#: ../calendar/gui/dialogs/recurrence-page.c:1043
#: ../calendar/gui/e-itip-control.c:729
msgid "Tuesday"
msgstr "मंगलबार"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:42
msgid "W_eek starts:"
msgstr "स_प्ताह सुरू:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:43
#: ../calendar/gui/dialogs/recurrence-page.c:1044
#: ../calendar/gui/e-itip-control.c:730
msgid "Wednesday"
msgstr "बुधबार"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:44
msgid "Work days:"
msgstr "कामका दिनहरू:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:45
msgid "_12 hour (AM/PM)"
msgstr "_१२ घण्टा(एएम/पिएम)"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:46
msgid "_24 hour"
msgstr "_२४ घण्टा"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:47
msgid "_Add URL"
msgstr "_युआरएल जोड"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:48
msgid "_Ask for confirmation when deleting items"
msgstr "_आइटमहरू मेट्ने समयमा पुष्टि गर्न सोध्नुहोस्"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:49
msgid "_Compress weekends in month view"
msgstr "_सप्ताहन्तहरूलाई माषिक दृष्य सङ्कुचन गर"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:50
msgid "_Day begins:"
msgstr "_दिन सरुवात:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:52
msgid "_Fri"
msgstr "_शुक्र"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:53
msgid "_Hide completed tasks after"
msgstr "_पछि सकिएको कार्य हरू लुकाउनुहोस"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:54
msgid "_Mon"
msgstr "_सोम"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:55
msgid "_Overdue tasks:"
msgstr "_बाँकी रहेको कार्यहरू:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:56
msgid "_Sat"
msgstr "_शनि"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:57
msgid "_Show appointment end times in week and month views"
msgstr "_हप्ता र महिना दृष्यहरूमा अन्त्य समयमा भेटघाट निधो देखाऊ"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:58
msgid "_Time divisions:"
msgstr "_समय बिभाजन:"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:59
msgid "_Tue"
msgstr "_मंगल"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:60
msgid "_Wed"
msgstr "_बुध"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:61
msgid "before every appointment"
msgstr "प्रत्येक भेटघाट निधो अगाडि"

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:62
msgid "option menu to choose reminder units"
msgstr "बाँकि रहेको युनिट छनोट गर्न बैकल्पिक मेनु "

#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:63
msgid "option menu to choose time units"
msgstr "समय एकाईहरू छान्ने बिकल्प मेनुनु"

#: ../calendar/gui/dialogs/calendar-setup.c:287
msgid "Copy calendar contents locally for offline operation"
msgstr "अफलाइन सञ्चालनका लागि पात्रो बिषयबस्तु स्थानीय रुपमा प्रतिलिपि गर"

#: ../calendar/gui/dialogs/calendar-setup.c:290
#, fuzzy
msgid "Copy task list contents locally for offline operation"
msgstr " पुस्तकको स्थानीय विषयवस्तु अफलाइ कार्यका लागि प्रतिलिपि गर्नुहोस्"

#: ../calendar/gui/dialogs/calendar-setup.c:343
#: ../calendar/gui/dialogs/calendar-setup.glade.h:4
msgid "C_olor:"
msgstr "रङ्ग:"

#: ../calendar/gui/dialogs/calendar-setup.c:380
msgid "Tasks List"
msgstr "कार्यहरु सूची"

#: ../calendar/gui/dialogs/calendar-setup.c:448
msgid "Calendar Properties"
msgstr "पात्रो सम्पति"

#: ../calendar/gui/dialogs/calendar-setup.c:515
msgid "Task List Properties"
msgstr "कार्य सूची गुणहरू"

#: ../calendar/gui/dialogs/calendar-setup.glade.h:2
msgid "Add Calendar"
msgstr "पात्रो जोड "

#: ../calendar/gui/dialogs/calendar-setup.glade.h:3
msgid "Add Task List"
msgstr "कार्य सूची जोड"

#: ../calendar/gui/dialogs/calendar-setup.glade.h:5
#: ../mail/mail-config.glade.h:105
msgid "Pick a color"
msgstr "एउटा रङ्ग छान्नुहोस्"

#: ../calendar/gui/dialogs/calendar-setup.glade.h:6
msgid "_Add Calendar"
msgstr "_पात्रो जोड"

#: ../calendar/gui/dialogs/calendar-setup.glade.h:7
msgid "_Add Task List"
msgstr "_कार्य सूची जोड "

#: ../calendar/gui/dialogs/calendar-setup.glade.h:9
#: ../plugins/calendar-http/calendar-http.c:248
#: ../plugins/calendar-weather/calendar-weather.c:549
msgid "_Refresh:"
msgstr "_ताजा गर्नुहोस्:"

#: ../calendar/gui/dialogs/calendar-setup.glade.h:11
#: ../plugins/calendar-http/calendar-http.c:120
msgid "_URL:"
msgstr "_युआरएल:"

#: ../calendar/gui/dialogs/calendar-setup.glade.h:15
#: ../filter/filter.glade.h:21 ../plugins/calendar-http/calendar-http.c:266
#: ../plugins/calendar-weather/calendar-weather.c:567
msgid "weeks"
msgstr "हप्ताहरू"

#: ../calendar/gui/dialogs/changed-comp.c:60
msgid "This event has been deleted."
msgstr "यस घटनालाई मेटाइएको छ।"

#: ../calendar/gui/dialogs/changed-comp.c:64
msgid "This task has been deleted."
msgstr "यस कार्यलाई मेटाइएको ।"

#: ../calendar/gui/dialogs/changed-comp.c:68
msgid "This journal entry has been deleted."
msgstr "यस जर्नल प्रबिष्टीलाई मेटाइएको छ।"

#: ../calendar/gui/dialogs/changed-comp.c:77
#, c-format
msgid "%s  You have made changes. Forget those changes and close the editor?"
msgstr "%s  तपाईँले परिबर्तन गर्नु भएको छ। ती परिबर्तनहरूलाई बिर्सेर सम्पादक बन्द गर्ने?"

#: ../calendar/gui/dialogs/changed-comp.c:79
#, c-format
msgid "%s  You have made no changes, close the editor?"
msgstr "%s  तपाईँले परोबर्तनहरू गर्नु भएको छैन,सम्पादक बन्द गर्ने?"

#: ../calendar/gui/dialogs/changed-comp.c:84
msgid "This event has been changed."
msgstr "यस घटना परिबर्तन गरिएको छ।"

#: ../calendar/gui/dialogs/changed-comp.c:88
msgid "This task has been changed."
msgstr "यस कार्यलाई परिबर्तन गरिएको छ।"

#: ../calendar/gui/dialogs/changed-comp.c:92
msgid "This journal entry has been changed."
msgstr "यस जर्नल प्रबिष्टि परिबर्तन गरिएको छ।"

#: ../calendar/gui/dialogs/changed-comp.c:101
#, c-format
msgid "%s  You have made changes. Forget those changes and update the editor?"
msgstr ""
"%s  तपाईँले परिबर्तनहरू गर्नु भएको छ। ती परिबर्तनहरू बिर्सने र सम्पादक अद्याबधिक गर्ने?"

#: ../calendar/gui/dialogs/changed-comp.c:103
#, c-format
msgid "%s  You have made no changes, update the editor?"
msgstr "%s  तपाईँले परिबर्तनहरू गर्नु भएको छैन, सम्पादक अद्याबधिक गर्ने?"

#: ../calendar/gui/dialogs/comp-editor-page.c:464
#, c-format
msgid "Validation error: %s"
msgstr "बैधानिकता त्रुटि: %s"

#: ../calendar/gui/dialogs/comp-editor-util.c:187 ../calendar/gui/print.c:2261
msgid " to "
msgstr "लाई"

#: ../calendar/gui/dialogs/comp-editor-util.c:191 ../calendar/gui/print.c:2265
msgid " (Completed "
msgstr " (पुरा भयो "

#: ../calendar/gui/dialogs/comp-editor-util.c:193 ../calendar/gui/print.c:2267
msgid "Completed "
msgstr "पुरा भयो"

#: ../calendar/gui/dialogs/comp-editor-util.c:198 ../calendar/gui/print.c:2272
msgid " (Due "
msgstr " (Due "

#: ../calendar/gui/dialogs/comp-editor-util.c:200 ../calendar/gui/print.c:2274
msgid "Due "
msgstr "Due "

#: ../calendar/gui/dialogs/comp-editor.c:184 ../composer/e-msg-composer.c:2654
#, c-format
msgid "Attached message - %s"
msgstr "संलग्न गरिएको सन्देश - %s"

#. translators, this count will always be >1
#: ../calendar/gui/dialogs/comp-editor.c:189
#: ../calendar/gui/dialogs/comp-editor.c:358 ../composer/e-msg-composer.c:2659
#: ../composer/e-msg-composer.c:2835
#, c-format
msgid "Attached message"
msgid_plural "%d attached messages"
msgstr[0] "संलग्न गरिएको सन्देश"
msgstr[1] ""

#: ../calendar/gui/dialogs/comp-editor.c:421
#: ../calendar/gui/e-calendar-table.c:1164
#: ../calendar/gui/e-calendar-view.c:1513 ../composer/e-msg-composer.c:2899
#: ../mail/em-folder-tree.c:1047 ../mail/em-folder-view.c:1033
#: ../mail/message-list.c:1708 ../ui/evolution-addressbook.xml.h:31
#: ../ui/evolution-calendar.xml.h:39 ../ui/evolution-composer-entries.xml.h:7
#: ../ui/evolution-mail-message.xml.h:100 ../ui/evolution-tasks.xml.h:20
msgid "_Copy"
msgstr "_प्रतिलिपि"

#: ../calendar/gui/dialogs/comp-editor.c:422 ../composer/e-msg-composer.c:2900
#: ../mail/em-folder-tree.c:1048 ../mail/em-folder-utils.c:383
#: ../mail/em-folder-view.c:929 ../mail/message-list.c:1709
msgid "_Move"
msgstr "_सार्नु"

#: ../calendar/gui/dialogs/comp-editor.c:424 ../composer/e-msg-composer.c:2902
#: ../mail/em-folder-tree.c:1050 ../mail/message-list.c:1711
msgid "Cancel _Drag"
msgstr "रद्द _तान"

#: ../calendar/gui/dialogs/comp-editor.c:697
msgid "Could not update object"
msgstr "बस्तु अद्याबधिक गर्न सकिएन"

#: ../calendar/gui/dialogs/comp-editor.c:883 ../composer/e-msg-composer.c:2308
#, fuzzy, c-format
msgid "<b>%d</b> Attachment"
msgid_plural "<b>%d</b> Attachments"
msgstr[0] "<b>%d</b> फाइल समाबेस गरियो"
msgstr[1] "<b></b> फाईल"

#: ../calendar/gui/dialogs/comp-editor.c:978
#, fuzzy
msgid "_Attachment Bar (drop attachments here)"
msgstr "लुकाऊ _संलग्न गर्ने बार (संलग्न बस्तुहरु यहाँ राख)"

#: ../calendar/gui/dialogs/comp-editor.c:1588
#: ../calendar/gui/dialogs/comp-editor.c:1631
msgid "Edit Appointment"
msgstr "भेट्ने निधो सम्पादन"

#: ../calendar/gui/dialogs/comp-editor.c:1594
#: ../calendar/gui/dialogs/comp-editor.c:1637
#, c-format
msgid "Meeting - %s"
msgstr "बैठक - %s"

#: ../calendar/gui/dialogs/comp-editor.c:1596
#: ../calendar/gui/dialogs/comp-editor.c:1639
#, c-format
msgid "Appointment - %s"
msgstr "भेट्ने निधो - %s"

#: ../calendar/gui/dialogs/comp-editor.c:1600
#: ../calendar/gui/dialogs/comp-editor.c:1643
#, c-format
msgid "Assigned Task - %s"
msgstr "दिइएको कार्य - %s"

#: ../calendar/gui/dialogs/comp-editor.c:1602
#: ../calendar/gui/dialogs/comp-editor.c:1645
#, c-format
msgid "Task - %s"
msgstr "कार्य - %s"

#: ../calendar/gui/dialogs/comp-editor.c:1605
#: ../calendar/gui/dialogs/comp-editor.c:1648
#, c-format
msgid "Journal entry - %s"
msgstr "जर्नल प्रबिष्टि - %s"

#: ../calendar/gui/dialogs/comp-editor.c:1616
#: ../calendar/gui/dialogs/comp-editor.c:1658
msgid "No summary"
msgstr "कुनै शारंश छैनन"

#: ../calendar/gui/dialogs/comp-editor.c:2137
#: ../calendar/gui/dialogs/comp-editor.c:2170
#: ../calendar/gui/dialogs/comp-editor.c:2194
msgid "Changes made to this item may be discarded if an update arrives"
msgstr "यस बस्तुमा गरिएका परिबर्तनहरू सायद त्यसै छाडिनेछ यदि अद्याबधिक गरिन्छ भने"

#: ../calendar/gui/dialogs/comp-editor.c:2218
msgid "Unable to use current version!"
msgstr "हालको संस्करण प्रयोग गर्न असक्षम!"

#: ../calendar/gui/dialogs/copy-source-dialog.c:61
msgid "Could not open source"
msgstr "श्रोत खुल्न सकेन"

#: ../calendar/gui/dialogs/copy-source-dialog.c:69
msgid "Could not open destination"
msgstr "गन्तब्य खुल्न सकेन"

#: ../calendar/gui/dialogs/copy-source-dialog.c:78
msgid "Destination is read only"
msgstr "गन्तब्य पढिन्छ मात्र"

#: ../calendar/gui/dialogs/delete-error.c:54
msgid "The event could not be deleted due to a corba error"
msgstr "कोर्बा गल्तिका कारण यस घटनालाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:57
msgid "The task could not be deleted due to a corba error"
msgstr "कोर्बा गल्तिका कारण यस कार्यलाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:60
msgid "The journal entry could not be deleted due to a corba error"
msgstr "कोर्बा गल्तिका कारण यस जर्नल प्रविष्टियलाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:63
msgid "The item could not be deleted due to a corba error"
msgstr "कोर्बा गल्तिका कारण यस बस्तुर्यलाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:70
msgid "The event could not be deleted because permission was denied"
msgstr "अनुमति नदिइएका कारण यस घटना्तुलाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:73
msgid "The task could not be deleted because permission was denied"
msgstr "अनुमति नदिइएका कारण यस कार्यालाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:76
msgid "The journal entry could not be deleted because permission was denied"
msgstr "अनुमति नदिइएका कारण यस जर्नल प्रबिष्टिालाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:79
msgid "The item could not be deleted because permission was denied"
msgstr "अनुमति नदिइएका कारण यस बस्तुालाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:86
msgid "The event could not be deleted due to an error"
msgstr "एक गल्तिका कारण यस घटनालाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:89
msgid "The task could not be deleted due to an error"
msgstr "एक गल्तिका कारण यस कार्यालाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:92
msgid "The journal entry could not be deleted due to an error"
msgstr "एक गल्तिका कारण यस जर्नल प्रबिष्टिालाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/delete-error.c:95
msgid "The item could not be deleted due to an error"
msgstr "एक गल्तिका कारण यस बस्तुालाई मेट्न सकिएन।"

#: ../calendar/gui/dialogs/e-delegate-dialog.glade.h:1
msgid "Contacts..."
msgstr "संपर्कहरू...."

#: ../calendar/gui/dialogs/e-delegate-dialog.glade.h:2
msgid "Delegate To:"
msgstr "प्रत्यायोजित:"

#: ../calendar/gui/dialogs/e-delegate-dialog.glade.h:3
msgid "Enter Delegate"
msgstr "प्रत्यायोजन प्रबिष्टि गर्नुहोस्"

#: ../calendar/gui/dialogs/event-editor.c:141 ../calendar/gui/print.c:2298
msgid "Appointment"
msgstr "भेट्ने निधो"

#: ../calendar/gui/dialogs/event-editor.c:150
msgid "Recurrence"
msgstr "पुनराबृत्ति"

#: ../calendar/gui/dialogs/event-editor.c:166
#: ../calendar/gui/dialogs/event-editor.c:249
#: ../calendar/gui/dialogs/event-editor.c:422
msgid "Scheduling"
msgstr "कार्य तालिका बनाउदै"

#: ../calendar/gui/dialogs/event-editor.c:175
#, fuzzy
msgid "Delegatees"
msgstr "प्रत्यायोजन गरिएको"

#: ../calendar/gui/dialogs/event-editor.c:179
#, fuzzy
msgid "Attendees"
msgstr "सहभागी"

#: ../calendar/gui/dialogs/event-editor.c:252
#: ../calendar/gui/dialogs/event-editor.c:425
msgid "Invitations"
msgstr "निमन्त्रणाहरू"

#: ../calendar/gui/dialogs/event-page.c:725
msgid "Event with no start date"
msgstr "सुरुहुने मिति नभएको घटना"

#: ../calendar/gui/dialogs/event-page.c:728
msgid "Event with no end date"
msgstr "अन्तिम मिति नभएको घटनाई"

#: ../calendar/gui/dialogs/event-page.c:894
#: ../calendar/gui/dialogs/task-page.c:556
msgid "Start date is wrong"
msgstr "शुरु मिति गलत छ"

#: ../calendar/gui/dialogs/event-page.c:904
msgid "End date is wrong"
msgstr "अन्तिम मिति गलत छ"

#: ../calendar/gui/dialogs/event-page.c:927
msgid "Start time is wrong"
msgstr "शुरुवात समय गल्ति"

#: ../calendar/gui/dialogs/event-page.c:934
msgid "End time is wrong"
msgstr "अन्त समय गल्ति"

#: ../calendar/gui/dialogs/event-page.c:1680
#, c-format
msgid "Unable to open the calendar '%s'."
msgstr "यो'%s'पात्रो खुल्न असक्षम।"

#: ../calendar/gui/dialogs/event-page.c:1886
#, c-format
msgid "%d day before appointment"
msgid_plural "%d days before appointment"
msgstr[0] "%d दिन अगाडि भेट्ने निधो"
msgstr[1] ""

#: ../calendar/gui/dialogs/event-page.c:1894
#, c-format
msgid "%d hour before appointment"
msgid_plural "%d hours before appointment"
msgstr[0] "%d घण्टा अगाडि भेट्ने निधो"
msgstr[1] "घण्टा"

#: ../calendar/gui/dialogs/event-page.c:1902
#, c-format
msgid "%d minute before appointement"
msgid_plural "%d minutes before appointment"
msgstr[0] "%d मिनेट अगाडि भट्ने निधो"
msgstr[1] "मिनेट"

#: ../calendar/gui/dialogs/event-page.glade.h:2
msgid "1 day before appointment"
msgstr "१ दिन अगाडि भेट्ने निधो"

#: ../calendar/gui/dialogs/event-page.glade.h:3
msgid "1 hour before appointment"
msgstr "१ घण्टा अगाडि भेट्ने निधो"

#: ../calendar/gui/dialogs/event-page.glade.h:4
msgid "15 minutes before appointment"
msgstr "१५ मिनेट अगाडि भेट्ने निधो"

#: ../calendar/gui/dialogs/event-page.glade.h:5
#: ../calendar/gui/dialogs/task-page.glade.h:1
msgid "<b>Basics</b>"
msgstr "<b>आधारभुत</b>"

#: ../calendar/gui/dialogs/event-page.glade.h:6
#: ../calendar/gui/dialogs/task-page.glade.h:2
msgid "<b>Date and Time</b>"
msgstr "<b> मिति र समय</b>"

#: ../calendar/gui/dialogs/event-page.glade.h:7
#: ../calendar/gui/dialogs/task-page.glade.h:3
msgid "<b>Send Options</b>"
msgstr "<b> विकल्पहरु पठाऊ</b>"

#: ../calendar/gui/dialogs/event-page.glade.h:8
msgid "A_ll day event"
msgstr "सबै दिनका घटना हरू"

#: ../calendar/gui/dialogs/event-page.glade.h:9
#: ../calendar/gui/dialogs/task-page.glade.h:4
msgid "Ad_vanced send options"
msgstr "पठाउने आधुनिक बिकल्पहरु "

#: ../calendar/gui/dialogs/event-page.glade.h:10
msgid "C_ustomize..."
msgstr "अनुकुलन...ि."

#: ../calendar/gui/dialogs/event-page.glade.h:11
#: ../calendar/gui/dialogs/task-page.glade.h:5
msgid "Ca_tegories..."
msgstr "कोटीहरू"

#: ../calendar/gui/dialogs/event-page.glade.h:12
msgid "Cale_ndar:"
msgstr "पात्रो:"

#: ../calendar/gui/dialogs/event-page.glade.h:13
#: ../calendar/gui/dialogs/task-page.glade.h:7
msgid "Classi_fication:"
msgstr "बर्गीकरण:"

#: ../calendar/gui/dialogs/event-page.glade.h:14
#: ../calendar/gui/dialogs/task-page.glade.h:8
#: ../calendar/gui/e-cal-list-view.c:255 ../calendar/gui/e-cal-model.c:305
#: ../calendar/gui/e-calendar-table.c:362
msgid "Confidential"
msgstr "विश्वासमा आधारित"

#: ../calendar/gui/dialogs/event-page.glade.h:15
msgid "Event Description"
msgstr "घटना बिबरण"

#: ../calendar/gui/dialogs/event-page.glade.h:16
msgid "Locat_ion:"
msgstr "स्थान"

#: ../calendar/gui/dialogs/event-page.glade.h:17
#: ../calendar/gui/dialogs/task-page.glade.h:10
#: ../calendar/gui/e-cal-list-view.c:254 ../calendar/gui/e-cal-model.c:303
#: ../calendar/gui/e-calendar-table.c:361
msgid "Private"
msgstr "ब्यक्तिगत"

#: ../calendar/gui/dialogs/event-page.glade.h:18
#: ../calendar/gui/dialogs/task-page.glade.h:11
#: ../calendar/gui/e-cal-list-view.c:253 ../calendar/gui/e-cal-model.c:294
#: ../calendar/gui/e-cal-model.c:301 ../calendar/gui/e-calendar-table.c:360
msgid "Public"
msgstr "सार्बजनिक"

#: ../calendar/gui/dialogs/event-page.glade.h:19
msgid "Show time as _busy"
msgstr "ब्यस्त समय देखाऊ"

#: ../calendar/gui/dialogs/event-page.glade.h:20
#: ../calendar/gui/dialogs/task-page.glade.h:13
msgid "Su_mmary:"
msgstr "शारंश:"

#: ../calendar/gui/dialogs/event-page.glade.h:21
msgid "This appointment has customized alarms"
msgstr "यस भेटघाट निधोले अलार्म अनुकूलन गरेको छ।"

#: ../calendar/gui/dialogs/event-page.glade.h:22
msgid "_Alarm"
msgstr "_सुचक"

#: ../calendar/gui/dialogs/event-page.glade.h:23
msgid "_Description:"
msgstr "_बिबरण:"

#: ../calendar/gui/dialogs/event-page.glade.h:24
#: ../calendar/gui/e-meeting-time-sel.c:642
msgid "_End time:"
msgstr "_अन्तिम समय:"

#: ../calendar/gui/dialogs/event-page.glade.h:25
#: ../calendar/gui/e-meeting-time-sel.c:615
msgid "_Start time:"
msgstr "_सुरु समय:"

#: ../calendar/gui/dialogs/meeting-page.c:303
#, fuzzy
msgid "<b>Dele_gatees</b>"
msgstr "<b>हस्ताक्षरहरू</b>"

#: ../calendar/gui/dialogs/meeting-page.c:307
#, fuzzy
msgid "<b>From:</b>"
msgstr "<b>मुख्यपृष्ठ</b>"

#. an empty string is the same as 'None'
#. Put the "None" and "UTC" entries at the top of the combo's list.
#. When "None" is selected we want the field to be cleared.
#. Note that we don't show this here, since by default a 'None' date
#. is not permitted.
#: ../calendar/gui/dialogs/meeting-page.c:313
#: ../calendar/gui/dialogs/meeting-page.glade.h:4
#: ../calendar/gui/e-cal-model-tasks.c:652
#: ../calendar/gui/e-itip-control.c:1104 ../composer/e-msg-composer.c:2112
#: ../filter/filter-rule.c:881 ../mail/em-account-editor.c:683
#: ../mail/em-account-editor.c:1346 ../mail/em-account-prefs.c:437
#: ../mail/em-folder-view.c:1062
#: ../plugins/calendar-weather/calendar-weather.c:371
#: ../plugins/calendar-weather/calendar-weather.c:425
#: ../plugins/itip-formatter/itip-formatter.c:1539
#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:190
#: ../widgets/misc/e-cell-date-edit.c:248 ../widgets/misc/e-dateedit.c:465
#: ../widgets/misc/e-dateedit.c:1504 ../widgets/misc/e-dateedit.c:1673
msgid "None"
msgstr "कोहि पनि होइन"

#: ../calendar/gui/dialogs/meeting-page.c:463
msgid "The organizer selected no longer has an account."
msgstr "आयोजकले लामो नभएको अकाउण्ट छनोट गरेको छ।"

#: ../calendar/gui/dialogs/meeting-page.c:469
msgid "An organizer is required."
msgstr "एउटा आयोजक चाहियो।"

#: ../calendar/gui/dialogs/meeting-page.c:484
msgid "At least one attendee is required."
msgstr "घटिमा पनि एक उपस्थिति आबस्यक छ"

#: ../calendar/gui/dialogs/meeting-page.c:886
msgid "_Delegate To..."
msgstr "_मा प्रत्यायोजन ..."

#: ../calendar/gui/dialogs/meeting-page.etspec.h:1
#: ../calendar/gui/e-meeting-list-view.c:358
#: ../calendar/gui/e-meeting-time-sel.etspec.h:1
msgid "Attendee"
msgstr "सहभागी"

#: ../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 "एक सहभागी थप्नका लागि यहाँ क्लिक गर"

#: ../calendar/gui/dialogs/meeting-page.etspec.h:3
#: ../calendar/gui/e-meeting-time-sel.etspec.h:3
msgid "Common Name"
msgstr "साझा नाम"

#: ../calendar/gui/dialogs/meeting-page.etspec.h:4
#: ../calendar/gui/e-meeting-time-sel.etspec.h:4
msgid "Delegated From"
msgstr "बाट प्रत्यायोजन गरिएको"

#: ../calendar/gui/dialogs/meeting-page.etspec.h:5
#: ../calendar/gui/e-meeting-time-sel.etspec.h:5
msgid "Delegated To"
msgstr "मा प्रत्यायोजन गरिएको"

#: ../calendar/gui/dialogs/meeting-page.etspec.h:6
#: ../calendar/gui/e-meeting-time-sel.etspec.h:6
msgid "Language"
msgstr "भाषा"

#: ../calendar/gui/dialogs/meeting-page.etspec.h:7
#: ../calendar/gui/e-meeting-time-sel.etspec.h:7
msgid "Member"
msgstr "सदस्य"

#: ../calendar/gui/dialogs/meeting-page.etspec.h:8
#: ../calendar/gui/e-meeting-list-view.c:386
#: ../calendar/gui/e-meeting-time-sel.etspec.h:8
msgid "RSVP"
msgstr "RSVP"

#: ../calendar/gui/dialogs/meeting-page.etspec.h:10
#: ../calendar/gui/dialogs/task-editor.c:147
#: ../calendar/gui/e-calendar-table.etspec.h:10
#: ../calendar/gui/e-meeting-list-view.c:394
#: ../calendar/gui/e-meeting-time-sel.etspec.h:10 ../mail/em-filter-i18n.h:63
#: ../mail/message-list.etspec.h:12
msgid "Status"
msgstr "वस्तुस्थिति"

#: ../calendar/gui/dialogs/meeting-page.glade.h:1
msgid "<b>Att_endees</b>"
msgstr "<b>सहभागीहरू</b>"

#: ../calendar/gui/dialogs/meeting-page.glade.h:2
msgid "C_hange Organizer"
msgstr "आयोजक परिबर्तन"

#: ../calendar/gui/dialogs/meeting-page.glade.h:3
#: ../calendar/gui/e-meeting-time-sel.c:428
msgid "Con_tacts..."
msgstr "संपर्कहरू..."

#: ../calendar/gui/dialogs/meeting-page.glade.h:5
msgid "Or_ganizer:"
msgstr "आयोजक:"

#: ../calendar/gui/dialogs/meeting-page.glade.h:6
msgid "Organizer"
msgstr "आयोजक"

#: ../calendar/gui/dialogs/meeting-page.glade.h:7
#: ../calendar/gui/e-itip-control.glade.h:9
msgid "Organizer:"
msgstr "आयोजक:"

#: ../calendar/gui/dialogs/new-calendar.glade.h:2
msgid "<b>Calendar options</b>"
msgstr "<b>पात्रो विकल्पहरू</b>"

#: ../calendar/gui/dialogs/new-calendar.glade.h:3
msgid "Add New Calendar"
msgstr "नयाँ पात्रो थप"

#: ../calendar/gui/dialogs/new-calendar.glade.h:4
msgid "Calendar Group"
msgstr "पात्रो समूह"

#: ../calendar/gui/dialogs/new-calendar.glade.h:5
msgid "Calendar Location"
msgstr "पात्रो स्थान"

#: ../calendar/gui/dialogs/new-calendar.glade.h:6
msgid "Calendar Name"
msgstr "पात्रो नाम"

#: ../calendar/gui/dialogs/new-task-list.glade.h:2
msgid "<b>Task List Options</b>"
msgstr "<b>कार्य सूची विकल्पहरु</b>"

#: ../calendar/gui/dialogs/new-task-list.glade.h:3
msgid "Add New Task List"
msgstr "नयाँ कार्य सूची थप"

#: ../calendar/gui/dialogs/new-task-list.glade.h:4
msgid "Task List Group"
msgstr "कार्य सूची समूह"

#: ../calendar/gui/dialogs/new-task-list.glade.h:5
msgid "Task List Name"
msgstr "कार्य सूची नाम"

#: ../calendar/gui/dialogs/recur-comp.c:51
msgid "You are modifying a recurring event, what would you like to modify?"
msgstr ""
"तपाईँले हालको घटनालाई परिबर्तन गरिरहनु भएको छ, तपाई के परिबर्तन गर्न चाहनु हुन्छ?"

#: ../calendar/gui/dialogs/recur-comp.c:55
msgid "You are modifying a recurring task, what would you like to modify?"
msgstr ""
"तपाईँले हालको एक पुनराबृत्ती घटनालाई परिबर्तन गरिरहनु भएको छ, तपाई के परिबर्तन गर्न "
"चाहनु हुन्छ?"

#: ../calendar/gui/dialogs/recur-comp.c:59
msgid ""
"You are modifying a recurring journal entry, what would you like to modify?"
msgstr ""
"तपाईँले हालको एक पुनराबृत्ती जर्नल प्रबिष्टिालाई परिबर्तन गरिरहनु भएको छ, तपाई के "
"परिबर्तन गर्न चाहनु हुन्छ?"

#: ../calendar/gui/dialogs/recur-comp.c:87
msgid "This Instance Only"
msgstr "यस दृष्टान्त मात्र"

#: ../calendar/gui/dialogs/recur-comp.c:91
msgid "This and Prior Instances"
msgstr "यो र प्रथमिक दृष्टान्तहरू"

#: ../calendar/gui/dialogs/recur-comp.c:97
msgid "This and Future Instances"
msgstr "यो र अरू दृष्टान्तहरू"

#: ../calendar/gui/dialogs/recur-comp.c:102
msgid "All Instances"
msgstr "सबै दृष्टान्तहरू"

#: ../calendar/gui/dialogs/recurrence-page.c:494
msgid "This appointment contains recurrences that Evolution cannot edit."
msgstr "यस भेटघाट निधोमा इभोलुसनले सम्पादन गर्न नसक्ने पुनराबृत्तीहरू छन।"

#: ../calendar/gui/dialogs/recurrence-page.c:815
msgid "Recurrence date is invalid"
msgstr "पुनराबृत्ती समय अमान्य छ"

#: ../calendar/gui/dialogs/recurrence-page.c:926
msgid "on"
msgstr "मा"

#: ../calendar/gui/dialogs/recurrence-page.c:986
msgid "first"
msgstr "पहिलो"

#: ../calendar/gui/dialogs/recurrence-page.c:987
msgid "second"
msgstr "दोस्रो"

#: ../calendar/gui/dialogs/recurrence-page.c:988
msgid "third"
msgstr "तेस्रो"

#: ../calendar/gui/dialogs/recurrence-page.c:989
msgid "fourth"
msgstr "चौथो"

#: ../calendar/gui/dialogs/recurrence-page.c:990
msgid "last"
msgstr "अन्तिम"

#: ../calendar/gui/dialogs/recurrence-page.c:1013
msgid "Other Date"
msgstr "अन्य मिति"

#: ../calendar/gui/dialogs/recurrence-page.c:1041
msgid "day"
msgstr "दिन"

#: ../calendar/gui/dialogs/recurrence-page.c:1178
msgid "on the"
msgstr "मा समाबेश"

#: ../calendar/gui/dialogs/recurrence-page.c:1367
msgid "occurrences"
msgstr "संयोगहरू"

#: ../calendar/gui/dialogs/recurrence-page.c:2323
msgid "Date/Time"
msgstr "मिति/समय"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:1
msgid "<b>Exceptions</b>"
msgstr "<b> अपवादहरू</b>"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:2
#: ../mail/mail-config.glade.h:3
msgid "<b>Preview</b>"
msgstr "<b>पूर्वदृष्य</b>"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:3
msgid "<b>Recurrence</b>"
msgstr "<b>Recurrence</b>"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:4
msgid "Every"
msgstr "प्रत्येक"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:5
msgid "This appointment rec_urs"
msgstr "यो भेटघाटको निधो पनराबृत्त हुन्छ"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:8
msgid "for"
msgstr "का लागि"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:9
msgid "forever"
msgstr "सधैँका लागि"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:10
msgid "month(s)"
msgstr "महिना(हरू)"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:11
msgid "until"
msgstr "सम्म"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:12
msgid "week(s)"
msgstr "हप्ता(हरू)"

#: ../calendar/gui/dialogs/recurrence-page.glade.h:13
msgid "year(s)"
msgstr "बर्ष(हरू)"

#: ../calendar/gui/dialogs/task-details-page.c:410
#: ../calendar/gui/dialogs/task-details-page.c:429
msgid "Completed date is wrong"
msgstr "पुरा गरिएको मिति गलत छ"

#: ../calendar/gui/dialogs/task-details-page.c:522
msgid "Web Page"
msgstr "वेब पृष्ठ"

#: ../calendar/gui/dialogs/task-details-page.glade.h:1
msgid "<span weight=\"bold\">Miscellaneous</span>"
msgstr "<span weight=\"bold\">बिबिध</span>"

#: ../calendar/gui/dialogs/task-details-page.glade.h:2
msgid "<span weight=\"bold\">Status</span>"
msgstr "<span weight=\"bold\"> वस्तुस्थिति</span>"

#. Pass TRUE as is_utc, so it gets converted to the current
#. timezone.
#: ../calendar/gui/dialogs/task-details-page.glade.h:4
#: ../calendar/gui/e-cal-component-preview.c:229
#: ../calendar/gui/e-cal-model-tasks.c:345
#: ../calendar/gui/e-cal-model-tasks.c:658
#: ../calendar/gui/e-calendar-table.c:457 ../calendar/gui/e-itip-control.c:896
#: ../calendar/gui/e-meeting-store.c:196 ../calendar/gui/e-meeting-store.c:219
#: ../calendar/gui/print.c:2361 ../plugins/save-calendar/csv-format.c:390
msgid "Completed"
msgstr "पुरा भयो"

#: ../calendar/gui/dialogs/task-details-page.glade.h:5
#: ../calendar/gui/e-cal-component-preview.c:248
#: ../calendar/gui/e-calendar-table.c:382 ../mail/message-list.c:1008
msgid "High"
msgstr "उच्च"

#: ../calendar/gui/dialogs/task-details-page.glade.h:6
#: ../calendar/gui/e-cal-component-preview.c:226
#: ../calendar/gui/e-cal-model-tasks.c:343
#: ../calendar/gui/e-cal-model-tasks.c:656
#: ../calendar/gui/e-cal-model-tasks.c:731
#: ../calendar/gui/e-calendar-table.c:456 ../calendar/gui/print.c:2358
msgid "In Progress"
msgstr "प्रगतिमा ा"

#: ../calendar/gui/dialogs/task-details-page.glade.h:7
#: ../calendar/gui/e-cal-component-preview.c:252
#: ../calendar/gui/e-calendar-table.c:384 ../mail/message-list.c:1006
msgid "Low"
msgstr "कम"

#: ../calendar/gui/dialogs/task-details-page.glade.h:8
#: ../calendar/gui/e-cal-component-preview.c:250
#: ../calendar/gui/e-cal-model.c:899 ../calendar/gui/e-calendar-table.c:383
#: ../mail/message-list.c:1007
msgid "Normal"
msgstr "साधारण"

#: ../calendar/gui/dialogs/task-details-page.glade.h:9
#: ../calendar/gui/e-cal-component-preview.c:236
#: ../calendar/gui/e-cal-model-tasks.c:341
#: ../calendar/gui/e-cal-model-tasks.c:654
#: ../calendar/gui/e-calendar-table.c:455 ../calendar/gui/print.c:2355
msgid "Not Started"
msgstr "सुरू गरिएको छैन"

#: ../calendar/gui/dialogs/task-details-page.glade.h:10
msgid "P_ercent complete:"
msgstr "प्रतिशत पुरा:"

#: ../calendar/gui/dialogs/task-details-page.glade.h:11
#: ../calendar/gui/e-calendar-table.c:385
msgid "Undefined"
msgstr "अपरिभाषित"

#: ../calendar/gui/dialogs/task-details-page.glade.h:12
msgid "_Date completed:"
msgstr "_मिति पुरा भयो:"

#: ../calendar/gui/dialogs/task-details-page.glade.h:13
#: ../widgets/misc/e-send-options.glade.h:31
msgid "_Priority:"
msgstr "_प्राथमिकता:"

#: ../calendar/gui/dialogs/task-details-page.glade.h:14
msgid "_Status:"
msgstr "_वस्तुस्थिति:"

#: ../calendar/gui/dialogs/task-details-page.glade.h:15
msgid "_Web Page:"
msgstr "_वेबजाल पृष्ठ:"

#: ../calendar/gui/dialogs/task-editor.c:138 ../calendar/gui/print.c:2300
msgid "Task"
msgstr "कार्य"

#: ../calendar/gui/dialogs/task-editor.c:163
#: ../calendar/gui/dialogs/task-editor.c:225
#: ../calendar/gui/dialogs/task-editor.c:379
msgid "Assignment"
msgstr "कार्य"

#: ../calendar/gui/dialogs/task-page.c:529
msgid "Due date is wrong"
msgstr "बाँकी समय गलत छ"

#: ../calendar/gui/dialogs/task-page.c:873
#, c-format
msgid "Unable to open tasks in '%s'."
msgstr "'%s' भित्र कार्यहरू खोल्न असक्षम."

#: ../calendar/gui/dialogs/task-page.glade.h:9
msgid "D_escription:"
msgstr "बिबरण:"

#: ../calendar/gui/dialogs/task-page.glade.h:12
msgid "Sta_rt date:"
msgstr "सुरु मिति:"

#: ../calendar/gui/dialogs/task-page.glade.h:14
msgid "Task Description"
msgstr "कार्य बिबरणणन"

#: ../calendar/gui/dialogs/task-page.glade.h:15
msgid "_Due date:"
msgstr "_पहिलेको समय:"

#: ../calendar/gui/dialogs/task-page.glade.h:16
msgid "_Group:"
msgstr "_समूह:"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:3
msgid "<b>Free/Busy C_alendars</b>"
msgstr "<b> मुक्त/व्यस्त पात्रोहरू</b>"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:4
msgid "<b>Publishing Frequency</b>"
msgstr "<b>आबृत्ती प्रकाश गर्दै</b>"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:5
msgid "<b>Publishing _Location</b>"
msgstr "<b>प्रकाशित गर्दै _स्थान</b>"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:6
msgid "Free/Busy Publishing Settings"
msgstr "मुक्त/व्यस्त प्रकाशन सेटिङ काम"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:7
msgid "_Daily"
msgstr "_दैनिक"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:8
msgid "_Manual"
msgstr "_मानवचालित"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:9
msgid "_Password:"
msgstr "_प्रवेशचिन्ह:"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:10
msgid "_Remember password"
msgstr "_प्रवेशचिन्ह सम्झनुहोस्"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:11
msgid "_Username:"
msgstr "_प्रयोगकर्ता नाम:"

#: ../calendar/gui/dialogs/url-editor-dialog.glade.h:12
msgid "_Weekly"
msgstr "_साप्ताहिक"

#: ../calendar/gui/e-alarm-list.c:395
#, c-format
msgid "%d day"
msgid_plural "%d days"
msgstr[0] "%d दिन"
msgstr[1] ""

#: ../calendar/gui/e-alarm-list.c:400
#, c-format
msgid "%d week"
msgid_plural "%d weeks"
msgstr[0] "%d हप्ता"
msgstr[1] ""

#: ../calendar/gui/e-alarm-list.c:405
#, c-format
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] "%d घण्टा"
msgstr[1] "घण्टा"

#: ../calendar/gui/e-alarm-list.c:410
#, c-format
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%d मिनेट"
msgstr[1] "मिनेट"

#: ../calendar/gui/e-alarm-list.c:415
#, c-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d सेकेण्ड"
msgstr[1] "सेकेन्ड"

#: ../calendar/gui/e-alarm-list.c:462
msgid "Unknown action to be performed"
msgstr "अज्ञात कार्य गरिन्छ"

#. Translator: The first %s refers to the base, which would be actions like
#. * "Play a Sound". Second %s refers to the duration string e.g:"15 minutes"
#: ../calendar/gui/e-alarm-list.c:476
#, c-format
msgid "%s %s before the start of the appointment"
msgstr "%s %s भेटघाट निधो सुरु हुनु अगाडि"

#. Translator: The first %s refers to the base, which would be actions like
#. * "Play a Sound". Second %s refers to the duration string e.g:"15 minutes"
#: ../calendar/gui/e-alarm-list.c:481
#, c-format
msgid "%s %s after the start of the appointment"
msgstr "%s %s भेटघाट निधो सुरु हुनु पछाडि"

#. Translator: The %s refers to the base, which would be actions like
#. * "Play a sound"
#: ../calendar/gui/e-alarm-list.c:488
#, c-format
msgid "%s at the start of the appointment"
msgstr "%s भेटघाट सुरुहने समयमा"

#: ../calendar/gui/e-alarm-list.c:497
#, c-format
msgid "%s %s before the end of the appointment"
msgstr "%s %s भेटघाट निधो समाप्त हुनु अगाडि"

#: ../calendar/gui/e-alarm-list.c:500
#, c-format
msgid "%s %s after the end of the appointment"
msgstr "%s %s भेटघाट निधो अन्त्य पछि"

#: ../calendar/gui/e-alarm-list.c:505
#, c-format
msgid "%s at the end of the appointment"
msgstr "%s भेटघाट निधो समाप्त हुने समयमा"

#: ../calendar/gui/e-alarm-list.c:527
#, c-format
msgid "%s at %s"
msgstr "%s मा %s"

#: ../calendar/gui/e-alarm-list.c:533
#, c-format
msgid "%s for an unknown trigger type"
msgstr "%s एक अज्ञात ट्राइगर प्रकार"

#: ../calendar/gui/e-cal-component-preview.c:70 ../mail/em-folder-view.c:2693
#, c-format
msgid "Click to open %s"
msgstr "खोल्नका लागि क्लिक गर्नुहोस् %s "

#: ../calendar/gui/e-cal-component-preview.c:155 ../filter/filter-rule.c:796
msgid "Untitled"
msgstr "शीर्षक नभएको"

#: ../calendar/gui/e-cal-component-preview.c:186
#: ../calendar/gui/e-itip-control.c:1108
#: ../calendar/gui/e-itip-control.glade.h:11
msgid "Summary:"
msgstr "सारांश:"

#: ../calendar/gui/e-cal-component-preview.c:193
#: ../calendar/gui/e-cal-component-preview.c:204
msgid "Start Date:"
msgstr "शुरु मिति:"

#: ../calendar/gui/e-cal-component-preview.c:215
msgid "Due Date:"
msgstr "पहिलेको मिति:"

#. write status
#. translators: exchange out of office status header
#. Status
#: ../calendar/gui/e-cal-component-preview.c:222
#: ../calendar/gui/e-itip-control.c:1132
#: ../plugins/exchange-account-setup/exchange-account-setup.c:227
#: ../plugins/itip-formatter/itip-view.c:888
msgid "Status:"
msgstr "स्थिति:"

#: ../calendar/gui/e-cal-component-preview.c:246
msgid "Priority:"
msgstr "प्राथमिकता:"

#: ../calendar/gui/e-cal-component-preview.c:299
msgid "Web Page:"
msgstr "वेब पृष्ठ:"

#: ../calendar/gui/e-cal-list-view.etspec.h:2
msgid "End Date"
msgstr "अन्तिम मिति"

#: ../calendar/gui/e-cal-list-view.etspec.h:4
msgid "Start Date"
msgstr "शुरु मिति"

#: ../calendar/gui/e-cal-list-view.etspec.h:5
#: ../calendar/gui/e-calendar-table.etspec.h:11
#: ../mail/mail-dialogs.glade.h:17 ../plugins/save-calendar/csv-format.c:386
msgid "Summary"
msgstr "सारांश"

#: ../calendar/gui/e-cal-model-calendar.c:179
#: ../calendar/gui/e-calendar-table.c:434
msgid "Free"
msgstr "मुक्त"

#: ../calendar/gui/e-cal-model-calendar.c:182
#: ../calendar/gui/e-calendar-table.c:435
#: ../calendar/gui/e-meeting-time-sel.c:412
msgid "Busy"
msgstr "व्यस्त"

#: ../calendar/gui/e-cal-model-tasks.c:606
msgid ""
"The geographical position must be entered in the format: \n"
"\n"
"45.436845,125.862501"
msgstr ""
"भौगोलिक अबस्थालाई यस ढाँचामा प्रबिष्टि गर्नु पर्छ: \n"
"\n"
"४५.४३६८४५,१२५.८६२५०१"

#: ../calendar/gui/e-cal-model-tasks.c:1017 ../calendar/gui/e-cal-model.c:905
#: ../calendar/gui/e-meeting-list-view.c:192
#: ../calendar/gui/e-meeting-store.c:168 ../calendar/gui/e-meeting-store.c:178
#: ../calendar/gui/e-meeting-store.c:808
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:5
msgid "Yes"
msgstr "हो"

#: ../calendar/gui/e-cal-model-tasks.c:1017 ../calendar/gui/e-cal-model.c:905
#: ../calendar/gui/e-meeting-list-view.c:193
#: ../calendar/gui/e-meeting-store.c:180
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:2
msgid "No"
msgstr "होइन"

#. This is the default filename used for temporary file creation
#: ../calendar/gui/e-cal-model.c:307 ../calendar/gui/e-cal-model.c:310
#: ../calendar/gui/e-itip-control.c:1149 ../calendar/gui/e-itip-control.c:1290
#: ../calendar/gui/e-meeting-list-view.c:168
#: ../calendar/gui/e-meeting-list-view.c:182
#: ../calendar/gui/e-meeting-store.c:124 ../calendar/gui/e-meeting-store.c:159
#: ../calendar/gui/e-meeting-store.c:224 ../mail/em-utils.c:1175
#: ../plugins/itip-formatter/itip-formatter.c:235
#: ../plugins/itip-formatter/itip-formatter.c:1564
#: ../plugins/plugin-manager/plugin-manager.c:72
#: ../shell/e-component-registry.c:205 ../shell/e-component-registry.c:211
#: ../widgets/misc/e-charset-picker.c:62
msgid "Unknown"
msgstr "अज्ञात"

#: ../calendar/gui/e-cal-model.c:901
msgid "Recurring"
msgstr "पुनराबर्ती"

#: ../calendar/gui/e-cal-model.c:903
msgid "Assigned"
msgstr "मानाङ्कन गरियो"

#: ../calendar/gui/e-calendar-table.c:404
msgid "0%"
msgstr "0%"

#: ../calendar/gui/e-calendar-table.c:405
msgid "10%"
msgstr "१०%"

#: ../calendar/gui/e-calendar-table.c:406
msgid "20%"
msgstr "२०%"

#: ../calendar/gui/e-calendar-table.c:407
msgid "30%"
msgstr "३०%"

#: ../calendar/gui/e-calendar-table.c:408
msgid "40%"
msgstr "४०%"

#: ../calendar/gui/e-calendar-table.c:409
msgid "50%"
msgstr "५०%"

#: ../calendar/gui/e-calendar-table.c:410
msgid "60%"
msgstr "६०%"

#: ../calendar/gui/e-calendar-table.c:411
msgid "70%"
msgstr "७०%"

#: ../calendar/gui/e-calendar-table.c:412
msgid "80%"
msgstr "८०%"

#: ../calendar/gui/e-calendar-table.c:413
msgid "90%"
msgstr "९०%"

#: ../calendar/gui/e-calendar-table.c:414
msgid "100%"
msgstr "१००%"

#: ../calendar/gui/e-calendar-table.c:516
msgid "Task Table"
msgstr "कार्य तालिका"

#: ../calendar/gui/e-calendar-table.c:694
#: ../calendar/gui/e-calendar-view.c:653
msgid "Deleting selected objects"
msgstr "छानिएका बस्तुहरू मेटिँदै छ"

#: ../calendar/gui/e-calendar-table.c:873
#: ../calendar/gui/e-calendar-view.c:780
msgid "Updating objects"
msgstr "बस्तुहरू अद्याबधिक गर्दै"

#: ../calendar/gui/e-calendar-table.c:1014
#: ../calendar/gui/e-calendar-view.c:1083 ../composer/e-msg-composer.c:1241
msgid "Save as..."
msgstr "...... जसरी भण्डार गर"

#: ../calendar/gui/e-calendar-table.c:1156
#: ../calendar/gui/e-calendar-view.c:1506 ../ui/evolution-addressbook.xml.h:37
msgid "_Open"
msgstr "_खोल्नुहोस"

#: ../calendar/gui/e-calendar-table.c:1157
msgid "Open _Web Page"
msgstr "खोल _वेबजाल पृष्ठ"

#: ../calendar/gui/e-calendar-table.c:1158
#: ../calendar/gui/e-calendar-view.c:1507 ../mail/em-folder-view.c:1043
#: ../mail/em-popup.c:494
msgid "_Save As..."
msgstr "_जसरी भण्डार गर..."

#: ../calendar/gui/e-calendar-table.c:1159
#: ../calendar/gui/e-calendar-view.c:1487
#: ../calendar/gui/e-calendar-view.c:1508 ../mail/em-folder-view.c:1044
#: ../ui/evolution-addressbook.xml.h:40 ../ui/evolution-calendar.xml.h:44
#: ../ui/evolution-mail-message.xml.h:117 ../ui/evolution-tasks.xml.h:25
msgid "_Print..."
msgstr "_छाप्नुहोस....."

#: ../calendar/gui/e-calendar-table.c:1163
#: ../calendar/gui/e-calendar-view.c:1512 ../ui/evolution-addressbook.xml.h:1
#: ../ui/evolution-calendar.xml.h:1 ../ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "काट"

#: ../calendar/gui/e-calendar-table.c:1165
#: ../calendar/gui/e-calendar-view.c:1490
#: ../calendar/gui/e-calendar-view.c:1514 ../ui/evolution-addressbook.xml.h:38
#: ../ui/evolution-calendar.xml.h:43 ../ui/evolution-composer-entries.xml.h:9
#: ../ui/evolution-tasks.xml.h:24
msgid "_Paste"
msgstr "_टाँस"

#: ../calendar/gui/e-calendar-table.c:1169
msgid "_Assign Task"
msgstr "_काम लागाउनु"

#: ../calendar/gui/e-calendar-table.c:1170
msgid "_Forward as iCalendar"
msgstr "_इपात्रोको रूपमा फर्वार्ड गर"

#: ../calendar/gui/e-calendar-table.c:1171
msgid "_Mark as Complete"
msgstr "_पुरा भएको चिन्ह देऊ"

#: ../calendar/gui/e-calendar-table.c:1172
msgid "_Mark Selected Tasks as Complete"
msgstr "_छानिएका कार्यहरूलाई पुराभएको चिन्ह देऊ"

#. FIXME: need to disable for undeletable folders
#: ../calendar/gui/e-calendar-table.c:1176
#: ../calendar/gui/e-calendar-view.c:1526 ../mail/em-folder-tree.c:2119
#: ../mail/em-folder-view.c:1047 ../ui/evolution-addressbook.xml.h:33
#: ../ui/evolution-calendar.xml.h:40 ../ui/evolution-mail-list.xml.h:26
#: ../ui/evolution-tasks.xml.h:21
msgid "_Delete"
msgstr "_मेट्नुहोस्"

#: ../calendar/gui/e-calendar-table.c:1177
msgid "_Delete Selected Tasks"
msgstr "_छानिएको कार्यहरूलाई मेट्नुहोस्"

#: ../calendar/gui/e-calendar-table.c:1328
#: ../calendar/gui/e-calendar-table.etspec.h:4
msgid "Click to add a task"
msgstr "कार्य थप गर्न क्लिक गर "

#: ../calendar/gui/e-calendar-table.etspec.h:2
#, no-c-format
msgid "% Complete"
msgstr "% पुरा"

#: ../calendar/gui/e-calendar-table.etspec.h:5 ../mail/mail-send-recv.c:617
msgid "Complete"
msgstr "पूरा"

#: ../calendar/gui/e-calendar-table.etspec.h:6
msgid "Completion date"
msgstr "पुराहुने मिति"

#: ../calendar/gui/e-calendar-table.etspec.h:7
msgid "Due date"
msgstr "पहिलेको मिति"

#: ../calendar/gui/e-calendar-table.etspec.h:8
#: ../plugins/save-calendar/csv-format.c:397
msgid "Priority"
msgstr "प्राथमिकता"

#: ../calendar/gui/e-calendar-table.etspec.h:9
msgid "Start date"
msgstr "शुरु मिति"

#: ../calendar/gui/e-calendar-table.etspec.h:12
msgid "Task sort"
msgstr "कार्य श्रेणीबद्ध"

#: ../calendar/gui/e-calendar-view.c:1204
msgid "Moving items"
msgstr "प्रकारहरू हटाउँदै"

#: ../calendar/gui/e-calendar-view.c:1206
msgid "Copying items"
msgstr "प्रकारहरू प्रतिलिपिी हुँदैछ"

#: ../calendar/gui/e-calendar-view.c:1481
msgid "New _Appointment..."
msgstr "नयाँ _भेट्ने निधो..."

#: ../calendar/gui/e-calendar-view.c:1482
msgid "New All Day _Event"
msgstr "नयाँ सबै दिन _घटना"

#: ../calendar/gui/e-calendar-view.c:1484
msgid "New Task"
msgstr "नयाँ काम"

#. FIXME: hook in this somehow
#: ../calendar/gui/e-calendar-view.c:1494
msgid "Current View"
msgstr "हालको दृष्य"

#: ../calendar/gui/e-calendar-view.c:1496 ../ui/evolution-calendar.xml.h:26
msgid "Select _Today"
msgstr "छनोट _आज"

#: ../calendar/gui/e-calendar-view.c:1497
msgid "_Select Date..."
msgstr "_छनोट मिति."

#. TODO: Why is this in a context menu when it applies globally?
#: ../calendar/gui/e-calendar-view.c:1502 ../ui/evolution-calendar.xml.h:45
msgid "_Publish Free/Busy Information"
msgstr "_मुक्त/व्यस्त सूचना प्रकाशन गर"

#: ../calendar/gui/e-calendar-view.c:1518
msgid "Cop_y to Calendar..."
msgstr "पात्रो...मा प्रतिलिपि गर"

#: ../calendar/gui/e-calendar-view.c:1519
msgid "Mo_ve to Calendar..."
msgstr "पात्रोमा सार्नुहोस्."

#: ../calendar/gui/e-calendar-view.c:1520
#, fuzzy
msgid "_Delegate Meeting..."
msgstr "_बैठक कार्यतालिका..."

#: ../calendar/gui/e-calendar-view.c:1521
msgid "_Schedule Meeting..."
msgstr "_बैठक कार्यतालिका..."

#: ../calendar/gui/e-calendar-view.c:1522
msgid "_Forward as iCalendar..."
msgstr "_इपात्रो को रुपमा फर्वार्ड गर"

#: ../calendar/gui/e-calendar-view.c:1527
msgid "Make this Occurrence _Movable"
msgstr "यस पुनराबृत्तीलाई चल बनाऊ"

#: ../calendar/gui/e-calendar-view.c:1528
msgid "Delete this _Occurrence"
msgstr "यस _पुनराबृत्ती मेट्नुहोस्"

#: ../calendar/gui/e-calendar-view.c:1529
msgid "Delete _All Occurrences"
msgstr "सबै _पुनराबृत्तीहरू मेट्नुहोस्"

#. strftime format of a weekday, a date and a time, 24-hour.
#. strptime format of a weekday, a date and a time,
#. in 24-hour format.
#. strftime format of a weekday, a date and a
#. time, in 24-hour format.
#: ../calendar/gui/e-cell-date-edit-text.c:115 ../e-util/e-time-utils.c:180
#: ../e-util/e-time-utils.c:393
msgid "%a %m/%d/%Y %H:%M:%S"
msgstr "%a %m/%d/%Y %H:%M:%S"

#. strftime format of a weekday, a date and a time, 12-hour.
#. strptime format of a weekday, a date and a time,
#. in 12-hour format.
#. strftime format of a weekday, a date and a
#. time, in 12-hour format.
#: ../calendar/gui/e-cell-date-edit-text.c:118 ../e-util/e-time-utils.c:175
#: ../e-util/e-time-utils.c:402
msgid "%a %m/%d/%Y %I:%M:%S %p"
msgstr "%a %m/%d/%Y %I:%M:%S %p"

#: ../calendar/gui/e-cell-date-edit-text.c:123
#, c-format
msgid ""
"The date must be entered in the format: \n"
"\n"
"%s"
msgstr ""
"समय अनिबार्य रूपमा यस ढाँचामा हुनु पर्छ: \n"
"\n"
"%s"

#: ../calendar/gui/e-day-view-time-item.c:553
#, c-format
msgid "%02i minute divisions"
msgstr "%02i minute divisions"

#. strftime format %A = full weekday name, %d = day of month,
#. %B = full month name. Don't use any other specifiers.
#. strftime format %A = full weekday name, %d = day of
#. month, %B = full month name. You can change the
#. order but don't change the specifiers or add
#. anything.
#: ../calendar/gui/e-day-view-top-item.c:715 ../calendar/gui/e-day-view.c:1499
#: ../calendar/gui/e-week-view-main-item.c:312 ../calendar/gui/print.c:1517
msgid "%A %d %B"
msgstr "%A %d %B"

#. String to use in 12-hour time format for times in the morning.
#: ../calendar/gui/e-day-view.c:752 ../calendar/gui/e-week-view.c:512
#: ../calendar/gui/print.c:841
msgid "am"
msgstr "am"

#. String to use in 12-hour time format for times in the afternoon.
#: ../calendar/gui/e-day-view.c:755 ../calendar/gui/e-week-view.c:515
#: ../calendar/gui/print.c:843
msgid "pm"
msgstr "pm"

#: ../calendar/gui/e-itip-control.c:761
msgid "Yes. (Complex Recurrence)"
msgstr "हो. (जटिल पुनरागमन)"

#: ../calendar/gui/e-itip-control.c:772
#, c-format
msgid "Every day"
msgid_plural "Every %d days"
msgstr[0] "प्रत्येक दिन"
msgstr[1] "प्रत्येक दिन"

#: ../calendar/gui/e-itip-control.c:777
#, c-format
msgid "Every week"
msgid_plural "Every %d weeks"
msgstr[0] "प्रत्येक हप्ता"
msgstr[1] "प्रत्येक हप्ता"

#: ../calendar/gui/e-itip-control.c:779
#, c-format
msgid "Every week on "
msgid_plural "Every %d weeks on "
msgstr[0] "प्रत्येक हप्तामा"
msgstr[1] "प्रत्येक हप्तामा"

#: ../calendar/gui/e-itip-control.c:787
msgid " and "
msgstr "र "

#: ../calendar/gui/e-itip-control.c:794
#, c-format
msgid "The %s day of "
msgstr "यो %s दिनको "

#: ../calendar/gui/e-itip-control.c:807
#, c-format
msgid "The %s %s of "
msgstr "The %s %s of "

#: ../calendar/gui/e-itip-control.c:814
#, c-format
msgid "every month"
msgid_plural "every %d months"
msgstr[0] "प्रत्येक महिना"
msgstr[1] "हरेक महिना"

#: ../calendar/gui/e-itip-control.c:818
#, c-format
msgid "Every year"
msgid_plural "Every %d years"
msgstr[0] "प्रत्येक बर्ष"
msgstr[1] "प्रत्येक"

#: ../calendar/gui/e-itip-control.c:829
#, c-format
msgid "a total of %d time"
msgid_plural " a total of %d times"
msgstr[0] "जम्मा %d समय"
msgstr[1] "पुराको %d समय"

#: ../calendar/gui/e-itip-control.c:838
msgid ", ending on "
msgstr "अन्त्य हुँदै"

#: ../calendar/gui/e-itip-control.c:862
msgid "Starts"
msgstr "सुरु हुन्छ"

#: ../calendar/gui/e-itip-control.c:875
msgid "Ends"
msgstr "अन्त्यहरू"

#: ../calendar/gui/e-itip-control.c:909
#: ../plugins/save-calendar/csv-format.c:395
msgid "Due"
msgstr "पुरानो"

#: ../calendar/gui/e-itip-control.c:949 ../calendar/gui/e-itip-control.c:1006
msgid "iCalendar Information"
msgstr "इ पात्रो सुचना"

#. Title
#: ../calendar/gui/e-itip-control.c:966
msgid "iCalendar Error"
msgstr "इ पात्रो गल्ती"

#: ../calendar/gui/e-itip-control.c:1038 ../calendar/gui/e-itip-control.c:1054
#: ../calendar/gui/e-itip-control.c:1065 ../calendar/gui/e-itip-control.c:1082
#: ../plugins/itip-formatter/itip-view.c:333
#: ../plugins/itip-formatter/itip-view.c:334
#: ../plugins/itip-formatter/itip-view.c:401
#: ../plugins/itip-formatter/itip-view.c:402
msgid "An unknown person"
msgstr "एक अज्ञात ब्यक्ति"

#. Describe what the user can do
#: ../calendar/gui/e-itip-control.c:1089
msgid ""
"<br> Please review the following information, and then select an action from "
"the menu below."
msgstr ""
"<br> कृपया तलका सूचनाहरूलाई पुन देखाउनु होला, र त्यसपछि तलको मेनुबाट एक कार्य छनोट "
"गर।ल."

#: ../calendar/gui/e-itip-control.c:1137
#: ../calendar/gui/e-meeting-list-view.c:204
#: ../calendar/gui/e-meeting-store.c:188 ../calendar/gui/e-meeting-store.c:211
#: ../calendar/gui/itip-utils.c:547
#: ../plugins/itip-formatter/itip-formatter.c:1552
msgid "Accepted"
msgstr "स्वीकार गरियो"

#: ../calendar/gui/e-itip-control.c:1141 ../calendar/gui/itip-utils.c:550
#: ../plugins/itip-formatter/itip-formatter.c:1555
msgid "Tentatively Accepted"
msgstr "तत्कालको लागि स्विकार गरियो"

#: ../calendar/gui/e-itip-control.c:1145
#: ../calendar/gui/e-meeting-list-view.c:205
#: ../calendar/gui/e-meeting-store.c:190 ../calendar/gui/e-meeting-store.c:213
#: ../calendar/gui/itip-utils.c:553 ../calendar/gui/itip-utils.c:582
#: ../plugins/itip-formatter/itip-formatter.c:1558
msgid "Declined"
msgstr "पतन भयो"

#: ../calendar/gui/e-itip-control.c:1229
msgid ""
"The meeting has been cancelled, however it could not be found in your "
"calendars"
msgstr "बैठक रद्द गरिएको छ, जेहोस तपाईँको पात्रोमा यो पत्तालगाउन सकिने छैन।"

#: ../calendar/gui/e-itip-control.c:1231
msgid ""
"The task has been cancelled, however it could not be found in your task lists"
msgstr "कार्य रद्द गरिएको छ, जेहोस तपाईँको पात्रोमा यो पत्तालगाउन सकिने छैन।"

#: ../calendar/gui/e-itip-control.c:1310
#, c-format
msgid "<b>%s</b> has published meeting information."
msgstr "<b>%s</b> ले बैठक सूचना प्रकाशित गरेको छ।"

#: ../calendar/gui/e-itip-control.c:1311
msgid "Meeting Information"
msgstr "बैठक सुचना"

#: ../calendar/gui/e-itip-control.c:1317
#, c-format
msgid "<b>%s</b> requests the presence of %s at a meeting."
msgstr "<b>%s</b> बैटकमा %s को उपस्थितिका लागि अनुरोध गर्छ।"

#: ../calendar/gui/e-itip-control.c:1319
#, c-format
msgid "<b>%s</b> requests your presence at a meeting."
msgstr "<b>%s</b> बैटकमा तपाईँको उपस्थितिका लागि अनुरोध गर्छ।"

#: ../calendar/gui/e-itip-control.c:1320
msgid "Meeting Proposal"
msgstr "बैठक प्रस्ताब"

#. FIXME Whats going on here?