~vcs-imports/balsa/master

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
# Translation into the Walloon language - balsa wa.po
# Si vos voloz donner on côp di spale pol ratournaedje di Gnome (ou des
# ôtes libes programes) sicrijhoz mu a l' adresse emile
# <pablo@walon.org>; nos avans co bråmint di l' ovraedje a fé.
#
# Copyright (C) 2000 Free Software Foundation
# Lorint Hendschel <LorintHendschel@skynet.be> 2000,2003.
# Pablo Saratxaga <pablo@mandriva.com> 2000,2003.
# Pablo Saratxaga <pablo@walon.org>, 2003, 2004, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: balsa 1.2.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-21 10:08+0200\n"
"PO-Revision-Date: 2006-09-21 16:06+0200\n"
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
"Language-Team: Walloon <linux-wa@walon.org>\n"
"Language: wa\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 > 1;\n"
"X-Generator: KBabel 1.9.1\n"

#: ../balsa.desktop.in.h:1
msgid "Balsa"
msgstr "Balsa"

#: ../balsa.desktop.in.h:2
msgid "E-Mail utility"
msgstr "Usteye d' emilaedje"

#. The externq database doesn't support Id's, sorry!
#: ../libbalsa/address-book-extern.c:210 ../libbalsa/address-book-ldap.c:479
#: ../libbalsa/address-book-ldif.c:329
msgid "No-Id"
msgstr "Sins-idintifiant"

#: ../libbalsa/address-book-extern.c:215 ../libbalsa/address-book-extern.c:370
#: ../libbalsa/address-book-ldap.c:485 ../libbalsa/address-book-ldif.c:309
#: ../libbalsa/address-book-ldif.c:332 ../libbalsa/address-book-ldif.c:351
#: ../libbalsa/address-book-ldif.c:355 ../libbalsa/address-book-vcard.c:158
#: ../libbalsa/address-book-vcard.c:312
msgid "No-Name"
msgstr "Sins-no"

#: ../libbalsa/address-book-ldap.c:275
msgid "SASL Interaction\n"
msgstr ""

#: ../libbalsa/address-book-ldap.c:322
msgid "TLS requested but not compiled in"
msgstr ""

#: ../libbalsa/address-book.c:315 ../libbalsa/filter-error.c:45
msgid "No error"
msgstr "Nole aroke"

#: ../libbalsa/address-book.c:316
msgid "Cannot read from address book"
msgstr "Dji n' sai lére do calpin d' adresses"

#: ../libbalsa/address-book.c:317
msgid "Cannot write to address book"
msgstr "Dji n' sai scrire e l' calpin d' adresses"

#: ../libbalsa/address-book.c:318 ../libbalsa/imap-server.c:512
msgid "Cannot connect to the server"
msgstr "Dji n' mi sai raloyî å sierveu"

#: ../libbalsa/address-book.c:319
msgid "Cannot search in the address book"
msgstr "Dji n' sai cweri e l' calpin d' adresses"

#: ../libbalsa/address-book.c:321
msgid "Cannot add duplicate entry"
msgstr "Dji n' såreu radjouter ene intrêye e dobe"

#: ../libbalsa/address-book.c:323
msgid "Cannot find address in address book"
msgstr "Dji n' sai trover l' adresse e calpin d' adresses"

#: ../libbalsa/address-book.c:324 ../src/main-window.c:2366
#: ../src/main-window.c:4471 ../src/sendmsg-window.c:3649
msgid "Unknown error"
msgstr "Aroke nén cnoxhowe"

#: ../libbalsa/address.c:522
msgid "D_isplayed Name:"
msgstr "No di _håyné:"

#: ../libbalsa/address.c:523
msgid "_First Name:"
msgstr "_Pitit no:"

#: ../libbalsa/address.c:524
msgid "_Last Name:"
msgstr "No d' _famile:"

#: ../libbalsa/address.c:525
msgid "_Nickname:"
msgstr "No do _spotaedje:"

#: ../libbalsa/address.c:526
msgid "O_rganization:"
msgstr "_Organizåcion:"

#: ../libbalsa/address.c:527
msgid "_Email Address:"
msgstr "_Adresse emile:"

#. Right/Add button
#: ../libbalsa/address.c:546 ../src/filter-edit-callbacks.c:1022
#: ../src/filter-run-dialog.c:327
msgid "A_dd"
msgstr "_Radjouter"

#: ../libbalsa/body.c:115 ../libbalsa/mailbox_local.c:1676
#: ../libbalsa/message.c:894
msgid "(No subject)"
msgstr "(Nou sudjet)"

#: ../libbalsa/files.c:231
#, c-format
msgid "Open with %s"
msgstr "Drovi avou %s"

#: ../libbalsa/filter-error.c:46
msgid "Syntax error in the filter configuration file"
msgstr ""

#: ../libbalsa/filter-error.c:47
msgid "Unable to allocate memory"
msgstr "Dji n' sai alouwer del memwere"

#: ../libbalsa/filter-error.c:48
msgid "Error in regular expression syntax"
msgstr "Aroke el sintacse di l' erîlêye ratourneure"

#: ../libbalsa/filter-error.c:49
msgid "Attempt to apply an invalid filter"
msgstr ""

#: ../libbalsa/filter-file.c:141
#, c-format
msgid "Invalid filters %s for mailbox %s"
msgstr "Passetes nén valides %s pol boesse %s"

#: ../libbalsa/filter.c:130 ../libbalsa/mailbox_local.c:788
msgid "Unable to load message body to match filter"
msgstr ""

#: ../libbalsa/filter.c:236
#, c-format
msgid "Invalid filter: %s"
msgstr "Passete nén valide: %s"

#: ../libbalsa/filter.c:275 ../libbalsa/filter.c:298
#, c-format
msgid "Bad mailbox name for filter: %s"
msgstr "Måva no d' boesse ås emiles pol passete: %s"

#: ../libbalsa/filter.c:279
#, c-format
msgid "Error when copying messages: %s"
msgstr "Åk n' a nén stî tot copiant les messaedjes: %s"

#: ../libbalsa/filter.c:289
#, c-format
msgid "Error when trashing messages: %s"
msgstr "Åk n' a nén stî tot-z evoyant les messaedjes å batch: %s"

#: ../libbalsa/filter.c:302
#, c-format
msgid "Error when moving messages: %s"
msgstr "Åk n' a nén stî tot bodjant les messaedjes: %s"

#: ../libbalsa/gmime-application-pkcs7.c:237
#: ../libbalsa/gmime-application-pkcs7.c:380
msgid "Failed to decrypt MIME part: parse error"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:279 ../libbalsa/rfc3156.c:1598
#, c-format
msgid ""
"The passphrase for this key was bad, please try again!\n"
"\n"
"Key: %s"
msgstr ""
"Li scret po cisse clé la n' est nén corek, rissayî cor on côp s' i vs "
"plait!\n"
"\n"
"Clé: %s"

#: ../libbalsa/gmime-gpgme-context.c:284 ../libbalsa/rfc3156.c:1603
#, c-format
msgid ""
"Please enter the passphrase for the secret key!\n"
"\n"
"Key: %s"
msgstr ""
"Tapez l' sicret pol clé privêye!\n"
"\n"
"Clé: %s"

#: ../libbalsa/gmime-gpgme-context.c:404 ../libbalsa/gmime-gpgme-context.c:486
#: ../libbalsa/gmime-gpgme-context.c:497 ../libbalsa/gmime-gpgme-context.c:612
#: ../libbalsa/gmime-gpgme-context.c:703
#, c-format
msgid "%s: could not get data from stream: %s"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:412 ../libbalsa/gmime-gpgme-context.c:621
#: ../libbalsa/gmime-gpgme-context.c:711
#, c-format
msgid "%s: could not create new data object: %s"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:422
#, c-format
msgid "%s: signing failed: %s"
msgstr "%s: li sinaedje a fwaitberwete: %s"

#: ../libbalsa/gmime-gpgme-context.c:511
#, c-format
msgid "%s: signature verification failed: %s"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:576
msgid "combined signing and encryption is only defined for RFC 2440"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:647
#, c-format
msgid "%s: signing and encryption failed: %s"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:651
#, c-format
msgid "%s: encryption failed: %s"
msgstr "%s: l' ecriptaedje a fwait berwete: %s"

#: ../libbalsa/gmime-gpgme-context.c:723
#, c-format
msgid "%s: decryption failed: %s"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:758
#, c-format
msgid "%s: could not create context: %s"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:814
msgid "the crypto engine for protocol OpenPGP is not available"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:824
msgid "the crypto engine for protocol CMS is not available"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:831
#, c-format
msgid "invalid crypto engine %d"
msgstr ""

#: ../libbalsa/gmime-gpgme-context.c:862 ../libbalsa/gmime-gpgme-context.c:884
#, c-format
msgid "%s: could not list keys for %s: %s"
msgstr "%s: dji n' a savou mostrer les clés po %s: %s"

#: ../libbalsa/gmime-gpgme-context.c:896
#, c-format
msgid "%s: could not find a key for %s"
msgstr "%s: dji n' a savou trover ene clé po %s"

#: ../libbalsa/gmime-gpgme-context.c:908
#, c-format
msgid "%s: multiple keys for %s"
msgstr "%s: pus d' ene clé po %s"

#: ../libbalsa/gmime-gpgme-context.c:953
#, c-format
msgid "%s: insufficient validity for uid %s"
msgstr ""

#. should "re" be localized ?
#: ../libbalsa/identity.c:102 ../libbalsa/mailbox_local.c:1795
#: ../libbalsa/mailbox_local.c:1797 ../src/sendmsg-window.c:3512
#: ../src/sendmsg-window.c:3513
msgid "Re:"
msgstr "Re:"

#: ../libbalsa/identity.c:103 ../src/sendmsg-window.c:3543
#: ../src/sendmsg-window.c:3544
msgid "Fwd:"
msgstr ""

#: ../libbalsa/identity.c:160
msgid "New Identity"
msgstr "Novele idintité"

#: ../libbalsa/identity.c:413
msgid "Current"
msgstr "Do moumint"

#: ../libbalsa/identity.c:669 ../libbalsa/smtp-server.c:257
msgid "Default"
msgstr "Prémetou"

#. Translators: please do not translate Face.
#: ../libbalsa/identity.c:864
msgid "_Face Path"
msgstr "Tchimin po _Face"

#. Translators: please do not translate Face.
#: ../libbalsa/identity.c:870
msgid "_X-Face Path"
msgstr "Tchimin po _X-Face"

#. create the "General" tab
#: ../libbalsa/identity.c:896
msgid "General"
msgstr "Djenerå"

#: ../libbalsa/identity.c:898
msgid "_Identity Name:"
msgstr "No d' l' _idintité:"

#: ../libbalsa/identity.c:900
msgid "_Full Name:"
msgstr "No en _etir:"

#: ../libbalsa/identity.c:902
msgid "_Mailing Address:"
msgstr "Adresse _emile:"

#: ../libbalsa/identity.c:904
msgid "Reply _To:"
msgstr "_Responde a:"

#: ../libbalsa/identity.c:906
msgid "_Domain:"
msgstr "_Dominne:"

#: ../libbalsa/identity.c:908
msgid "_Bcc:"
msgstr "_Bcc:"

#: ../libbalsa/identity.c:910
msgid "Reply _String:"
msgstr "_Tchinne po les responses:"

#: ../libbalsa/identity.c:912
msgid "F_orward String:"
msgstr ""

#: ../libbalsa/identity.c:915
msgid "SMT_P Server:"
msgstr "Sierveu SMT_P:"

#. create the "Signature" tab
#: ../libbalsa/identity.c:920
msgid "Signature"
msgstr "Sinateure"

#: ../libbalsa/identity.c:923
msgid "Signature _Path"
msgstr "_Tchimin pol sinateure"

#: ../libbalsa/identity.c:926
msgid "_Execute Signature"
msgstr "_Enonder li sinateure"

#: ../libbalsa/identity.c:929
msgid "Incl_ude Signature"
msgstr ""

#: ../libbalsa/identity.c:932
msgid "Include Signature When For_warding"
msgstr ""

#: ../libbalsa/identity.c:935
msgid "Include Signature When Rep_lying"
msgstr ""

#: ../libbalsa/identity.c:938
msgid "_Add Signature Separator"
msgstr "_Radjouter li separateu di sinateure"

#: ../libbalsa/identity.c:941
msgid "Prepend Si_gnature"
msgstr "Mete li sinateure al _copete"

#. create the "Security" tab
#: ../libbalsa/identity.c:953
msgid "Security"
msgstr "Såvrité"

#: ../libbalsa/identity.c:956
msgid "sign messages by default"
msgstr "siner come prémetowe dujhance"

#: ../libbalsa/identity.c:959
msgid "encrypt messages by default"
msgstr "ecripter come prémetowe dujhance"

#: ../libbalsa/identity.c:962
msgid "default protocol"
msgstr "prémetou protocole"

#: ../libbalsa/identity.c:965
msgid "always trust GnuPG keys when encrypting"
msgstr "tofer aveur fiyåte ezès clés GnuPG tot-z ecriptant"

#: ../libbalsa/identity.c:1102
#, c-format
msgid "Error reading file %s: %s"
msgstr "Åk n' a nén stî tot lijhant l' fitchî %s: %s"

#. Translators: please do not translate Face.
#: ../libbalsa/identity.c:1113
#, c-format
msgid "Face header file %s is too long (%d bytes)."
msgstr ""

#. Translators: please do not translate Face.
#: ../libbalsa/identity.c:1123
#, c-format
msgid "Face header file %s contains binary data."
msgstr ""

#. Translators: please do not translate Face.
#: ../libbalsa/identity.c:1143 ../src/balsa-message.c:1236
#, c-format
msgid "Error loading Face: %s"
msgstr "Åk n' a nén stî tot tcherdjant Face: %s"

#: ../libbalsa/identity.c:1339
msgid "Error: The identity does not have a name"
msgstr "Aroke: L' idintité n' a pont d' no"

#: ../libbalsa/identity.c:1349
msgid "Error: An identity with that name already exists"
msgstr "Aroke: Ene idintité avou ç' no la egzistêye dedja"

#: ../libbalsa/identity.c:1545
msgid "Do you really want to delete the selected identity?"
msgstr "Voloz vs po do bon disfacer li tchoezeye idintité?"

#: ../libbalsa/identity.c:1580
#, c-format
msgid "Error displaying help for identities: %s\n"
msgstr "Åk n' a nén stî tot håynant l' aidance po ls idintités: %s\n"

#: ../libbalsa/identity.c:1626
msgid "Manage Identities"
msgstr "Manaedjî les idintités"

#: ../libbalsa/identity.c:1984
msgid "GnuPG MIME mode"
msgstr "Môde GnuPG MIME"

#: ../libbalsa/identity.c:1986
msgid "GnuPG OpenPGP mode"
msgstr "Môde GnuPG OpenPGP"

#: ../libbalsa/identity.c:1989
msgid "GpgSM S/MIME mode"
msgstr "Môde GpgSM S/MIME"

#. IMAP host name + message
#: ../libbalsa/imap-server.c:256
#, c-format
msgid ""
"IMAP server %s alert:\n"
"%s"
msgstr ""
"Abranle do sierveu IMAP %s:\n"
"%s"

#. IMAP host name + message
#: ../libbalsa/imap-server.c:260
#, c-format
msgid "IMAP server %s error: %s"
msgstr "Aroke do sierveu IMAP %s: %s"

#. IMAP host name + message
#: ../libbalsa/imap-server.c:266
#, c-format
msgid "%s: %s"
msgstr "%s: %s"

#: ../libbalsa/imap-server.c:517 ../libbalsa/imap-server.c:522
#, c-format
msgid "Cannot connect to the server: %s"
msgstr "Dji n' mi sai raloyî å sierveu: %s"

#: ../libbalsa/imap-server.c:670
#, c-format
msgid "Exceeded the number of connections per server %s"
msgstr ""

#: ../libbalsa/libbalsa-conf.c:203
msgid "Your Balsa configuration is now stored in \"~/.balsa/config\"."
msgstr ""

#: ../libbalsa/libbalsa.c:280
msgid "Invalid date"
msgstr "Date nén valide"

#: ../libbalsa/libbalsa.c:296 ../src/pref-manager.c:1312
#: ../src/pref-manager.c:1408
msgid "Unknown"
msgstr "Nén cnoxhou"

#: ../libbalsa/libbalsa.c:435
#, c-format
msgid ""
"Authenticity of this certificate could not be verified.\n"
"<b>Reason:</b> %s\n"
"<b>This certificate belongs to:</b>\n"
msgstr ""

#: ../libbalsa/libbalsa.c:447
msgid ""
"\n"
"<b>This certificate was issued by:</b>\n"
msgstr ""
"\n"
"<b>Ciste acertineure a stî fwaite pa:</b>\n"

#: ../libbalsa/libbalsa.c:458
#, c-format
msgid ""
"<b>This certificate is valid</b>\n"
"from %s\n"
"to %s\n"
"<b>Fingerprint:</b> %s"
msgstr ""
"<b>Ciste acertineure est valide</b>\n"
"do %s\n"
"å %s\n"
"<b>Arote del clé:</b> %s"

#: ../libbalsa/libbalsa.c:467
msgid "SSL/TLS certificate"
msgstr "Acertineure SSL/TLS"

#: ../libbalsa/libbalsa.c:469
msgid "_Accept Once"
msgstr "_Accepter ç' côp ci"

#: ../libbalsa/libbalsa.c:470
msgid "Accept&_Save"
msgstr "Accepter et _schaper"

#: ../libbalsa/libbalsa.c:471
msgid "_Reject"
msgstr "_Ribourer"

#: ../libbalsa/libbalsa.c:766
msgid "No image data"
msgstr "Pont di dnêyes d' imådje"

#: ../libbalsa/libbalsa.c:810
msgid "Invalid input format"
msgstr "Cogne d' intrêye nén valide"

#: ../libbalsa/libbalsa.c:814
msgid "Internal buffer overrun"
msgstr ""

#. Translators: please do not translate Face.
#: ../libbalsa/libbalsa.c:831
msgid "Bad X-Face data"
msgstr "Mwaijhes dinêyes X-Face"

#: ../libbalsa/mailbox.c:451
#, c-format
msgid "Cannot load mailbox %s"
msgstr "Dji n' pou tcherdjî li boesse ås emiles %s"

#: ../libbalsa/mailbox.c:458
#, c-format
msgid "No such mailbox type: %s"
msgstr "I gn a pont di boesse ås emiles di cisse sôre: %s"

#: ../libbalsa/mailbox.c:475
#, c-format
msgid "Bad local mailbox path \"%s\""
msgstr "Måva tchmin «%s» po ene boesse locåle"

#: ../libbalsa/mailbox.c:480
#, c-format
msgid "Could not create a mailbox of type %s"
msgstr "Dji n' a savou fé ene boesse ås emiles del sôre %s"

#: ../libbalsa/mailbox.c:788
#, c-format
msgid "Applying filter rules to %s"
msgstr ""

#: ../libbalsa/mailbox.c:891
#, c-format
msgid "Copying from %s to %s"
msgstr "Copiant di %s viè %s"

#: ../libbalsa/mailbox.c:1868
msgid "Removing messages from source mailbox failed"
msgstr "Li oistaedje des messaedjes del boesse sourdant a fwait berwete"

#: ../libbalsa/mailbox.c:2799
#, fuzzy
msgid "from unknown"
msgstr "nén cnoxhou"

#: ../libbalsa/mailbox.c:2801
msgid "Loading..."
msgstr "Tcherdjant..."

#: ../libbalsa/mailbox.c:3723
#, fuzzy, c-format
msgid "Searching %s for partial messages"
msgstr "Tchoezi l' idintité a-z eployî po ci messaedje chal"

#: ../libbalsa/mailbox.c:3813
#, fuzzy
msgid "Reconstructing message"
msgstr "Continouwer on messaedje"

#. ImapIssue macro handles reconnecting. We might issue a
#. LIBBALSA_INFORMATION_MESSAGE here but it would be overwritten by
#. login information...
#: ../libbalsa/mailbox_imap.c:540
msgid "IMAP connection has been severed. Reconnecting..."
msgstr ""

#: ../libbalsa/mailbox_imap.c:543
#, c-format
msgid "IMAP server has shut the connection: %s Reconnecting..."
msgstr ""

#: ../libbalsa/mailbox_imap.c:553
#, c-format
msgid "Async IMAP cmd %s could not be executed. Reconnecting..."
msgstr ""

#: ../libbalsa/mailbox_imap.c:1024 ../libbalsa/mailbox_maildir.c:525
#: ../libbalsa/mailbox_mbox.c:721 ../libbalsa/mailbox_mh.c:551
#, c-format
msgid "%s: Opening %s Refcount: %d\n"
msgstr "%s: dji droveye %s Conteu di referinces: %d\n"

#: ../libbalsa/mailbox_imap.c:1099 ../libbalsa/mailbox_imap.c:2246
#, c-format
msgid "Downloading %ld kB"
msgstr ""

#: ../libbalsa/mailbox_imap.c:1479
#, c-format
msgid ""
"IMAP SEARCH command failed for mailbox %s\n"
"falling back to default searching method"
msgstr ""

#: ../libbalsa/mailbox_imap.c:1539
#, c-format
msgid "No path found for mailbox \"%s\", using \"%s\""
msgstr ""

#: ../libbalsa/mailbox_imap.c:1628 ../libbalsa/mailbox_imap.c:1669
msgid "Cannot get IMAP handle"
msgstr ""

#: ../libbalsa/mailbox_imap.c:2279
msgid "Cannot create temporary file"
msgstr "Dji n' sai ahiver on fitchî timporaire"

#: ../libbalsa/mailbox_imap.c:2298
#, c-format
msgid "Cannot write to temporary file %s"
msgstr "Dji n' sai scrire e fitchî timporaire %s"

#: ../libbalsa/mailbox_imap.c:2515
#, c-format
msgid "Uploading %ld kB"
msgstr "Eberwetant %ld Ko"

#: ../libbalsa/mailbox_imap.c:2706
msgid "Server-side threading not supported."
msgstr ""

#: ../libbalsa/mailbox_local.c:492 ../libbalsa/mailbox_mbox.c:430
#, fuzzy, c-format
msgid "Failed to create temporary file \"%s\": %s"
msgstr "Dji n' a savou fé on MailDir e %s (%s)"

#: ../libbalsa/mailbox_local.c:511
#, fuzzy, c-format
msgid "Failed to save cache file \"%s\": %s."
msgstr "Dji n' a savou drovi l' boesse «%s»"

#: ../libbalsa/mailbox_local.c:521 ../libbalsa/mailbox_mbox.c:442
#, c-format
msgid "Failed to save cache file \"%s\": %s.  New version saved as \"%s\""
msgstr ""

#: ../libbalsa/mailbox_local.c:552
#, c-format
msgid "Cache file for mailbox %s will be created"
msgstr ""

#: ../libbalsa/mailbox_local.c:561
#, fuzzy, c-format
msgid "Failed to read cache file %s: %s"
msgstr "Dji n' a savou fé on MailDir e %s (%s)"

#: ../libbalsa/mailbox_local.c:579 ../libbalsa/mailbox_local.c:596
#: ../libbalsa/mailbox_local.c:620
#, c-format
msgid "Cache file for mailbox %s will be repaired"
msgstr ""

#: ../libbalsa/mailbox_local.c:1095
#, fuzzy, c-format
msgid "Filtering %s"
msgstr "_Passete:"

#: ../libbalsa/mailbox_local.c:1178
#, fuzzy, c-format
msgid "Preparing %s"
msgstr "Léjhant %s..."

#: ../libbalsa/mailbox_local.c:1956
#, c-format
msgid "Open of %s failed. Errno = %d, "
msgstr "Li drovaedje di %s a fwait berwete. Errno = %d, "

#: ../libbalsa/mailbox_local.c:1978
#, fuzzy, c-format
msgid "Failed to sync mailbox \"%s\""
msgstr "Dji n' a savou drovi l' boesse «%s»"

#: ../libbalsa/mailbox_maildir.c:216
#, c-format
msgid "Mailbox %s does not appear to be a Maildir mailbox."
msgstr "Li boesse ås emiles %s shonne nén esse ene boesse del sôre Maildir."

#: ../libbalsa/mailbox_maildir.c:225
#, c-format
msgid "Could not create a MailDir directory at %s (%s)"
msgstr "Dji n' a savou fé on ridant MailDir e %s (%s)"

#: ../libbalsa/mailbox_maildir.c:233 ../libbalsa/mailbox_maildir.c:242
#: ../libbalsa/mailbox_maildir.c:253
#, c-format
msgid "Could not create a MailDir at %s (%s)"
msgstr "Dji n' a savou fé on MailDir e %s (%s)"

#: ../libbalsa/mailbox_maildir.c:360 ../libbalsa/mailbox_mh.c:311
#, c-format
msgid ""
"Could not remove contents of %s:\n"
"%s"
msgstr ""
"Dji n' a savou oister çou k' i gn a dvins %s:\n"
"%s"

#: ../libbalsa/mailbox_maildir.c:366 ../libbalsa/mailbox_mbox.c:315
#: ../libbalsa/mailbox_mh.c:317
#, c-format
msgid ""
"Could not remove %s:\n"
"%s"
msgstr ""
"Dji n' a savou oister %s:\n"
"%s"

#: ../libbalsa/mailbox_maildir.c:504 ../libbalsa/mailbox_mbox.c:669
#: ../libbalsa/mailbox_mh.c:532
#, fuzzy
msgid "Mailbox does not exist."
msgstr "Boesse askepieye."

#: ../libbalsa/mailbox_maildir.c:970 ../libbalsa/mailbox_mbox.c:1975
#: ../libbalsa/mailbox_mh.c:1155
#, fuzzy
msgid "Data copy error"
msgstr "Nole aroke"

#: ../libbalsa/mailbox_mbox.c:211
#, c-format
msgid "Mailbox %s does not appear to be an Mbox mailbox."
msgstr ""

#: ../libbalsa/mailbox_mbox.c:418
#, fuzzy, c-format
msgid "Could not write file %s: %s"
msgstr ""
"Dji n' a savou oister %s:\n"
"%s"

#: ../libbalsa/mailbox_mbox.c:450
#, fuzzy, c-format
msgid "Could not unlink file %s: %s"
msgstr "Dji n' a savou schaper %s: %s"

#: ../libbalsa/mailbox_mbox.c:677
#, fuzzy
msgid "Cannot open mailbox."
msgstr "Dji n' pou tcherdjî li boesse ås emiles %s"

#: ../libbalsa/mailbox_mbox.c:689
#, fuzzy
msgid "Mailbox is not in mbox format."
msgstr "Boesse askepieye."

#: ../libbalsa/mailbox_mbox.c:697
#, fuzzy
msgid "Cannot lock mailbox."
msgstr "Dji n' pou tcherdjî li boesse ås emiles %s"

#: ../libbalsa/mailbox_mbox.c:1932
#, fuzzy, c-format
msgid "%s: could not open %s."
msgstr "Dji n' a savou drovi %s"

#: ../libbalsa/mailbox_mbox.c:1943
#, c-format
msgid "%s: could not get new mime stream."
msgstr ""

#: ../libbalsa/mailbox_mbox.c:1951
#, c-format
msgid "%s: %s is not in mbox format."
msgstr "%s: %s n' est nén ene boesse ås emiles e cogne mbox."

#: ../libbalsa/mailbox_mh.c:192
#, c-format
msgid "Mailbox %s does not appear to be a Mh mailbox."
msgstr ""

#: ../libbalsa/mailbox_mh.c:202
#, c-format
msgid "Could not create MH directory at %s (%s)"
msgstr "Dji n' a savou fé on ridant MH e %s (%s)"

#: ../libbalsa/mailbox_mh.c:214
#, c-format
msgid "Could not create MH structure at %s (%s)"
msgstr "Dji n' a savou fé ene structeure MH e %s (%s)"

#: ../libbalsa/mailbox_mh.c:1136
#, fuzzy
msgid "Cannot create message"
msgstr "Dji n' pou scrire li messaedje"

#: ../libbalsa/mailbox_mh.c:1180
#, fuzzy
msgid "Message rename error"
msgstr "Sourdant do messaedje"

#: ../libbalsa/mailbox_pop3.c:190
#, c-format
msgid "Error appending message %d from %s to %s: %s"
msgstr ""

#: ../libbalsa/mailbox_pop3.c:339
#, c-format
msgid "Saving POP message to %s failed"
msgstr "Li schapaedje do messaedje POP viè %s a fwait berwete"

#: ../libbalsa/mailbox_pop3.c:346
#, c-format
msgid "Retrieving Message %d of %d"
msgstr ""

#: ../libbalsa/mailbox_pop3.c:369
#, c-format
msgid "Received %ld kB of %ld"
msgstr "Riçuvous %ld Ko so %ld"

#: ../libbalsa/mailbox_pop3.c:383
#, c-format
msgid "Saving POP message to %s failed."
msgstr "Li schapaedje do messaedje POP viè %s a fwait berwete."

#: ../libbalsa/mailbox_pop3.c:393
#, fuzzy, c-format
msgid "Transferring POP message to %s failed."
msgstr "Copiant %d messaedjes viè %s..."

#: ../libbalsa/mailbox_pop3.c:469
#, c-format
msgid ""
"POP3 mailbox %s temp file error:\n"
"%s"
msgstr ""

#: ../libbalsa/mailbox_pop3.c:494
#, c-format
msgid "POP3 mailbox %s error: %s\n"
msgstr "Aroke del boesse POP3 %s: %s\n"

#: ../libbalsa/mailbox_pop3.c:531
#, c-format
msgid "POP3 message %d oversized: %d kB - skipped."
msgstr ""

#: ../libbalsa/mailbox_pop3.c:543
#, c-format
msgid "POP3 error: cannot open %s for writing."
msgstr ""

#: ../libbalsa/mailbox_pop3.c:551
#, c-format
msgid "POP3 error: cannot close %s."
msgstr ""

#: ../libbalsa/mailbox_pop3.c:584
#, c-format
msgid "POP3 error: %s."
msgstr "Aroke POP3: %s."

#: ../libbalsa/message.c:617 ../libbalsa/message.c:657
#, c-format
msgid "Mailbox (%s) is readonly: cannot change flags."
msgstr ""
"Li boesse (%s) est e môde seulmint-lére: dji n' sai candjî les drapeas."

#: ../libbalsa/misc.c:623
msgid "west european"
msgstr "uropeyin coûtchantrece"

#: ../libbalsa/misc.c:625 ../libbalsa/misc.c:659
msgid "east european"
msgstr "uropeyin levantrece"

#: ../libbalsa/misc.c:627
msgid "south european"
msgstr "uropeyin nonnrece"

#: ../libbalsa/misc.c:629
msgid "north european"
msgstr "uropeyin bijhrece"

#: ../libbalsa/misc.c:631 ../libbalsa/misc.c:661
msgid "cyrillic"
msgstr "cirilike"

#: ../libbalsa/misc.c:633 ../libbalsa/misc.c:667
msgid "arabic"
msgstr "arabe"

#: ../libbalsa/misc.c:635 ../libbalsa/misc.c:663
msgid "greek"
msgstr "grek"

#: ../libbalsa/misc.c:637 ../libbalsa/misc.c:665
msgid "hebrew"
msgstr "ebreu"

#: ../libbalsa/misc.c:639
msgid "turkish"
msgstr "turk"

#: ../libbalsa/misc.c:641
msgid "nordic"
msgstr "nôrdike"

#: ../libbalsa/misc.c:643
msgid "thai"
msgstr "taylandès"

#: ../libbalsa/misc.c:645 ../libbalsa/misc.c:669
msgid "baltic"
msgstr "baltike"

#: ../libbalsa/misc.c:647
msgid "celtic"
msgstr "celtike"

#: ../libbalsa/misc.c:649
msgid "west europe (euro)"
msgstr "uropeyin coûtchantrece (avou l' €)"

#: ../libbalsa/misc.c:651
msgid "russian"
msgstr "rûsse"

#: ../libbalsa/misc.c:653
msgid "ukrainian"
msgstr "oucrinnyin"

#: ../libbalsa/misc.c:655
msgid "japanese"
msgstr "djaponès"

#: ../libbalsa/misc.c:657
msgid "korean"
msgstr "corêyin"

#: ../libbalsa/misc.c:982
msgid "Timeout exceeded while attempting fcntl lock!"
msgstr ""

#: ../libbalsa/misc.c:989
#, c-format
msgid "Waiting for fcntl lock... %d"
msgstr ""

#: ../libbalsa/misc.c:1017
msgid "Timeout exceeded while attempting flock lock!"
msgstr ""

#: ../libbalsa/misc.c:1024
#, c-format
msgid "Waiting for flock attempt... %d"
msgstr ""

#: ../libbalsa/misc.c:1322
#, c-format
msgid "LDAP Directory for %s"
msgstr "Botin LDAP po: %s"

#: ../libbalsa/rfc3156.c:86
#, c-format
msgid "Gpgme has been compiled without support for protocol %s."
msgstr ""

#: ../libbalsa/rfc3156.c:91
#, c-format
msgid "Crypto engine %s is not installed properly."
msgstr ""

#: ../libbalsa/rfc3156.c:96
#, c-format
msgid ""
"Crypto engine %s version %s is installed, but at least version %s is "
"required."
msgstr ""

#: ../libbalsa/rfc3156.c:103
#, c-format
msgid "Unknown problem with engine for protocol %s."
msgstr ""

#: ../libbalsa/rfc3156.c:108
#, fuzzy, c-format
msgid "%s: could not retrieve crypto engine information: %s."
msgstr "%s: dji n' a savou prinde li clé po %s: %s"

#: ../libbalsa/rfc3156.c:112
#, c-format
msgid ""
"\n"
"Disable support for protocol %s."
msgstr ""

#: ../libbalsa/rfc3156.c:254 ../libbalsa/rfc3156.c:259
#: ../libbalsa/rfc3156.c:346 ../libbalsa/rfc3156.c:351
#: ../libbalsa/rfc3156.c:515 ../libbalsa/rfc3156.c:520
#: ../libbalsa/rfc3156.c:625 ../libbalsa/rfc3156.c:630
#: ../libbalsa/rfc3156.c:739 ../libbalsa/rfc3156.c:744
#: ../libbalsa/rfc3156.c:852 ../libbalsa/rfc3156.c:857
#: ../libbalsa/rfc3156.c:932 ../libbalsa/rfc3156.c:937
msgid "creating a gpgme context failed"
msgstr ""

#: ../libbalsa/rfc3156.c:272 ../libbalsa/rfc3156.c:757
#, fuzzy
msgid "Enter passphrase to unlock the secret key for signing"
msgstr ""
"Tapez l' sicret pol clé privêye!\n"
"\n"
"Clé: %s"

#: ../libbalsa/rfc3156.c:293 ../libbalsa/rfc3156.c:297
#: ../libbalsa/rfc3156.c:789
#, fuzzy
msgid "signing failed"
msgstr "%s: li sinaedje a fwaitberwete: %s"

#: ../libbalsa/rfc3156.c:400 ../libbalsa/rfc3156.c:405
#: ../libbalsa/rfc3156.c:792
#, fuzzy
msgid "encryption failed"
msgstr "%s: l' ecriptaedje a fwait berwete: %s"

#: ../libbalsa/rfc3156.c:548 ../libbalsa/rfc3156.c:553
#: ../libbalsa/rfc3156.c:868 ../libbalsa/rfc3156.c:874
#, fuzzy
msgid "signature verification failed"
msgstr ""
"%s: li discriptaedje eyet l' verifiaedje del sinateure ont fwait berwete: %s"

#: ../libbalsa/rfc3156.c:642 ../libbalsa/rfc3156.c:948
msgid "Enter passphrase to decrypt message"
msgstr ""

#: ../libbalsa/rfc3156.c:675 ../libbalsa/rfc3156.c:680
#, fuzzy
msgid "decryption failed"
msgstr "%s: l' ecriptaedje a fwait berwete: %s"

#: ../libbalsa/rfc3156.c:785 ../libbalsa/rfc3156.c:799
#, fuzzy
msgid "signing and encryption failed"
msgstr "%s: l' ecriptaedje a fwait berwete: %s"

#: ../libbalsa/rfc3156.c:802
#, fuzzy, c-format
msgid "signing failed: %s"
msgstr "%s: li sinaedje a fwaitberwete: %s"

#: ../libbalsa/rfc3156.c:805
#, fuzzy, c-format
msgid "encryption failed: %s"
msgstr "%s: l' ecriptaedje a fwait berwete: %s"

#: ../libbalsa/rfc3156.c:957 ../libbalsa/rfc3156.c:964
#, fuzzy
msgid "decryption and signature verification failed"
msgstr ""
"%s: li discriptaedje eyet l' verifiaedje del sinateure ont fwait berwete: %s"

#: ../libbalsa/rfc3156.c:995
msgid "The signature is valid."
msgstr "Li sinateure est valide."

#: ../libbalsa/rfc3156.c:997
msgid "The signature is valid but expired."
msgstr ""

#: ../libbalsa/rfc3156.c:1000
msgid ""
"The signature is valid but the key used to verify the signature has expired."
msgstr ""

#: ../libbalsa/rfc3156.c:1003
msgid ""
"The signature is valid but the key used to verify the signature has been "
"revoked."
msgstr ""

#: ../libbalsa/rfc3156.c:1006
msgid "The signature is invalid."
msgstr "Li sinateure n' est nén valide."

#: ../libbalsa/rfc3156.c:1009
msgid "The signature could not be verified due to a missing key."
msgstr "Li sinateure n' a nén polou esse verifieye, la k' i manke ene clé."

#: ../libbalsa/rfc3156.c:1011
msgid "This part is not a real PGP signature."
msgstr "Cisse pårteye chal n' est nén ene vraiye sinateure GPG."

#: ../libbalsa/rfc3156.c:1014
msgid "The signature could not be verified due to an invalid crypto engine."
msgstr ""

#: ../libbalsa/rfc3156.c:1017 ../libbalsa/rfc3156.c:1759
msgid "GnuPG is rebuilding the trust database and is currently unavailable."
msgstr ""

#: ../libbalsa/rfc3156.c:1020
msgid "An error prevented the signature verification."
msgstr "Li verifiaedje del sinateure a fwait berwete cåze d' ene aroke."

#: ../libbalsa/rfc3156.c:1028
msgid "The user ID is of unknown validity."
msgstr ""

#: ../libbalsa/rfc3156.c:1030
msgid "The validity of the user ID is undefined."
msgstr ""

#: ../libbalsa/rfc3156.c:1032
msgid "The user ID is never valid."
msgstr ""

#: ../libbalsa/rfc3156.c:1034
msgid "The user ID is marginally valid."
msgstr ""

#: ../libbalsa/rfc3156.c:1036
msgid "The user ID is fully valid."
msgstr ""

#: ../libbalsa/rfc3156.c:1038
msgid "The user ID is ultimately valid."
msgstr ""

#: ../libbalsa/rfc3156.c:1040 ../libbalsa/rfc3156.c:1287
msgid "bad validity"
msgstr ""

#: ../libbalsa/rfc3156.c:1048
#, fuzzy
msgid "PGP signature: "
msgstr "Sinateure PGP: %s"

#: ../libbalsa/rfc3156.c:1050
#, fuzzy
msgid "S/MIME signature: "
msgstr "Sinateure S/MIME: "

#: ../libbalsa/rfc3156.c:1052
msgid "(unknown protocol) "
msgstr "(protocole nén cnoxhou) "

#: ../libbalsa/rfc3156.c:1071
#, c-format
msgid ""
"\n"
"User ID: %s"
msgstr ""

#: ../libbalsa/rfc3156.c:1074
#, c-format
msgid ""
"\n"
"Signed by: %s"
msgstr ""

#: ../libbalsa/rfc3156.c:1078
#, c-format
msgid ""
"\n"
"Mail address: %s"
msgstr ""
"\n"
"Adresse emile: %s"

#: ../libbalsa/rfc3156.c:1083
#, c-format
msgid ""
"\n"
"Signed on: %s"
msgstr ""
"\n"
"Siné li: %s"

#: ../libbalsa/rfc3156.c:1085
#, fuzzy, c-format
msgid ""
"\n"
"User ID validity: %s"
msgstr "Passete nén valide: %s"

#: ../libbalsa/rfc3156.c:1089
#, fuzzy, c-format
msgid ""
"\n"
"Key owner trust: %s"
msgstr ""
"\n"
"Siné li: %s"

#: ../libbalsa/rfc3156.c:1093
#, c-format
msgid ""
"\n"
"Key fingerprint: %s"
msgstr ""

#: ../libbalsa/rfc3156.c:1098
#, fuzzy, c-format
msgid ""
"\n"
"Subkey created on: %s"
msgstr ""
"\n"
"Siné li: %s"

#: ../libbalsa/rfc3156.c:1103
#, fuzzy, c-format
msgid ""
"\n"
"Subkey expires on: %s"
msgstr ""
"\n"
"Siné li: %s"

#: ../libbalsa/rfc3156.c:1112
msgid " revoked"
msgstr ""

#: ../libbalsa/rfc3156.c:1117
#, fuzzy
msgid " expired"
msgstr "Respondou"

#: ../libbalsa/rfc3156.c:1122
msgid " disabled"
msgstr ""

#: ../libbalsa/rfc3156.c:1127
#, fuzzy
msgid " invalid"
msgstr "[date nén valide]"

#. ngettext: string begins with a single space, so no space after
#. * the colon is correct punctuation (in English).
#: ../libbalsa/rfc3156.c:1131
#, c-format
msgid ""
"\n"
"Subkey attribute:%s"
msgid_plural ""
"\n"
"Subkey attributes:%s"
msgstr[0] ""
msgstr[1] ""

#: ../libbalsa/rfc3156.c:1140
#, c-format
msgid ""
"\n"
"Issuer name: %s"
msgstr ""

#: ../libbalsa/rfc3156.c:1144
#, c-format
msgid ""
"\n"
"Issuer serial number: %s"
msgstr ""

#: ../libbalsa/rfc3156.c:1147
#, c-format
msgid ""
"\n"
"Chain ID: %s"
msgstr ""

#: ../libbalsa/rfc3156.c:1194
#, c-format
msgid "Could not launch %s to get the public key %s."
msgstr "Dji n' a savou enonder %s po prinde li clé publike %s."

#: ../libbalsa/rfc3156.c:1244
#, c-format
msgid ""
"Running gpg failed with return value %d:\n"
"%s"
msgstr ""
"L' enondaedje di gpg a fwait berwete et s' ritourner l' valixhance %d:\n"
"%s"

#: ../libbalsa/rfc3156.c:1251
#, c-format
msgid ""
"Running gpg successful:\n"
"%s"
msgstr ""
"L' enondaedje di gpg a stî comifåt:\n"
"%s"

#: ../libbalsa/rfc3156.c:1275
msgid "unknown"
msgstr "nén cnoxhou"

#: ../libbalsa/rfc3156.c:1277
msgid "undefined"
msgstr "nén defini"

#: ../libbalsa/rfc3156.c:1279 ../src/address-book-config.c:193
msgid "never"
msgstr "måy"

#: ../libbalsa/rfc3156.c:1281
msgid "marginal"
msgstr ""

#: ../libbalsa/rfc3156.c:1283
msgid "full"
msgstr ""

#: ../libbalsa/rfc3156.c:1285
msgid "ultimate"
msgstr ""

#: ../libbalsa/rfc3156.c:1348
msgid "User ID"
msgstr "ID d' uzeu"

#: ../libbalsa/rfc3156.c:1348
msgid "Key ID"
msgstr "ID del clé"

#: ../libbalsa/rfc3156.c:1348
msgid "Length"
msgstr "Longueu"

#: ../libbalsa/rfc3156.c:1348
msgid "Validity"
msgstr "Validité"

#. FIXME: create dialog according to the Gnome HIG
#: ../libbalsa/rfc3156.c:1392
msgid "Select key"
msgstr "Tchoezi l' clé"

#: ../libbalsa/rfc3156.c:1403
#, c-format
msgid "Select the private key for the signer %s"
msgstr "Tchoezi l' clé privêye po %s siner"

#: ../libbalsa/rfc3156.c:1407
#, c-format
msgid "Select the public key for the recipient %s"
msgstr "Tchoezixhoz li clé publike pol riçuveu %s"

#: ../libbalsa/rfc3156.c:1538
#, c-format
msgid "Insufficient trust for recipient %s"
msgstr ""

#: ../libbalsa/rfc3156.c:1540
#, c-format
msgid "The validity of the key with user ID \"%s\" is \"%s\"."
msgstr ""

#: ../libbalsa/rfc3156.c:1551
msgid "Use this key anyway?"
msgstr ""

#: ../libbalsa/rfc3156.c:1760
msgid "Try again later."
msgstr ""

#: ../libbalsa/send.c:243 ../libbalsa/send.c:250
msgid "Sending Mail..."
msgstr "Evoyaedje di l' emile..."

#: ../libbalsa/send.c:246 ../src/main-window.c:2828
msgid "_Hide"
msgstr "_Catchî"

#: ../libbalsa/send.c:453
#, fuzzy, c-format
msgid "Copying message to outbox failed: %s"
msgstr "Copiant %d messaedjes viè %s..."

#: ../libbalsa/send.c:882
#, c-format
msgid ""
"Could not send the message to %s:\n"
"%d: %s\n"
"Message left in your outbox.\n"
msgstr ""

#: ../libbalsa/send.c:926
#, fuzzy, c-format
msgid "Saving sent message to %s failed: %s"
msgstr "Copiant %d messaedjes viè %s..."

#: ../libbalsa/send.c:945 ../libbalsa/send.c:957
#, c-format
msgid ""
"Relaying refused:\n"
"%d: %s\n"
"Message left in your outbox.\n"
msgstr ""

#: ../libbalsa/send.c:964
msgid ""
"Message submission problem, placing it into your outbox.\n"
"System will attempt to resubmit the message until you delete it."
msgstr ""

#: ../libbalsa/send.c:994
msgid "Connected to MTA"
msgstr ""

#. status code, mailbox
#: ../libbalsa/send.c:1003
#, c-format
msgid "From: %d <%s>"
msgstr ""

#. mailbox, status code, status text
#: ../libbalsa/send.c:1007
#, fuzzy, c-format
msgid "From %s: %d %s"
msgstr "Responde a %s: %s"

#. status code, mailbox
#: ../libbalsa/send.c:1018
#, c-format
msgid "To: %d <%s>"
msgstr ""

#. mailbox, status code, status text
#: ../libbalsa/send.c:1022
#, fuzzy, c-format
msgid "To %s: %d %s"
msgstr "%s [%s]\n"

#: ../libbalsa/send.c:1060
msgid "Disconnected"
msgstr "Disraloyî"

#: ../libbalsa/send.c:1333
msgid ""
"SMTP server refused connection.\n"
"Check your internet connection."
msgstr ""

#: ../libbalsa/send.c:1338
msgid ""
"SMTP server cannot be reached.\n"
"Check your internet connection."
msgstr ""

#: ../libbalsa/send.c:1347
msgid "Message left in Outbox (try again later)"
msgstr ""

#: ../libbalsa/send.c:1351
#, c-format
msgid ""
"SMTP server problem (%d): %s\n"
"Message is left in outbox."
msgstr ""

#: ../libbalsa/send.c:1656
#, c-format
msgid "Cannot determine charset for text file `%s'; sending as mime type `%s'"
msgstr ""

#: ../libbalsa/send.c:1860
#, fuzzy, c-format
msgid "Postponing message failed: %s"
msgstr "Copiant %d messaedjes viè %s..."

#: ../libbalsa/send.c:2003 ../libbalsa/send.c:2085
msgid "This message will not be encrypted for the BCC: recipient(s)."
msgstr ""

#. host, authentication method
#: ../libbalsa/server.c:366
#, c-format
msgid "Logging in to %s using %s"
msgstr ""

#: ../libbalsa/smtp-server.c:375 ../src/mailbox-conf.c:204
#: ../src/mailbox-conf.c:1393 ../src/pref-manager.c:387
#: ../src/pref-manager.c:3233
msgid "Never"
msgstr "Måy"

#: ../libbalsa/smtp-server.c:376 ../src/mailbox-conf.c:205
#: ../src/mailbox-conf.c:1394
msgid "If Possible"
msgstr "Si possibe"

#: ../libbalsa/smtp-server.c:377 ../src/mailbox-conf.c:206
msgid "Required"
msgstr ""

#: ../libbalsa/smtp-server.c:414 ../src/folder-conf.c:104
#, c-format
msgid "Error displaying %s: %s\n"
msgstr "Åk n' a nén stî tot håynant %s: %s\n"

#: ../libbalsa/smtp-server.c:530
#, fuzzy
msgid "SMTP Server"
msgstr "Sierveu _SMTP:"

#: ../libbalsa/smtp-server.c:552
#, fuzzy
msgid "_Descriptive Name:"
msgstr "_Discrijhaedje:"

#. pop server
#. imap server
#: ../libbalsa/smtp-server.c:559 ../src/folder-conf.c:350
#: ../src/mailbox-conf.c:1145 ../src/mailbox-conf.c:1248
msgid "_Server:"
msgstr "_Sierveu:"

#: ../libbalsa/smtp-server.c:566
#, fuzzy
msgid "_User Name:"
msgstr "No di l' _uzeu:"

#: ../libbalsa/smtp-server.c:573
#, fuzzy
msgid "_Pass Phrase:"
msgstr "Sicret"

#: ../libbalsa/smtp-server.c:582 ../src/mailbox-conf.c:225
#, fuzzy
msgid "Use _TLS:"
msgstr "Eployî TLS"

#: ../libbalsa/smtp-server.c:587
#, fuzzy
msgid "C_ertificate Pass Phrase:"
msgstr "Sicret po l' acertineure"

#: ../libbalsa/smtp-server.c:599
#, fuzzy
msgid "Sp_lit message larger than"
msgstr "Tchoezixhoz li fonte a-z eployî"

#: ../libbalsa/smtp-server.c:605 ../src/pref-manager.c:1812
msgid "MB"
msgstr "Mo"

#. Items
#: ../libbalsa/source-viewer.c:47 ../src/mailbox-node.c:993
#: ../src/main-window.c:752 ../src/main-window.c:857
msgid "_Close"
msgstr "_Clôre"

#: ../libbalsa/source-viewer.c:48
#, fuzzy
msgid "Close the window"
msgstr "Purnea d' aspougnaedje"

#: ../libbalsa/source-viewer.c:49
#, fuzzy
msgid "_Copy"
msgstr "_Copyî"

#: ../libbalsa/source-viewer.c:50
#, fuzzy
msgid "Copy text"
msgstr "Å dvins"

#: ../libbalsa/source-viewer.c:51 ../src/main-window.c:661
msgid "_Select Text"
msgstr "_Tchoezi l' tecse"

#: ../libbalsa/source-viewer.c:52 ../src/main-window.c:662
msgid "Select entire mail"
msgstr "Tchoezi l' messaedje en etir"

#: ../libbalsa/source-viewer.c:57
msgid "_Escape Special Characters"
msgstr ""

#: ../libbalsa/source-viewer.c:58
msgid "Escape special and non-ASCII characters"
msgstr ""

#: ../libbalsa/source-viewer.c:154
msgid "Mailbox closed"
msgstr "Boesse ås emiles cloyowe"

#: ../libbalsa/source-viewer.c:257
msgid "Message Source"
msgstr "Sourdant do messaedje"

#: ../libinit_balsa/balsa-druid-page-defclient.c:58
msgid "Use balsa as default email client?"
msgstr "Eployî balsa come prémetou cliyint d' emilaedje?"

#: ../libinit_balsa/balsa-druid-page-defclient.c:62
msgid "_Yes"
msgstr "_Oyi"

#: ../libinit_balsa/balsa-druid-page-defclient.c:64
msgid "_No"
msgstr "_Neni"

#: ../libinit_balsa/balsa-druid-page-defclient.c:100
msgid "Default Client"
msgstr "Prémetou cliyint"

#: ../libinit_balsa/balsa-druid-page-directory.c:43
msgid "_Inbox:"
msgstr "Messaedjes en _intrêye:"

#: ../libinit_balsa/balsa-druid-page-directory.c:43
msgid "_Outbox:"
msgstr "Messaedjes e re_xhowe:"

#: ../libinit_balsa/balsa-druid-page-directory.c:43
msgid "_Sentbox:"
msgstr "Messaedjes _evoyîs:"

#: ../libinit_balsa/balsa-druid-page-directory.c:43
msgid "_Draftbox:"
msgstr "Brou_yons:"

#: ../libinit_balsa/balsa-druid-page-directory.c:44
msgid "_Trash:"
msgstr "_Batch:"

#: ../libinit_balsa/balsa-druid-page-directory.c:71
#, c-format
msgid ""
"The pathname \"%s\" must be specified canonically -- it must start with a "
"'/'."
msgstr ""
"Li tchmin «%s» doet esse specifyî en etir -- i doet comincî avou on «/»."

#: ../libinit_balsa/balsa-druid-page-directory.c:135
#, c-format
msgid "The mailbox \"%s\" does not appear to be valid."
msgstr ""

#: ../libinit_balsa/balsa-druid-page-directory.c:188
msgid ""
"Please verify the locations of your default mail files.\n"
"These will be created if necessary."
msgstr ""

#: ../libinit_balsa/balsa-druid-page-directory.c:246
msgid "Mail Files"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-directory.c:349
#: ../libinit_balsa/balsa-druid-page-directory.c:383
#, c-format
msgid ""
"Problem Creating Mailboxes\n"
"%s"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-finish.c:41
msgid ""
"You've successfully set up Balsa. Have fun!\n"
"   -- The Balsa development team"
msgstr ""
"Vos avoz apontyî Balsa comifåt. Ki ça vos våye bén avou!\n"
"   -- L' ekipe di diswalpaedje di Balsa"

#: ../libinit_balsa/balsa-druid-page-finish.c:47
msgid "All Done!"
msgstr "Totafwait a stî fwait!"

#: ../libinit_balsa/balsa-druid-page-finish.c:77
msgid "GnomeCard Address Book"
msgstr "Calpin d' adresses GnomeCard"

#: ../libinit_balsa/balsa-druid-page-finish.c:84
#: ../libinit_balsa/balsa-druid-page-finish.c:92 ../src/ab-window.c:229
msgid "Address Book"
msgstr "Calpin d' adresses"

#: ../libinit_balsa/balsa-druid-page-user.c:71
msgid ""
"The following settings are also needed (and you can find them later, if need "
"be, in the Email application in the 'Preferences' and 'Identities' commands "
"on the 'Tools' menu)"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:76
msgid ""
" Whoever provides your email account should be able to give you the "
"following information (if you have a Network Administrator, they may already "
"have set this up for you):"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:82
msgid "Yes, remember it"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:82
msgid "No, type it in every time"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:114
msgid "Name of mail server for incoming _mail:"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:119
#, fuzzy
msgid "_Type of mail server:"
msgstr "_Oister do sierveu"

#: ../libinit_balsa/balsa-druid-page-user.c:123
msgid "Connect using _SSL:"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:126
msgid "Your email _login name:"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:129
#, fuzzy
msgid "Your _password:"
msgstr "_Sicret:"

#: ../libinit_balsa/balsa-druid-page-user.c:137
msgid "_SMTP Server:"
msgstr "Sierveu _SMTP:"

#. 2.1
#: ../libinit_balsa/balsa-druid-page-user.c:142
msgid "Your real _name:"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:148
msgid "Your _Email Address, for this email account:"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:153
#, fuzzy
msgid "_Remember your password:"
msgstr "Si _rmimbrer do scret"

#: ../libinit_balsa/balsa-druid-page-user.c:156
msgid "_Refer to this account as:"
msgstr ""

#: ../libinit_balsa/balsa-druid-page-user.c:164
#, fuzzy
msgid "_Local mail directory:"
msgstr "Ridant di messaedjes _locå:"

#: ../libinit_balsa/balsa-druid-page-user.c:181
msgid "User Settings"
msgstr "Apontiaedje di l' uzeu"

#: ../libinit_balsa/balsa-druid-page-user.c:333
#, c-format
msgid ""
"Local Mail Problem\n"
"%s"
msgstr ""
"Aroke avou l' boesse locåle\n"
"%s"

#: ../libinit_balsa/balsa-druid-page-welcome.c:32
msgid "Welcome to Balsa!"
msgstr "Wilicome a Balsa!"

#: ../libinit_balsa/balsa-druid-page-welcome.c:35
msgid ""
"Before you can send or receive email:\n"
"\n"
"-- either you should already have Internet access and an email account, "
"provided by an Internet Service Provider, and you should have made that "
"Internet connection on your computer\n"
"\n"
"-- or your Network Administrator at your place of work/study/similar may "
"have set up your computer to connect to the network."
msgstr ""

#: ../libinit_balsa/balsa-initdruid.c:81
msgid ""
"This will exit Balsa.\n"
"Do you really want to do this?"
msgstr ""
"Çoula vs frè moussî foû di Balsa.\n"
"El voloz vs po d' bon?"

#: ../libinit_balsa/helper.c:66
#, c-format
msgid "Error loading %s: %s\n"
msgstr "Åk n' a nén stî tot tcherdjant %s: %s\n"

#: ../libinit_balsa/helper.c:202
#, c-format
msgid "The path %s must be relative to the filesystem root (start with /)."
msgstr ""

#: ../libinit_balsa/helper.c:215 ../libinit_balsa/helper.c:239
#, c-format
msgid "Couldn't create a directory: mkdir() failed on pathname \"%s\"."
msgstr ""

#: ../libinit_balsa/helper.c:225 ../libinit_balsa/helper.c:248
#, c-format
msgid "The file with pathname \"%s\" is not a directory."
msgstr "Li fitchî avou l' no etir «%s» n' est nén on ridant."

#: ../libinit_balsa/init_balsa.c:48
msgid "Configure Balsa"
msgstr "Apontyî Balsa"

#: ../sounds/balsa.soundlist.in.h:1
msgid "Balsa E-mail reader"
msgstr "Manaedjeu d' emilaedjes Balsa"

#: ../sounds/balsa.soundlist.in.h:2
msgid "New mail notification"
msgstr "Vos avoz des noveas emiles"

#: ../sounds/balsa.soundlist.in.h:3
msgid "Program startup"
msgstr "Enondaedje do programe"

#: ../src/ab-main.c:199 ../src/ab-window.c:680
#, fuzzy
msgid " address book: "
msgstr "Calpin d' adresses"

#: ../src/ab-main.c:470 ../src/address-book-config.c:895
msgid "VCard Address Book (GnomeCard)"
msgstr "Calpin d' adresses VCard (GnomeCard)"

#: ../src/ab-main.c:472 ../src/address-book-config.c:901
msgid "External query (a program)"
msgstr ""

#: ../src/ab-main.c:474 ../src/address-book-config.c:906
msgid "LDIF Address Book"
msgstr "Calpin d' adresses LDIF"

#: ../src/ab-main.c:477 ../src/address-book-config.c:912
msgid "LDAP Address Book"
msgstr "Calpin d' adresses LDAP"

#: ../src/ab-main.c:481 ../src/address-book-config.c:509
#: ../src/address-book-config.c:919
#, fuzzy
msgid "GPE Address Book"
msgstr "Calpin d' adresses"

#: ../src/ab-main.c:705
#, fuzzy
msgid "_Name"
msgstr "_No:"

#: ../src/ab-main.c:855
msgid "F_ilter:"
msgstr "_Passete:"

#: ../src/ab-window.c:170 ../src/filter-edit-dialog.c:200
#: ../src/filter-export-dialog.c:90 ../src/filter-run-dialog.c:221
#: ../src/filter-run-dialog.c:295
msgid "Name"
msgstr "No"

#: ../src/ab-window.c:178
msgid "E-Mail Address"
msgstr "Adresse emile"

#. -- table column 1 --
#. Entry widget for finding an address
#: ../src/ab-window.c:279
msgid "_Search for Name:"
msgstr ""

#: ../src/ab-window.c:314
msgid "Run Editor"
msgstr ""

#: ../src/ab-window.c:321
msgid "_Re-Import"
msgstr ""

#. -- table column 3 --
#. label for selected addresses in compose mode
#: ../src/ab-window.c:353
msgid "Send-To"
msgstr "Evoyî a"

#. mode switching stuff
#: ../src/ab-window.c:368
msgid "Treat multiple addresses as:"
msgstr ""

#: ../src/ab-window.c:372
msgid "alternative addresses for the same person"
msgstr ""

#: ../src/ab-window.c:377
msgid "a distribution list"
msgstr ""

#: ../src/ab-window.c:709
#, c-format
msgid ""
"Error opening address book '%s':\n"
"%s"
msgstr ""
"Åk n' a nén stî tot drovant li calpin d' adresses «%s»:\n"
"%s"

#: ../src/address-book-config.c:170
#, fuzzy
msgid "Suggest complete addresses:"
msgstr "Sicrire on novea messaedje"

#: ../src/address-book-config.c:176
msgid "as I type"
msgstr ""

#: ../src/address-book-config.c:185
msgid "when I hit the Escape key"
msgstr ""

#: ../src/address-book-config.c:222 ../src/address-book-config.c:316
msgid "Modify Address Book"
msgstr "Candjî calpin d' adresses"

#: ../src/address-book-config.c:226 ../src/address-book-config.c:320
msgid "Add Address Book"
msgstr "Radjouter calpin d' adresses"

#. mailbox name
#. may be NULL
#. mailbox name
#: ../src/address-book-config.c:242 ../src/address-book-config.c:355
#: ../src/address-book-config.c:442 ../src/address-book-config.c:507
#, fuzzy
msgid "A_ddress Book Name:"
msgstr "No do calpin d' _adresses"

#: ../src/address-book-config.c:360
msgid "Load program location:"
msgstr ""

#: ../src/address-book-config.c:367 ../src/address-book-config.c:372
msgid "Select load program for address book"
msgstr ""

#: ../src/address-book-config.c:379
msgid "Save program location:"
msgstr ""

#: ../src/address-book-config.c:386 ../src/address-book-config.c:391
msgid "Select save program for address book"
msgstr ""

#: ../src/address-book-config.c:447
msgid "_Host Name"
msgstr "No do _lodjoe"

#: ../src/address-book-config.c:452
msgid "Base Domain _Name"
msgstr ""

#: ../src/address-book-config.c:457
msgid "_User Name (Bind DN)"
msgstr ""

#: ../src/address-book-config.c:462
msgid "_Password"
msgstr "_Sicret"

#: ../src/address-book-config.c:468
#, fuzzy
msgid "_User Address Book DN"
msgstr "Tchoezixhoz on calpin d' adresses"

#: ../src/address-book-config.c:474
msgid "Enable _TLS"
msgstr "Permete _TLS"

#: ../src/address-book-config.c:529 ../src/main-window.c:4150
#, fuzzy, c-format
msgid "Error displaying help: %s\n"
msgstr "Åk n' a nén stî tot håynant %s: %s\n"

#: ../src/address-book-config.c:630
msgid "No path found.  Do you want to give one?"
msgstr ""

#: ../src/address-book-config.c:636
#, c-format
msgid "The address book file path \"%s\" is not correct. %s"
msgstr "Li tchmin «%s» do fitchî calpin d' adresses n' est nén corek. %s"

#: ../src/address-book-config.c:639
#, c-format
msgid "The load program path \"%s\" is not correct. %s"
msgstr "Li tchmin «%s» do programe a-z enonder n' est nén corek. %s"

#: ../src/address-book-config.c:642
#, c-format
msgid "The save program path \"%s\" is not correct. %s"
msgstr ""

#: ../src/address-book-config.c:645
#, c-format
msgid "The path \"%s\" is not correct. %s"
msgstr "Li tchmin «%s» n' est nén corek. %s"

#: ../src/address-book-config.c:648
msgid "Do you want to correct the path?"
msgstr ""

#: ../src/balsa-app.c:69
#, c-format
msgid ""
"Opening remote mailbox %s.\n"
"The _password for %s@%s:"
msgstr ""
"Dji droveye li boesse ås emiles då lon %s.\n"
"Li _scret po %s@%s:"

#: ../src/balsa-app.c:74
#, c-format
msgid "Mailbox _password for %s@%s:"
msgstr "_Sicret pol boesse %s@%s:"

#: ../src/balsa-app.c:77
msgid "Password needed"
msgstr "I gn a mezåjhe d' scret"

#: ../src/balsa-app.c:91 ../src/folder-conf.c:373
msgid "_Remember password"
msgstr "Si _rmimbrer do scret"

#: ../src/balsa-app.c:540
#, c-format
msgid "Couldn't open mailbox \"%s\""
msgstr "Dji n' a savou drovi l' boesse «%s»"

#: ../src/balsa-index.c:364
msgid "From"
msgstr "Di"

#: ../src/balsa-index.c:377 ../src/pref-manager.c:401
msgid "Subject"
msgstr "Sudjet"

#: ../src/balsa-index.c:391 ../src/pref-manager.c:402
msgid "Date"
msgstr "Date"

#: ../src/balsa-index.c:403 ../src/pref-manager.c:403
#: ../src/sendmsg-window.c:2927
msgid "Size"
msgstr "Grandeu"

#: ../src/balsa-index.c:1069
#, c-format
msgid "Opening mailbox %s. Please wait..."
msgstr "Dji droveye li boesse %s. Tårdjîz s' i vs plait..."

#. FIXME: this is hack!
#: ../src/balsa-index.c:1112
msgid "To"
msgstr "A"

#: ../src/balsa-index.c:1736
#, fuzzy, c-format
msgid "Move to Trash failed: %s"
msgstr "_Taper å batch"

#. R
#: ../src/balsa-index.c:1891 ../src/main-window.c:584
#: ../src/main-window.c:1047 ../src/message-window.c:148
msgid "_Reply..."
msgstr "_Responde..."

#: ../src/balsa-index.c:1893
msgid "Reply To _All..."
msgstr "Responde a _tertos..."

#: ../src/balsa-index.c:1895
msgid "Reply To _Group..."
msgstr "Responde å _groupe..."

#: ../src/balsa-index.c:1897
msgid "_Forward Attached..."
msgstr ""

#: ../src/balsa-index.c:1899
msgid "Forward _Inline..."
msgstr ""

#: ../src/balsa-index.c:1901 ../src/main-window.c:623
msgid "_Pipe through..."
msgstr ""

#: ../src/balsa-index.c:1903 ../src/main-window.c:682
#: ../src/main-window.c:1031
msgid "_Store Address..."
msgstr "_Wårder l' adresse..."

#: ../src/balsa-index.c:1918 ../src/filter-edit-dialog.c:223
#: ../src/mailbox-node.c:985 ../src/mailbox-node.c:1001
#: ../src/pref-manager.c:1620 ../src/pref-manager.c:1711
#: ../src/pref-manager.c:2776
msgid "_Delete"
msgstr "_Disfacer"

#: ../src/balsa-index.c:1923
msgid "_Undelete"
msgstr "_Disrafacer"

#: ../src/balsa-index.c:1928
msgid "Move To _Trash"
msgstr "Taper å _batch"

#: ../src/balsa-index.c:1932
msgid "T_oggle"
msgstr ""

#: ../src/balsa-index.c:1936 ../src/main-window.c:331 ../src/main-window.c:360
msgid "_Flagged"
msgstr ""

#: ../src/balsa-index.c:1939
msgid "_Unread"
msgstr "_Nén léjhous"

#: ../src/balsa-index.c:1947
msgid "_Move to"
msgstr "_Bodjî viè"

#: ../src/balsa-index.c:1955
msgid "_View Source"
msgstr "_Vey sourdant"

#: ../src/balsa-index.c:2164
#, fuzzy, c-format
msgid "Failed to copy %d message to mailbox \"%s\": %s"
msgid_plural "Failed to copy %d messages to mailbox \"%s\": %s"
msgstr[0] "Dji n' a savou drovi l' boesse «%s»"
msgstr[1] "Dji n' a savou drovi l' boesse «%s»"

#: ../src/balsa-index.c:2178
#, fuzzy, c-format
msgid "Copied to \"%s\"."
msgstr "Copiant messaedje %d viè %s..."

#: ../src/balsa-index.c:2179
#, fuzzy, c-format
msgid "Moved to \"%s\"."
msgstr "_Taper å batch"

#: ../src/balsa-index.c:2302
#, fuzzy, c-format
msgid "Committing mailbox %s failed."
msgstr "Nole boesse di tchoezeye."

#: ../src/balsa-index.c:2475
msgid "Pipe message through a program"
msgstr ""

#: ../src/balsa-index.c:2478
#, fuzzy
msgid "_Run"
msgstr "_Enonder"

#: ../src/balsa-index.c:2487
msgid "Specify the program to run:"
msgstr ""

#: ../src/balsa-mblist.c:357
msgid "Mailbox"
msgstr "Boesse"

#: ../src/balsa-mblist.c:1177 ../src/balsa-mblist.c:1213
msgid "Failed to find mailbox"
msgstr ""

#: ../src/balsa-mblist.c:1840
msgid "_Other..."
msgstr "_Ôtes..."

#: ../src/balsa-mblist.c:1908
msgid "Choose destination folder"
msgstr "Tchoezixhoz li boesse såme"

#: ../src/balsa-mblist.c:2131 ../src/balsa-mblist.c:2134
#, fuzzy
msgid "Other..."
msgstr "Co ds ôtes..."

#. xgettext: this is the first part of the message
#. * "Shown mailbox: %s with %d messages, %d new, %d hidden".
#: ../src/balsa-mblist.c:2299
#, fuzzy, c-format
msgid "Shown mailbox: %s"
msgstr "Boesse MH locåle..."

#: ../src/balsa-mblist.c:2304
#, fuzzy, c-format
msgid " with %d message"
msgid_plural " with %d messages"
msgstr[0] "Imprimer l' messaedje"
msgstr[1] "Imprimer l' messaedje"

#: ../src/balsa-mblist.c:2311
#, c-format
msgid ", %d new"
msgid_plural ", %d new"
msgstr[0] ""
msgstr[1] ""

#: ../src/balsa-mblist.c:2318
#, c-format
msgid ", %d hidden"
msgid_plural ", %d hidden"
msgstr[0] ""
msgstr[1] ""

#: ../src/balsa-message.c:290
msgid "Check cryptographic signature"
msgstr ""

#: ../src/balsa-message.c:311
#, fuzzy
msgid "Select message part to display"
msgstr "Tchoezixhoz li fonte a-z eployî"

#: ../src/balsa-message.c:387
msgid "Content"
msgstr "Å dvins"

#: ../src/balsa-message.c:465
msgid "Message parts"
msgstr "Pårteyes do messaedje"

#: ../src/balsa-message.c:647
#, fuzzy
msgid "Save selected as..."
msgstr "Tchoezixhant %s..."

#: ../src/balsa-message.c:654
#, fuzzy
msgid "Save selected to folder..."
msgstr "Tchoezixhoz li ridant do dzeu"

#: ../src/balsa-message.c:758
msgid "(No sender)"
msgstr "(Nou evoyeu)"

#: ../src/balsa-message.c:823
#, fuzzy, c-format
msgid "Could not access message %ld in mailbox \"%s\"."
msgstr "Dji n' a savou drovi l' boesse «%s»"

#: ../src/balsa-message.c:998
msgid "mixed parts"
msgstr ""

#: ../src/balsa-message.c:1000
msgid "alternative parts"
msgstr ""

#: ../src/balsa-message.c:1002
msgid "signed parts"
msgstr ""

#: ../src/balsa-message.c:1004
msgid "encrypted parts"
msgstr ""

#: ../src/balsa-message.c:1006
msgid "rfc822 message"
msgstr "messaedje rfc822"

#: ../src/balsa-message.c:1008
#, c-format
msgid "\"%s\" parts"
msgstr "pårteyes «%s»"

#: ../src/balsa-message.c:1056
msgid "force inline for all parts"
msgstr ""

#: ../src/balsa-message.c:1089
#, c-format
msgid "rfc822 message (from %s, subject \"%s\")"
msgstr "messaedje rfc822 (di %s, sudjet «%s»)"

#: ../src/balsa-message.c:1100
#, fuzzy
msgid "complete message"
msgstr "Sicrire on novea messaedje"

#: ../src/balsa-message.c:1117
#, fuzzy, c-format
msgid "part %s: %s (file %s)"
msgstr "%s: li sinaedje a fwaitberwete: %s"

#: ../src/balsa-message.c:1128
#, fuzzy, c-format
msgid "part %s: %s"
msgstr "Responde a %s: %s"

#: ../src/balsa-message.c:1143
#, fuzzy
msgid "encrypted: "
msgstr "%s: l' ecriptaedje a fwait berwete: %s"

#: ../src/balsa-message.c:1297 ../src/balsa-mime-widget-text.c:507
#: ../src/balsa-mime-widget-text.c:897
msgid "Save..."
msgstr "Schaper..."

#: ../src/balsa-message.c:1373
msgid "Select folder for saving selected parts"
msgstr ""

#: ../src/balsa-message.c:1411
#, fuzzy, c-format
msgid "%s message part"
msgstr "Pårteyes do messaedje"

#: ../src/balsa-message.c:1439 ../src/balsa-mime-widget-callbacks.c:202
#, c-format
msgid "Could not save %s: %s"
msgstr "Dji n' a savou schaper %s: %s"

#: ../src/balsa-message.c:2161
#, c-format
msgid ""
"The sender of this mail, %s, requested \n"
"a Message Disposition Notification(MDN) to be returned to `%s'.\n"
"Do you want to send this notification?"
msgstr ""

#: ../src/balsa-message.c:2168
msgid "Reply to MDN?"
msgstr ""

#: ../src/balsa-message.c:2363
msgid ""
"The decryption cannot be performed because this message is displayed more "
"than once.\n"
"Please close the other instances of this message and try again."
msgstr ""

#: ../src/balsa-message.c:2384 ../src/balsa-message.c:2466
#: ../src/balsa-message.c:2581
#, fuzzy, c-format
msgid "Parsing a message part failed: %s"
msgstr "Copiant %d messaedjes viè %s..."

#: ../src/balsa-message.c:2385 ../src/balsa-message.c:2467
#: ../src/balsa-message.c:2582
msgid "Possible disk space problem."
msgstr ""

#: ../src/balsa-message.c:2397
#, c-format
msgid ""
"The message sent by %s with subject \"%s\" contains an encrypted part, but "
"it's structure is invalid."
msgstr ""

#: ../src/balsa-message.c:2405
#, c-format
msgid ""
"The message sent by %s with subject \"%s\" contains a PGP encrypted part, "
"but this crypto protocol is not available."
msgstr ""

#: ../src/balsa-message.c:2418
#, c-format
msgid ""
"The message sent by %s with subject \"%s\" contains a S/MIME encrypted part, "
"but this crypto protocol is not available."
msgstr ""

#: ../src/balsa-message.c:2482
#, c-format
msgid ""
"The message sent by %s with subject \"%s\" contains a signed part, but its "
"structure is invalid. The signature, if there is any, cannot be checked."
msgstr ""

#: ../src/balsa-message.c:2495
#, c-format
msgid ""
"The message sent by %s with subject \"%s\" contains a %s signed part, but "
"this crypto protocol is not available."
msgstr ""

#: ../src/balsa-message.c:2498
#, fuzzy
msgid "PGP"
msgstr "PGP"

#: ../src/balsa-message.c:2498 ../src/balsa-mime-widget-crypto.c:72
#: ../src/print.c:1302
msgid "S/MIME"
msgstr ""

#: ../src/balsa-message.c:2517 ../src/balsa-message.c:2643
#, fuzzy
msgid "Detected a good signature"
msgstr "boune sinateure di trovêye"

#: ../src/balsa-message.c:2523
#, fuzzy
msgid "Detected a good signature with insufficient validity"
msgstr "boune sinateure di trovêye"

#: ../src/balsa-message.c:2528 ../src/balsa-message.c:2647
msgid "Detected a good signature with insufficient validity/trust"
msgstr ""

#: ../src/balsa-message.c:2535 ../src/balsa-message.c:2653
#, c-format
msgid ""
"Checking the signature of the message sent by %s with subject \"%s\" "
"returned:\n"
"%s"
msgstr ""

#: ../src/balsa-message.c:2547
#, c-format
msgid ""
"Checking the signature of the message sent by %s with subject \"%s\" failed "
"with an error!"
msgstr ""

#: ../src/balsa-message.c:2605
msgid ""
"The decryption cannot be performed because this message is displayed more "
"than once."
msgstr ""

#: ../src/balsa-message.c:2607
msgid ""
"The signature check and removal of the OpenPGP armor cannot be performed "
"because this message is displayed more than once."
msgstr ""

#: ../src/balsa-message.c:2610
msgid "Please close the other instances of this message and try again."
msgstr ""

#: ../src/filter-edit-callbacks.c:311
msgid "One of the specified fields contains:"
msgstr ""

#: ../src/filter-edit-callbacks.c:312
msgid "None of the specified fields contains:"
msgstr ""

#: ../src/filter-edit-callbacks.c:314
msgid "One of the regular expressions matches"
msgstr ""

#: ../src/filter-edit-callbacks.c:315
msgid "None of the regular expressions matches"
msgstr ""

#: ../src/filter-edit-callbacks.c:317
msgid "Match when date is in the interval:"
msgstr ""

#: ../src/filter-edit-callbacks.c:318
msgid "Match when date is outside the interval:"
msgstr ""

#: ../src/filter-edit-callbacks.c:320 ../src/filter-edit-callbacks.c:1085
msgid "Match when one of these flags is set:"
msgstr ""

#: ../src/filter-edit-callbacks.c:321
msgid "Match when none of these flags is set:"
msgstr ""

#: ../src/filter-edit-callbacks.c:512
msgid "You must specify the name of the user header to match on"
msgstr ""

#: ../src/filter-edit-callbacks.c:523
msgid "You must specify at least one field for matching"
msgstr ""

#: ../src/filter-edit-callbacks.c:533
msgid "You must provide a string"
msgstr ""

#: ../src/filter-edit-callbacks.c:540
msgid "You must provide at least one regular expression"
msgstr ""

#: ../src/filter-edit-callbacks.c:552
msgid "Low date is incorrect"
msgstr ""

#: ../src/filter-edit-callbacks.c:563
msgid "High date is incorrect"
msgstr ""

#: ../src/filter-edit-callbacks.c:571
msgid "Low date is greater than high date"
msgstr ""

#: ../src/filter-edit-callbacks.c:856
#, c-format
msgid "Error displaying condition help: %s\n"
msgstr ""

#: ../src/filter-edit-callbacks.c:897
msgid "Match Fields"
msgstr ""

#: ../src/filter-edit-callbacks.c:907
#, fuzzy
msgid "_All"
msgstr "_Tot"

#: ../src/filter-edit-callbacks.c:908
msgid "C_lear"
msgstr "_Netyî"

#: ../src/filter-edit-callbacks.c:910 ../src/main-window.c:4029
msgid "_Body"
msgstr "_Coir"

#. To:
#: ../src/filter-edit-callbacks.c:911 ../src/main-window.c:4030
#: ../src/sendmsg-window.c:2814
msgid "_To:"
msgstr "_A:"

#: ../src/filter-edit-callbacks.c:912 ../src/main-window.c:4031
msgid "_From:"
msgstr "_Di:"

#: ../src/filter-edit-callbacks.c:913
msgid "_Subject"
msgstr "_Sudjet"

#: ../src/filter-edit-callbacks.c:914 ../src/main-window.c:4033
msgid "_Cc:"
msgstr "_Cc:"

#: ../src/filter-edit-callbacks.c:916
msgid "_User header:"
msgstr "Tiestire di l' _uzeu:"

#: ../src/filter-edit-callbacks.c:946
msgid "Unread"
msgstr "Nén léjhou"

#: ../src/filter-edit-callbacks.c:946
msgid "Deleted"
msgstr "Disfacé"

#: ../src/filter-edit-callbacks.c:946
msgid "Replied"
msgstr "Respondou"

#: ../src/filter-edit-callbacks.c:946
msgid "Flagged"
msgstr ""

#: ../src/filter-edit-callbacks.c:961
msgid "One of the specified f_ields contains"
msgstr ""

#: ../src/filter-edit-callbacks.c:976
msgid "Contain/Does _Not Contain"
msgstr ""

#: ../src/filter-edit-callbacks.c:995
msgid "_One of the regular expressions matches"
msgstr ""

#. Left/Remove button
#: ../src/filter-edit-callbacks.c:1026 ../src/filter-edit-dialog.c:321
#: ../src/filter-run-dialog.c:332
msgid "_Remove"
msgstr "_Oister"

#: ../src/filter-edit-callbacks.c:1030
msgid "One _Matches/None Matches"
msgstr ""

#: ../src/filter-edit-callbacks.c:1047
msgid "Match when message date is in the interval:"
msgstr ""

#: ../src/filter-edit-callbacks.c:1067
msgid "Inside/outside the date interval"
msgstr ""

#: ../src/filter-edit-callbacks.c:1114
msgid "Match when one flag is set/when no flag is set"
msgstr ""

#: ../src/filter-edit-callbacks.c:1132
msgid "Search T_ype:"
msgstr "_Sôre di cweraedje:"

#: ../src/filter-edit-callbacks.c:1206
msgid "Edit condition for filter: "
msgstr ""

#: ../src/filter-edit-callbacks.c:1424 ../src/save-restore.c:1841
#, fuzzy
msgid "Filter with no condition was omitted"
msgstr "Li passete «%s» egzistêye dedja."

#: ../src/filter-edit-callbacks.c:1450
#, c-format
msgid "Error displaying filter help: %s\n"
msgstr ""

#: ../src/filter-edit-callbacks.c:1640
msgid "New filter"
msgstr "Nouve passete"

#: ../src/filter-edit-callbacks.c:1772
msgid "No filter name specified."
msgstr ""

#: ../src/filter-edit-callbacks.c:1777
#, c-format
msgid "Filter \"%s\" already exists."
msgstr "Li passete «%s» egzistêye dedja."

#: ../src/filter-edit-callbacks.c:1787
msgid "Filter must have conditions."
msgstr ""

#: ../src/filter-edit-callbacks.c:1844
msgid "Filter has matched"
msgstr ""

#: ../src/filter-edit-callbacks.c:1869
msgid "You must provide a sound to play"
msgstr ""

#: ../src/filter-edit-callbacks.c:2028
#, c-format
msgid "(Example: write December 31, 2000, as %s)"
msgstr ""

#: ../src/filter-edit-dialog.c:89 ../src/pref-manager.c:409
msgid "Simple"
msgstr "Simpe"

#: ../src/filter-edit-dialog.c:90
msgid "Regular Expression"
msgstr ""

#: ../src/filter-edit-dialog.c:91
msgid "Date interval"
msgstr ""

#: ../src/filter-edit-dialog.c:92
msgid "Flag condition"
msgstr ""

#: ../src/filter-edit-dialog.c:96
msgid "Copy to folder:"
msgstr "Copyî el ridant:"

#: ../src/filter-edit-dialog.c:97
msgid "Move to folder:"
msgstr "Bodjî el ridant:"

#: ../src/filter-edit-dialog.c:98
msgid "Print on printer:"
msgstr "Rexhe sol scrirece:"

#: ../src/filter-edit-dialog.c:99
msgid "Run program:"
msgstr "Enonder programe:"

#: ../src/filter-edit-dialog.c:100
msgid "Send to Trash"
msgstr "Taper å batch"

#: ../src/filter-edit-dialog.c:104
msgid "OR"
msgstr "OU"

#: ../src/filter-edit-dialog.c:105
msgid "AND"
msgstr "ET"

#. new button
#. #define MENU_FILE_NEW_POS 0
#: ../src/filter-edit-dialog.c:217 ../src/mailbox-node.c:958
#: ../src/main-window.c:371 ../src/main-window.c:430
msgid "_New"
msgstr "_Novea"

#. The name entry
#: ../src/filter-edit-dialog.c:249
msgid "_Filter name:"
msgstr "No del _passete:"

#. The filter op-code : "OR" or "AND" all the conditions
#: ../src/filter-edit-dialog.c:267
msgid "Operation between conditions"
msgstr ""

#: ../src/filter-edit-dialog.c:312
msgid "_Edit"
msgstr "_Candjî"

#: ../src/filter-edit-dialog.c:317
msgid "Ne_w"
msgstr "_Novea"

#. The notification area
#: ../src/filter-edit-dialog.c:350
msgid "Notification:"
msgstr "Notifiaedje:"

#. Notification buttons
#: ../src/filter-edit-dialog.c:360
msgid "Play sound:"
msgstr "Djouwer son:"

#: ../src/filter-edit-dialog.c:367 ../src/filter-edit-dialog.c:380
msgid "Use Sound..."
msgstr "Eployî l' son..."

#: ../src/filter-edit-dialog.c:399
msgid "Popup text:"
msgstr ""

#. The action area
#: ../src/filter-edit-dialog.c:420
msgid "Action to perform:"
msgstr ""

#: ../src/filter-edit-dialog.c:471
msgid "Match"
msgstr ""

#: ../src/filter-edit-dialog.c:474
msgid "Action"
msgstr "Accion"

#: ../src/filter-edit-dialog.c:486
msgid "Revert"
msgstr "Rimete come divant"

#: ../src/filter-edit-dialog.c:537
msgid "A filter run dialog is open.Close it before you can modify filters."
msgstr ""

#: ../src/filter-edit-dialog.c:550
msgid "Balsa Filters"
msgstr "Passetes di Balsa"

#: ../src/filter-edit-dialog.c:618
#, fuzzy, c-format
msgid "Filter \"%s\" has no condition."
msgstr "Li passete «%s» egzistêye dedja."

#: ../src/filter-export-callbacks.c:57
#, c-format
msgid "Unable to export filter %s, an error occurred."
msgstr ""

#: ../src/filter-export-dialog.c:63
msgid ""
"There are opened filter run dialogs, close them before you can modify "
"filters."
msgstr ""

#: ../src/filter-export-dialog.c:75
msgid "Balsa Filters Export"
msgstr ""

#: ../src/filter-run-callbacks.c:182
#, c-format
msgid "Error displaying run filters help: %s\n"
msgstr ""

#: ../src/filter-run-callbacks.c:230 ../src/filter-run-callbacks.c:252
msgid "Error when applying filters"
msgstr ""

#: ../src/filter-run-callbacks.c:233 ../src/filter-run-callbacks.c:255
#, fuzzy, c-format
msgid "Filter applied to \"%s\"."
msgstr "Copiant messaedje %d viè %s..."

#: ../src/filter-run-callbacks.c:292
#, c-format
msgid ""
"The destination mailbox of the filter \"%s\" is \"%s\".\n"
"You can't associate it with the same mailbox (that causes recursion)."
msgstr ""

#: ../src/filter-run-callbacks.c:300
#, c-format
msgid ""
"The filter \"%s\" is not compatible with the mailbox type of \"%s\".\n"
"This happens for example when you use regular expressions match with IMAP "
"mailboxes, it is done by a very slow method; if possible, use substring "
"match instead."
msgstr ""

#: ../src/filter-run-dialog.c:189
msgid "Balsa Filters of Mailbox: "
msgstr ""

#: ../src/filter-run-dialog.c:230
msgid "On reception"
msgstr ""

#: ../src/filter-run-dialog.c:242
msgid "On exit"
msgstr ""

#: ../src/filter-run-dialog.c:316
msgid "Apply Selected"
msgstr ""

#. up button
#: ../src/filter-run-dialog.c:364
msgid "_Up"
msgstr "_Monter"

#. down button
#: ../src/filter-run-dialog.c:369
msgid "Do_wn"
msgstr "_Dischinde"

#: ../src/filter-run-dialog.c:375
msgid "A_pply Now!"
msgstr ""

#: ../src/filter-run-dialog.c:419
msgid ""
"The filters dialog is opened, close it before you can run filters on any "
"mailbox"
msgstr ""

#: ../src/folder-conf.c:281
msgid "Remote IMAP folder"
msgstr "Ridant IMAP å lon"

#. must NOT be modal
#: ../src/folder-conf.c:284 ../src/folder-conf.c:747 ../src/mailbox-conf.c:529
msgid "_Update"
msgstr "Mete a _djoû"

#: ../src/folder-conf.c:284
#, fuzzy
msgid "C_reate"
msgstr "A_hiver"

#: ../src/folder-conf.c:307 ../src/mailbox-conf.c:1137
#: ../src/mailbox-conf.c:1239
#, fuzzy
msgid "_Basic"
msgstr "_Bcc"

#: ../src/folder-conf.c:312
msgid "_Max number of connections:"
msgstr ""

#: ../src/folder-conf.c:319 ../src/mailbox-conf.c:1302
msgid "Enable _persistent cache"
msgstr ""

#: ../src/folder-conf.c:327 ../src/mailbox-conf.c:1306
msgid "Enable _bug workarounds"
msgstr ""

#: ../src/folder-conf.c:334
msgid "Use STATUS for mailbox checking"
msgstr ""

#: ../src/folder-conf.c:340 ../src/mailbox-conf.c:1191
#: ../src/mailbox-conf.c:1308
#, fuzzy
msgid "_Advanced"
msgstr "_Spirou"

#. INPUT FIELD CREATION
#: ../src/folder-conf.c:343
msgid "Descriptive _Name:"
msgstr "_Discrijhaedje:"

#. username
#: ../src/folder-conf.c:358 ../src/mailbox-conf.c:1153
msgid "Use_r name:"
msgstr "No d' _uzeu:"

#: ../src/folder-conf.c:364
msgid "_Password:"
msgstr "_Sicret:"

#: ../src/folder-conf.c:369 ../src/mailbox-conf.c:1264
msgid "_Anonymous access"
msgstr ""

#: ../src/folder-conf.c:378
msgid "Subscribed _folders only"
msgstr ""

#: ../src/folder-conf.c:380
msgid "Always show _INBOX"
msgstr ""

#: ../src/folder-conf.c:383
#, fuzzy
msgid "Pr_efix:"
msgstr "_Betchete"

#: ../src/folder-conf.c:529
msgid "Select parent folder"
msgstr "Tchoezixhoz li ridant do dzeu"

#: ../src/folder-conf.c:603
#, c-format
msgid ""
"Renaming INBOX is special!\n"
"You will create a subfolder %s in %s\n"
"containing the messages from INBOX.\n"
"INBOX and its subfolders will remain.\n"
"What would you like to do?"
msgstr ""

#: ../src/folder-conf.c:609
msgid "Question"
msgstr "Kesse"

#: ../src/folder-conf.c:614
msgid "Rename INBOX"
msgstr ""

#: ../src/folder-conf.c:616
msgid "Cancel"
msgstr "Rinoncî"

#: ../src/folder-conf.c:637
#, c-format
msgid "Folder rename failed. Reason: %s"
msgstr ""

#: ../src/folder-conf.c:689
#, fuzzy, c-format
msgid "Folder creation failed. Reason: %s"
msgstr "%s: l' ecriptaedje a fwait berwete: %s"

#: ../src/folder-conf.c:729
msgid ""
"An IMAP folder that is not a mailbox\n"
"has no properties that can be changed."
msgstr ""

#: ../src/folder-conf.c:744
msgid "Remote IMAP subfolder"
msgstr "Sorridant IMAP å lon"

#: ../src/folder-conf.c:747
msgid "_Create"
msgstr "_Askepyî"

#: ../src/folder-conf.c:768
msgid "Rename or move subfolder"
msgstr ""

#: ../src/folder-conf.c:769
msgid "Create subfolder"
msgstr ""

#. INPUT FIELD CREATION
#: ../src/folder-conf.c:777
msgid "_Folder name:"
msgstr "No do _ridant:"

#: ../src/folder-conf.c:783
msgid "Host:"
msgstr "Lodjeu:"

#: ../src/folder-conf.c:789
msgid "_Browse..."
msgstr "_Foyter..."

#: ../src/folder-conf.c:797
msgid "_Subfolder of:"
msgstr ""

#: ../src/folder-conf.c:826
msgid ""
"This folder is not stored in configuration. I do not yet know how to remove "
"it from remote server."
msgstr ""

#: ../src/folder-conf.c:835
#, c-format
msgid ""
"This will remove the folder \"%s\" from the list.\n"
"You may use \"New IMAP Folder\" later to add this folder again.\n"
msgstr ""

#: ../src/folder-conf.c:840
msgid "Confirm"
msgstr "Acertiner"

#: ../src/information-dialog.c:222
msgid "Information - Balsa"
msgstr "Informåcion - Balsa"

#: ../src/information-dialog.c:325
#, c-format
msgid "WARNING: "
msgstr "ADVIERTIXHMINT: "

#: ../src/information-dialog.c:328
#, c-format
msgid "ERROR: "
msgstr "AROKE: "

#: ../src/information-dialog.c:331
#, c-format
msgid "FATAL: "
msgstr "AROKE MOIRT: "

#: ../src/mailbox-conf.c:221
#, fuzzy
msgid "Use _SSL"
msgstr "Eployî TLS"

#: ../src/mailbox-conf.c:349
msgid "No mailbox selected."
msgstr "Nole boesse di tchoezeye."

#: ../src/mailbox-conf.c:378
#, c-format
msgid ""
"Mailbox \"%s\" is used by Balsa and I cannot remove it.\n"
"If you really want to remove it, assign its function\n"
"to some other mailbox."
msgstr ""

#: ../src/mailbox-conf.c:388
#, c-format
msgid ""
"This will remove the mailbox \"%s\" from the list of mailboxes.  You may "
"also delete the disk file or files associated with this mailbox.\n"
"If you do not remove the file on disk you may \"Add  Mailbox\" to access the "
"mailbox again.\n"
"What would you like to do?"
msgstr ""

#: ../src/mailbox-conf.c:400
msgid "Remove from _list"
msgstr "Oister del _djivêye"

#: ../src/mailbox-conf.c:401
msgid "Remove from list and _disk"
msgstr "Oister del djivêye eyet del deure _plake"

#: ../src/mailbox-conf.c:409
#, c-format
msgid ""
"This will remove the mailbox \"%s\" and all its messages from your IMAP "
"server.  If %s has subfolders, it will still appear as a node in the folder "
"tree.\n"
"You may use \"New IMAP subfolder\" later to add a mailbox with this name.\n"
"What would you like to do?"
msgstr ""

#: ../src/mailbox-conf.c:422
msgid "_Remove from server"
msgstr "_Oister do sierveu"

#: ../src/mailbox-conf.c:429
#, c-format
msgid ""
"This will remove the mailbox \"%s\" from the list of mailboxes.\n"
"You may use \"Add Mailbox\" later to access this mailbox again.\n"
"What would you like to do?"
msgstr ""

#: ../src/mailbox-conf.c:438
msgid "_Remove from list"
msgstr "_Oister del djivêye"

#: ../src/mailbox-conf.c:476
#, fuzzy, c-format
msgid "Folder deletion failed. Reason: %s"
msgstr "%s: l' ecriptaedje a fwait berwete: %s"

#: ../src/mailbox-conf.c:533 ../src/pref-manager.c:1616
#: ../src/pref-manager.c:1704 ../src/pref-manager.c:2770
msgid "_Add"
msgstr "_Radjouter"

#: ../src/mailbox-conf.c:753
#, c-format
msgid "%s on %s"
msgstr "%s so %s"

#: ../src/mailbox-conf.c:895
#, c-format
msgid ""
"Rename of %s to %s failed:\n"
"%s"
msgstr ""

#: ../src/mailbox-conf.c:1074
#, fuzzy
msgid "_Mailbox Name:"
msgstr "_No del boesse:"

#: ../src/mailbox-conf.c:1085
#, fuzzy
msgid "Local Mailbox Configurator"
msgstr "Ridant di messaedjes _locå:"

#: ../src/mailbox-conf.c:1118
#, fuzzy
msgid "Remote Mailbox Configurator"
msgstr "Sierveus di boesses å lon"

#. mailbox name
#: ../src/mailbox-conf.c:1140 ../src/mailbox-conf.c:1242
msgid "Mailbox _Name:"
msgstr "_No del boesse:"

#. password field
#: ../src/mailbox-conf.c:1159 ../src/mailbox-conf.c:1276
msgid "Pass_word:"
msgstr "Sicre_t:"

#: ../src/mailbox-conf.c:1167
msgid "_Delete messages from server after download"
msgstr "_Disfacer les messaedjes sol sierveu après les aveur prindou"

#: ../src/mailbox-conf.c:1172
msgid "_Enable check for new mail"
msgstr ""

#: ../src/mailbox-conf.c:1177
msgid "_Filter messages through procmail"
msgstr ""

#: ../src/mailbox-conf.c:1181
msgid "Fi_lter Command:"
msgstr "Comande pol _passete:"

#: ../src/mailbox-conf.c:1195
msgid "Disable _APOP"
msgstr ""

#. username
#: ../src/mailbox-conf.c:1256
msgid "_Username:"
msgstr "No d' uze_u:"

#: ../src/mailbox-conf.c:1270
msgid "_Remember Password"
msgstr "Si _rmimbrer do scret"

#: ../src/mailbox-conf.c:1281
msgid "F_older Path:"
msgstr "Tchimin do ridant:"

#: ../src/mailbox-conf.c:1367
#, fuzzy
msgid "_Identity:"
msgstr "Idintité:"

#: ../src/mailbox-conf.c:1395 ../src/pref-manager.c:3235
msgid "Always"
msgstr "Tofer"

#: ../src/mailbox-conf.c:1399
#, fuzzy
msgid ""
"_Decrypt and check\n"
"signatures automatically:"
msgstr ""
"%s: li discriptaedje eyet l' verifiaedje del sinateure ont fwait berwete: %s"

#: ../src/mailbox-conf.c:1420
msgid "Show _Recipient column instead of Sender"
msgstr ""

#: ../src/mailbox-conf.c:1427
msgid "_Subscribe for new mail check"
msgstr ""

#: ../src/mailbox-node.c:265
msgid "The folder edition to be written."
msgstr ""

#: ../src/mailbox-node.c:433
#, c-format
msgid ""
"Scanning of %s failed: %s\n"
"Check network connectivity."
msgstr ""

#: ../src/mailbox-node.c:435
#, fuzzy, c-format
msgid "Scanning of %s failed: %s"
msgstr "%s: li sinaedje a fwaitberwete: %s"

#: ../src/mailbox-node.c:484
#, c-format
msgid "Scanning %s. Please wait..."
msgstr ""

#: ../src/mailbox-node.c:943
msgid "Local _mbox mailbox..."
msgstr "Boesse _mbox locåle..."

#: ../src/mailbox-node.c:945
msgid "Local Mail_dir mailbox..."
msgstr "Boesse Mail_dir locåle..."

#: ../src/mailbox-node.c:947
msgid "Local M_H mailbox..."
msgstr "Boesse M_H locåle..."

#: ../src/mailbox-node.c:949
msgid "Remote _IMAP mailbox..."
msgstr "Boesse _IMAP å lon..."

#: ../src/mailbox-node.c:952
msgid "Remote IMAP _folder..."
msgstr "_Ridant IMAP å lon..."

#: ../src/mailbox-node.c:954
msgid "Remote IMAP _subfolder..."
msgstr "_Sorridant IMAP å lon..."

#. clicked on the empty space
#: ../src/mailbox-node.c:965 ../src/mailbox-node.c:981
msgid "_Rescan"
msgstr ""

#: ../src/mailbox-node.c:975
msgid "_Properties..."
msgstr "_Prôpietés..."

#: ../src/mailbox-node.c:991
msgid "_Open"
msgstr "_Drovi"

#: ../src/mailbox-node.c:1005
msgid "_Subscribe"
msgstr ""

#: ../src/mailbox-node.c:1007
msgid "_Unsubscribe"
msgstr ""

#: ../src/mailbox-node.c:1013
msgid "Mark as _Inbox"
msgstr "Marker come _riçuvou"

#: ../src/mailbox-node.c:1015
msgid "_Mark as Sentbox"
msgstr "Marker come _evoyî"

#: ../src/mailbox-node.c:1017
msgid "Mark as _Trash"
msgstr "Marker come tapé å _batch"

#: ../src/mailbox-node.c:1019
msgid "Mark as D_raftbox"
msgstr "Marker come brou_yon"

#: ../src/mailbox-node.c:1022
#, fuzzy
msgid "_Empty trash"
msgstr "Vudî l' batch"

#: ../src/mailbox-node.c:1027
msgid "_Edit/Apply filters"
msgstr "_Candjî/Mete en alaedje les passetes"

#: ../src/mailbox-node.c:1115
#, fuzzy, c-format
msgid "The path \"%s\" does not lead to a mailbox."
msgstr "Li boesse ås emiles %s shonne nén esse ene boesse del sôre Maildir."

#: ../src/mailbox-node.c:1128
#, c-format
msgid "Local mailbox %s loaded as: %s\n"
msgstr "Boesse locåle %s tcherdjeye come: %s\n"

#: ../src/mailbox-node.c:1157
#, c-format
msgid "Local folder %s\n"
msgstr "Ridant locå %s\n"

#: ../src/main-window.c:280
msgid "Balsa closes files and connections. Please wait..."
msgstr ""

#: ../src/main-window.c:319 ../src/main-window.c:365
#, fuzzy
msgid "_Deleted"
msgstr "_Disfacer"

#: ../src/main-window.c:322
#, fuzzy
msgid "Un_Deleted"
msgstr "Disfacé"

#: ../src/main-window.c:325
#, fuzzy
msgid "_Read"
msgstr "_Lére"

#: ../src/main-window.c:328
#, fuzzy
msgid "Un_read"
msgstr "Nén léjhou"

#: ../src/main-window.c:334
#, fuzzy
msgid "Un_flagged"
msgstr ""
"Drapea\n"
"shuvant"

#: ../src/main-window.c:337 ../src/main-window.c:377
#, fuzzy
msgid "_Answered"
msgstr "_Nén léjhous"

#: ../src/main-window.c:340
#, fuzzy
msgid "Un_answered"
msgstr "_Sicret"

#: ../src/main-window.c:346
msgid "_No Headers"
msgstr "_Nole tiestire"

#: ../src/main-window.c:346
msgid "Display no headers"
msgstr "Èn nén håyner di tiestires"

#: ../src/main-window.c:348
msgid "S_elected Headers"
msgstr "_Tchoezeyès tiestires"

#: ../src/main-window.c:349
msgid "Display selected headers"
msgstr "Håyner les tchoezeyès tiestires"

#: ../src/main-window.c:351 ../src/message-window.c:90
msgid "All _Headers"
msgstr "_Totes les tiestires"

#: ../src/main-window.c:351
msgid "Display all headers"
msgstr "Håyner totes les tiestires"

#: ../src/main-window.c:360
msgid "Toggle flagged"
msgstr ""

#: ../src/main-window.c:366
#, fuzzy
msgid "Toggle deleted flag"
msgstr "Discandjî l' drapea di novea messaedje"

#: ../src/main-window.c:371
msgid "Toggle New"
msgstr ""

#: ../src/main-window.c:377
#, fuzzy
msgid "Toggle Answered"
msgstr ""
"Discandjî\n"
"novea"

#: ../src/main-window.c:392
msgid "_Message..."
msgstr "_Messaedje..."

#: ../src/main-window.c:392 ../src/main-window.c:1041
msgid "Compose a new message"
msgstr "Scrire on novea messaedje"

#. We could use GNOMEUIINFO_INCLUDE but it appends the menu instead
#. of including at specified position
#: ../src/main-window.c:399
msgid "Local mbox mailbox..."
msgstr "Boesse mbox locåle..."

#: ../src/main-window.c:400 ../src/main-window.c:813
msgid "Add a new mbox style mailbox"
msgstr "Radjouter ene novele boesse del sôre mbox"

#: ../src/main-window.c:403
msgid "Local Maildir mailbox..."
msgstr "Boesse Maildir locåle..."

#: ../src/main-window.c:404 ../src/main-window.c:818
msgid "Add a new Maildir style mailbox"
msgstr "Radjouter ene novele boesse del sôre Maildir"

#: ../src/main-window.c:407
msgid "Local MH mailbox..."
msgstr "Boesse MH locåle..."

#: ../src/main-window.c:408 ../src/main-window.c:822
msgid "Add a new MH style mailbox"
msgstr "Radjouter ene novele boesse del sôre MH"

#: ../src/main-window.c:411 ../src/main-window.c:825
#: ../src/pref-manager.c:3094
msgid "Remote IMAP mailbox..."
msgstr "Boesse IMAP å lon..."

#: ../src/main-window.c:412 ../src/main-window.c:826
msgid "Add a new IMAP mailbox"
msgstr "Radjouter ene novele boesse IMAP"

#: ../src/main-window.c:416 ../src/main-window.c:830
#: ../src/pref-manager.c:3099
msgid "Remote IMAP folder..."
msgstr "Ridant IMAP å lon..."

#: ../src/main-window.c:417 ../src/main-window.c:831
msgid "Add a new IMAP folder"
msgstr "Radjouter on novea ridant IMAP"

#: ../src/main-window.c:420 ../src/main-window.c:834
msgid "Remote IMAP subfolder..."
msgstr "Sorridant IMAP å lon..."

#: ../src/main-window.c:421 ../src/main-window.c:835
msgid "Add a new IMAP subfolder"
msgstr "Radjouter on novea sorridant IMAP"

#: ../src/main-window.c:434
msgid "_Continue"
msgstr "_Continouwer"

#: ../src/main-window.c:435
msgid "Continue editing current message"
msgstr "Continouwer l' aspougnaedje do messaedje"

#. Ctrl-M
#: ../src/main-window.c:442 ../src/main-window.c:877
msgid "_Get New Mail"
msgstr "_Prinde les noveas emiles"

#: ../src/main-window.c:442 ../src/main-window.c:877
msgid "Fetch new incoming mail"
msgstr "Prinde les noveas emiles"

#. Ctrl-S
#: ../src/main-window.c:448 ../src/main-window.c:872
msgid "_Send Queued Mail"
msgstr "_Evoyî les messaedje el caweye"

#: ../src/main-window.c:449 ../src/main-window.c:873
msgid "Send messages from the outbox"
msgstr ""

#. Ctrl-B
#: ../src/main-window.c:455 ../src/main-window.c:867
msgid "Send and _Receive Mail"
msgstr ""

#: ../src/main-window.c:456 ../src/main-window.c:868
#: ../src/toolbar-factory.c:113
msgid "Send and Receive messages"
msgstr ""

#: ../src/main-window.c:461 ../src/main-window.c:882
#: ../src/sendmsg-window.c:357 ../src/sendmsg-window.c:524
msgid "_Print..."
msgstr "_Imprimer..."

#: ../src/main-window.c:462 ../src/main-window.c:883
#: ../src/toolbar-factory.c:109
msgid "Print current message"
msgstr "Imprimer li messaedje do moumint"

#: ../src/main-window.c:468 ../src/main-window.c:1100
msgid "_Address Book..."
msgstr "Calpin d' _adresses..."

#: ../src/main-window.c:469 ../src/main-window.c:1101
msgid "Open the address book"
msgstr "Drovi l' calpin d' adresses"

#: ../src/main-window.c:493
msgid "F_ilters..."
msgstr "_Passetes..."

#: ../src/main-window.c:493 ../src/main-window.c:1087
msgid "Manage filters"
msgstr "Manaedjî les passetes"

#: ../src/main-window.c:495 ../src/main-window.c:1093
msgid "_Export Filters"
msgstr ""

#: ../src/main-window.c:495 ../src/main-window.c:1094
msgid "Export filters as Sieve scripts"
msgstr ""

#: ../src/main-window.c:503
msgid "_Flat index"
msgstr ""

#: ../src/main-window.c:504
msgid "No threading at all"
msgstr ""

#: ../src/main-window.c:509
msgid "Si_mple threading"
msgstr ""

#: ../src/main-window.c:510
msgid "Simple threading algorithm"
msgstr ""

#: ../src/main-window.c:515
msgid "_JWZ threading"
msgstr ""

#: ../src/main-window.c:516
msgid "Elaborate JWZ threading"
msgstr ""

#: ../src/main-window.c:526
msgid "_Show Mailbox Tree"
msgstr ""

#: ../src/main-window.c:527
msgid "Toggle display of mailbox and folder tree"
msgstr ""

#: ../src/main-window.c:531
msgid "Show Mailbox _Tabs"
msgstr ""

#: ../src/main-window.c:532
msgid "Toggle display of mailbox notebook tabs"
msgstr ""

#: ../src/main-window.c:536 ../src/main-window.c:952
#: ../src/message-window.c:121
msgid "_Wrap"
msgstr ""

#: ../src/main-window.c:536 ../src/main-window.c:952
#: ../src/sendmsg-window.c:386 ../src/sendmsg-window.c:549
msgid "Wrap message lines"
msgstr ""

#: ../src/main-window.c:545 ../src/main-window.c:958
msgid "E_xpand All"
msgstr ""

#: ../src/main-window.c:546 ../src/main-window.c:959
msgid "Expand all threads"
msgstr ""

#: ../src/main-window.c:550 ../src/main-window.c:963
msgid "_Collapse All"
msgstr ""

#: ../src/main-window.c:551 ../src/main-window.c:964
msgid "Collapse all expanded threads"
msgstr ""

#: ../src/main-window.c:557 ../src/main-window.c:994
#: ../src/message-window.c:127
msgid "Zoom _In"
msgstr "_Zoumer"

#: ../src/main-window.c:557 ../src/main-window.c:994
#: ../src/message-window.c:127
msgid "Increase magnification"
msgstr ""

#: ../src/main-window.c:561 ../src/main-window.c:998
#: ../src/message-window.c:131
msgid "Zoom _Out"
msgstr "_Diszoumer"

#: ../src/main-window.c:561 ../src/main-window.c:998
#: ../src/message-window.c:131
msgid "Decrease magnification"
msgstr ""

#. To warn msgfmt that the % sign isn't a format specifier:
#. To warn msgfmt that the % sign isn't a
#. * format specifier:
#: ../src/main-window.c:567 ../src/main-window.c:1004
#: ../src/message-window.c:138
#, no-c-format
msgid "Zoom _100%"
msgstr "Zoumer a _100%"

#: ../src/main-window.c:567 ../src/main-window.c:1004
#: ../src/message-window.c:138
msgid "No magnification"
msgstr ""

#: ../src/main-window.c:585 ../src/main-window.c:1048
#: ../src/toolbar-factory.c:85
msgid "Reply to the current message"
msgstr "Responde a ci messaedje chal"

#. A
#: ../src/main-window.c:592 ../src/main-window.c:1054
#: ../src/message-window.c:153
msgid "Reply to _All..."
msgstr "Responde a _tertos..."

#: ../src/main-window.c:593 ../src/main-window.c:1055
msgid "Reply to all recipients of the current message"
msgstr "Responde a ci messaedje chal et evoyî a tos les djins e Cc: avou"

#: ../src/main-window.c:600 ../src/message-window.c:159
msgid "Reply to _Group..."
msgstr "Responde å _groupe..."

#: ../src/main-window.c:601 ../src/message-window.c:160
#: ../src/toolbar-factory.c:89
msgid "Reply to mailing list"
msgstr "Responde al djåspinreye"

#: ../src/main-window.c:608 ../src/message-window.c:165
msgid "_Forward attached..."
msgstr "_Ricassî en ataetchmint..."

#: ../src/main-window.c:609
msgid "Forward the current message as attachment"
msgstr "Ricassî li messaedje do moumint come èn ataetchmint"

#: ../src/main-window.c:615
msgid "Forward _inline..."
msgstr "Ricassî e _coir do messaedje..."

#: ../src/main-window.c:616
msgid "Forward the current message inline"
msgstr ""
"Ricassî li messaedje do moumint tot l' metant e coir do messaedje ki srè "
"evoyî"

#: ../src/main-window.c:624
msgid "Pipe the message through another program"
msgstr ""

#: ../src/main-window.c:631
#, fuzzy
msgid "_Next Part"
msgstr "Pårteye shuvante"

#: ../src/main-window.c:631 ../src/message-window.c:177
msgid "Next part in message"
msgstr "Pårteye shuvante e l' messaedje"

#: ../src/main-window.c:637
#, fuzzy
msgid "_Previous Part"
msgstr "Pårteye di dvant"

#: ../src/main-window.c:638 ../src/message-window.c:183
msgid "Previous part in message"
msgstr "Pårteye di dvant e l' messaedje"

#: ../src/main-window.c:644 ../src/main-window.c:1068
#: ../src/message-window.c:187
msgid "Save Current Part..."
msgstr "Schaper li pårteye do moumint..."

#: ../src/main-window.c:645 ../src/main-window.c:1069
#, fuzzy
msgid "Save currently displayed part of message"
msgstr "Schaper li pårteye do moumint do messaedje"

#: ../src/main-window.c:651 ../src/main-window.c:1021
#: ../src/message-window.c:192
msgid "_View Source..."
msgstr "_Vey sourdant..."

#: ../src/main-window.c:652 ../src/main-window.c:1022
#: ../src/message-window.c:193
msgid "View source form of the message"
msgstr "Vey li messaedje dins l' cogne sourdant"

#: ../src/main-window.c:670 ../src/message-window.c:228
msgid "_Move to Trash"
msgstr "_Taper å batch"

#: ../src/main-window.c:671 ../src/main-window.c:1076
msgid "Move the current message to Trash mailbox"
msgstr "Evoyî l' messaedje do moumint al boesse ki sieve di batch"

#. !
#: ../src/main-window.c:677 ../src/main-window.c:1027
#, fuzzy
msgid "_Toggle flag"
msgstr "Discandjî l' drapea di novea messaedje"

#: ../src/main-window.c:683 ../src/main-window.c:1032
msgid "Store address of sender in addressbook"
msgstr "Wårder l' adresse di l' evoyeu dins vosse calpin d' adresses"

#: ../src/main-window.c:694 ../src/main-window.c:985
msgid "Next Message"
msgstr "Messaedje shuvant"

#: ../src/main-window.c:700 ../src/main-window.c:989
#: ../src/message-window.c:207
msgid "Previous Message"
msgstr "Messaedje di dvant"

#: ../src/main-window.c:706 ../src/main-window.c:707 ../src/main-window.c:979
#: ../src/main-window.c:980 ../src/message-window.c:213
#: ../src/message-window.c:214
msgid "Next Unread Message"
msgstr "Messaedje nén léjhou shuvant"

#: ../src/main-window.c:713 ../src/main-window.c:714 ../src/main-window.c:944
#: ../src/main-window.c:945 ../src/message-window.c:220
#: ../src/message-window.c:221
msgid "Next Flagged Message"
msgstr "Messaedje avou drapea shuvant"

#: ../src/main-window.c:721
#, fuzzy
msgid "_Hide messages"
msgstr "Catchî les disfacés messaedjes"

#: ../src/main-window.c:723
#, fuzzy
msgid "_Reset Filter"
msgstr "Passetes di Balsa"

#: ../src/main-window.c:723
#, fuzzy
msgid "Reset mailbox filter"
msgstr "Passetes di Balsa"

#: ../src/main-window.c:728
#, fuzzy
msgid "_Select All"
msgstr "_Tchoezi ttafwait"

#: ../src/main-window.c:729
msgid "Select all messages in current mailbox"
msgstr "Tchoezi tos les messaedjes del boesse do moumint"

#: ../src/main-window.c:735 ../src/main-window.c:845
msgid "_Edit..."
msgstr "_Aspougnî..."

#: ../src/main-window.c:735 ../src/main-window.c:845
msgid "Edit the selected mailbox"
msgstr "Aspougnî li boesse tchoezeye"

#: ../src/main-window.c:739 ../src/main-window.c:840
msgid "_Delete..."
msgstr "_Disfacer..."

#: ../src/main-window.c:740 ../src/main-window.c:841
msgid "Delete the selected mailbox"
msgstr "Disfacer li boesse tchoezeye"

#: ../src/main-window.c:746
#, fuzzy
msgid "E_xpunge Deleted Messages"
msgstr "Catchî les disfacés messaedjes"

#: ../src/main-window.c:747 ../src/main-window.c:852
msgid "Expunge messages marked as deleted in the currently opened mailbox"
msgstr ""

#: ../src/main-window.c:752 ../src/main-window.c:858
msgid "Close mailbox"
msgstr "Clôre li boesse ås emiles"

#: ../src/main-window.c:756 ../src/main-window.c:1105
msgid "Empty _Trash"
msgstr "_Vudî l' batch"

#: ../src/main-window.c:757 ../src/main-window.c:1106
#: ../src/toolbar-factory.c:135
msgid "Delete messages from the Trash mailbox"
msgstr "Disfacer po d' bon les messaedjes k' on stî tapés å batch"

#: ../src/main-window.c:761
#, fuzzy
msgid "Select _Filters"
msgstr "Tchoezi fonte"

#: ../src/main-window.c:762 ../src/main-window.c:1091
#, fuzzy
msgid "Select filters to be applied automatically to current mailbox"
msgstr "Tchoezi tos les messaedjes del boesse do moumint"

#: ../src/main-window.c:767
msgid "_Remove Duplicates"
msgstr "_Oister messaedjes e dobe"

#: ../src/main-window.c:768
msgid "Remove duplicated messages from the selected mailbox"
msgstr "Oister les messaedjes e dobe del boesse ås emiles tchoezeye"

#: ../src/main-window.c:783
msgid "_Toolbars..."
msgstr "Bårs ås _usteyes..."

#: ../src/main-window.c:784
msgid "Customize toolbars"
msgstr "Bår ås usteyes a vosse môde"

#: ../src/main-window.c:787 ../src/main-window.c:1109
msgid "_Identities..."
msgstr "_Idintités..."

#: ../src/main-window.c:788 ../src/main-window.c:1110
msgid "Create and set current identities"
msgstr ""

#: ../src/main-window.c:799
msgid "Mail_box"
msgstr "_Boesse ås emiles"

#: ../src/main-window.c:800 ../src/main-window.c:1123
#: ../src/message-window.c:245
msgid "_Message"
msgstr "_Messaedje"

#: ../src/main-window.c:812
#, fuzzy
msgid "New mailbox..."
msgstr "Dji rdroveye li boesse..."

#: ../src/main-window.c:817
#, fuzzy
msgid "New \"Maildir\" mailbox..."
msgstr "Boesse Maildir locåle..."

#: ../src/main-window.c:821
#, fuzzy
msgid "New \"MH\" mailbox..."
msgstr "Boesse MH locåle..."

#: ../src/main-window.c:851
#, fuzzy
msgid "_Compress Mailbox"
msgstr "Clôre li boesse ås emiles"

#: ../src/main-window.c:881
#, fuzzy
msgid "Mail_boxes"
msgstr "_Boesse ås emiles"

#: ../src/main-window.c:906
msgid "By _Arrival"
msgstr ""

#: ../src/main-window.c:906
msgid "Arrival order"
msgstr ""

#: ../src/main-window.c:910
#, fuzzy
msgid "By _Sender"
msgstr "_Evoyî"

#: ../src/main-window.c:910
msgid "Sender order"
msgstr ""

#: ../src/main-window.c:914
#, fuzzy
msgid "By S_ubject"
msgstr "S_udjet"

#: ../src/main-window.c:914
#, fuzzy
msgid "Subject order"
msgstr "Sudjet"

#: ../src/main-window.c:918
#, fuzzy
msgid "By Si_ze"
msgstr "Grandeu"

#: ../src/main-window.c:918
#, fuzzy
msgid "By message size"
msgstr "Ecripter l' messaedje avou GPG"

#: ../src/main-window.c:922
#, fuzzy
msgid "_Threaded"
msgstr "_Nén léjhous"

#: ../src/main-window.c:922
msgid "Use message threading"
msgstr ""

#: ../src/main-window.c:930
#, fuzzy
msgid "_Descending"
msgstr "_Discrexhant"

#: ../src/main-window.c:930
msgid "Sort in a descending order"
msgstr ""

#: ../src/main-window.c:951
#, fuzzy
msgid "_Headers"
msgstr "_Nole tiestire"

#: ../src/main-window.c:954
#, fuzzy
msgid "_Sort Mailbox"
msgstr "Boesse"

#: ../src/main-window.c:955
#, fuzzy
msgid "H_ide messages"
msgstr "Catchî les disfacés messaedjes"

#: ../src/main-window.c:969
#, fuzzy
msgid "_View filter"
msgstr "Nouve passete"

#: ../src/main-window.c:970
msgid "Enable quick message index filter"
msgstr ""

#: ../src/main-window.c:1008 ../src/main-window.c:1082
#: ../src/sendmsg-window.c:526 ../src/sendmsg-window.c:584
#: ../src/sendmsg-window.c:648
msgid "_More"
msgstr "Di _pus"

#: ../src/main-window.c:1041
msgid "_New..."
msgstr "_Novea..."

#. F
#: ../src/main-window.c:1061
msgid "_Forward..."
msgstr "_Redjibler..."

#: ../src/main-window.c:1062 ../src/toolbar-factory.c:91
msgid "Forward the current message"
msgstr "Redjibler l' messaedje do moumint"

#. D
#: ../src/main-window.c:1075
#, fuzzy
msgid "_Delete to Trash"
msgstr "_Taper å batch"

#: ../src/main-window.c:1087
msgid "_Manage..."
msgstr "_Manaedjî..."

#: ../src/main-window.c:1090
msgid "_Select Filters"
msgstr "_Tchoezi passetes"

#: ../src/main-window.c:1108
msgid "_Filters"
msgstr "_Passetes"

#: ../src/main-window.c:1124 ../src/sendmsg-window.c:664
msgid "_Tools"
msgstr "_Usteyes"

#: ../src/main-window.c:1228
msgid ""
"Balsa is sending a mail now.\n"
"Abort sending?"
msgstr ""
"Balsa est k' evoye èn emile pol moumint.\n"
"Leyî toumer l' evoyaedje?"

#: ../src/main-window.c:1470
msgid "Subject or Sender Contains:"
msgstr "Sudjet ou evoyeu ki contént:"

#: ../src/main-window.c:1471
msgid "Subject or Recipient Contains:"
msgstr "Sudjet ou riçuveu ki contént:"

#: ../src/main-window.c:1472
msgid "Subject Contains:"
msgstr "Sudjet ki contént:"

#: ../src/main-window.c:1473
msgid "Body Contains:"
msgstr "Coir do messaedje ki contént:"

#: ../src/main-window.c:1474
msgid "Older than (days):"
msgstr "Pus vîs ki (djoûs):"

#: ../src/main-window.c:2365
#, c-format
msgid ""
"Unable to Open Mailbox!\n"
"%s."
msgstr ""
"Dji n' a nén savou drovi l' boesse ås emiles!\n"
"%s."

#: ../src/main-window.c:2681
msgid "translator-credits"
msgstr "Pablo Saratxaga <pablo@mandriva.com>"

#: ../src/main-window.c:2694 ../src/main-window.c:2721
msgid ""
"The Balsa email client is part of the GNOME desktop environment.  "
"Information on Balsa can be found at http://balsa.gnome.org/\n"
"\n"
"If you need to report bugs, please do so at: http://bugzilla.gnome.org/"
msgstr ""
"Li cliyint d' emilaedje Balsa fwait pårteye di l' evironmint di scribanne "
"GNOME.  Vos ploz trover pus di racsegnes so Balsa el waibe http://balsa."
"gnome.org/\n"
"\n"
"S' i vs fåt evoyî des rapoirts di bugs, s' i vs plait fijhoz l' so: http://"
"bugzilla.gnome.org/"

#: ../src/main-window.c:2825 ../src/main-window.c:2838
msgid "Checking Mail..."
msgstr "Cwerant après des emiles..."

#: ../src/main-window.c:3016
#, c-format
msgid "IMAP mailbox: %s"
msgstr "Boesse IMAP: %s"

#: ../src/main-window.c:3020
#, c-format
msgid "Local mailbox: %s"
msgstr "Boesse locåle: %s"

#: ../src/main-window.c:3158
msgid "Finished Checking."
msgstr ""

#: ../src/main-window.c:3220
#, c-format
msgid "Sending error: %s"
msgstr "Åk n' a nén stî tot-z evoyant: %s"

#: ../src/main-window.c:3305
msgid "Balsa: New mail"
msgstr "Balsa: Noveas emiles"

#: ../src/main-window.c:3317
#, c-format
msgid "You have received %d new message."
msgid_plural "You have received %d new messages."
msgstr[0] "Vos avoz rçuvou %d novea messaedje."
msgstr[1] "Vos avoz rçuvou %d noveas messaedjes."

#: ../src/main-window.c:3320
msgid "You have new mail."
msgstr "Vos avoz des noveas emiles."

#: ../src/main-window.c:3454
#, c-format
msgid "The next unread message is in %s"
msgstr "Li shuvant messaedje nén léjhou est e %s"

#: ../src/main-window.c:3458
#, c-format
msgid "Do you want to switch to %s?"
msgstr ""

#: ../src/main-window.c:3991
msgid "Search mailbox"
msgstr "Cweri e l' boesse ås emiles"

#: ../src/main-window.c:4008
msgid "_Search for:"
msgstr "C_weri après:"

#. builds the toggle buttons to specify fields concerned by
#. * the search.
#: ../src/main-window.c:4021
msgid "In:"
msgstr "E:"

#: ../src/main-window.c:4032
msgid "S_ubject"
msgstr "S_udjet"

#. Frame with Apply and Clear buttons
#: ../src/main-window.c:4037
msgid "Show only matching messages"
msgstr "Mostrer seulmint les messaedjes ki corespondèt"

#. Frame with OK button
#: ../src/main-window.c:4058
msgid "Open next matching message"
msgstr "Drovi l' shuvant messaedje ki corespond"

#: ../src/main-window.c:4069
msgid "_Reverse search"
msgstr "Cweri å _rvier"

#: ../src/main-window.c:4074
#, fuzzy
msgid "_Wrap around"
msgstr "Rivni å _cmince:"

#: ../src/main-window.c:4236
msgid "You can apply filters only on mailbox\n"
msgstr ""

#: ../src/main-window.c:4250
#, c-format
msgid "Removing duplicates failed: %s"
msgstr "Li oistaedje des messaedjes e dobe a fwait berwete: %s"

#: ../src/main-window.c:4470
#, c-format
msgid "Could not open trash: %s"
msgstr "Dji n' a savou drovi l' batch: %s"

#: ../src/main-window.c:4599
#, c-format
msgid "Balsa: %s (readonly)"
msgstr ""

#: ../src/main-window.c:4601
#, c-format
msgid "Balsa: %s"
msgstr "Balsa: %s"

#: ../src/main.c:212 ../src/main.c:261
msgid "Get new mail on startup"
msgstr ""

#: ../src/main.c:214 ../src/main.c:263
msgid "Compose a new email to EMAIL@ADDRESS"
msgstr "Sicrire on novea emile po ADRESSE@EMILE"

#: ../src/main.c:216 ../src/main.c:265
msgid "Attach file at PATH"
msgstr "Ataetchî fitchî"

#: ../src/main.c:218 ../src/main.c:268
msgid "Opens MAILBOXNAME"
msgstr "Droveye NODELBOESSE"

#: ../src/main.c:218 ../src/main.c:268
msgid "MAILBOXNAME"
msgstr "NODELBOESSE"

#: ../src/main.c:221 ../src/main.c:271
msgid "Opens first unread mailbox"
msgstr "Drovi li 1ire boesse avou des messaedjes nén léjhous"

#: ../src/main.c:224 ../src/main.c:274
msgid "Opens default Inbox on startup"
msgstr ""

#: ../src/main.c:227 ../src/main.c:277
msgid "Prints number unread and unsent messages"
msgstr ""

#: ../src/main.c:229 ../src/main.c:279
msgid "Debug POP3 connection"
msgstr ""

#: ../src/main.c:231 ../src/main.c:281
msgid "Debug IMAP connection"
msgstr ""

#: ../src/main.c:253
msgid "The Balsa E-Mail Client"
msgstr "Li cliyint d' emilaedje Balsa"

#: ../src/main.c:335 ../src/main.c:340 ../src/main.c:346 ../src/main.c:352
#: ../src/main.c:358
#, c-format
msgid "Balsa cannot open your \"%s\" mailbox."
msgstr "Balsa n' pout nén drovi vosse boesse ås emiles «%s»."

#: ../src/main.c:335
msgid "Inbox"
msgstr "Messaedjes en intrêye"

#: ../src/main.c:341
msgid "Outbox"
msgstr "Messaedjes e rexhowe"

#: ../src/main.c:347
msgid "Sentbox"
msgstr "Messaedjes evoyîs"

#: ../src/main.c:353
msgid "Draftbox"
msgstr "Brouyons"

#: ../src/main.c:358
msgid "Trash"
msgstr "Batch"

#: ../src/main.c:573
msgid "Compressing mail folders..."
msgstr ""

#: ../src/message-window.c:86
msgid "N_o Headers"
msgstr "_Nole tiestire"

#: ../src/message-window.c:88
msgid "_Selected Headers"
msgstr "_Tchoezeyes tiestires"

#: ../src/message-window.c:148
msgid "Reply to this message"
msgstr "Responde a ci messaedje chal"

#: ../src/message-window.c:154
msgid "Reply to all recipients of this message"
msgstr "Responde a tertos k' on rçuvou ci messaedje chal"

#: ../src/message-window.c:166
msgid "Forward this message as attachment"
msgstr "Ricassî ci messaedje chal come èn ataetchmint"

#: ../src/message-window.c:170
msgid "Forward inline..."
msgstr "Ricassî e _coir do messaedje..."

#: ../src/message-window.c:171
msgid "Forward this message inline"
msgstr ""
"Ricassî ci messaedje chal tot l' metant e coir do messaedje ki srè evoyî"

#: ../src/message-window.c:177
msgid "Next Part"
msgstr "Pårteye shuvante"

#: ../src/message-window.c:182
msgid "Previous Part"
msgstr "Pårteye di dvant"

#: ../src/message-window.c:188
msgid "Save current part in message"
msgstr "Schaper li pårteye do moumint en on messaedje"

#: ../src/message-window.c:200
msgid "_Next Message"
msgstr "Messaedje _shuvant"

#: ../src/message-window.c:200
msgid "Next message"
msgstr "Messaedje shuvant"

#: ../src/message-window.c:206
msgid "_Previous Message"
msgstr "Messaedje di _dvant"

#: ../src/message-window.c:229
msgid "Move the message to Trash mailbox"
msgstr "Evoyî l' messaedje al boesse ki sieve di batch"

#: ../src/message-window.c:244
msgid "M_ove"
msgstr "_Displaecî"

#: ../src/message-window.c:367
#, c-format
msgid "Message from %s: %s"
msgstr "Messaedje di %s: %s"

#: ../src/balsa-mime-widget-callbacks.c:50
#: ../src/balsa-mime-widget-callbacks.c:114
#, c-format
msgid "Could not create temporary file %s: %s"
msgstr "Dji n' a savou ahiver on fitchî timporaire %s: %s"

#: ../src/balsa-mime-widget-callbacks.c:140
#, c-format
msgid "Save %s MIME Part"
msgstr "Schaper li pårteye MIME %s"

#: ../src/balsa-mime-widget-callbacks.c:187
msgid "File already exists. Overwrite?"
msgstr "Li fitchî egzistêye dedja. El sipotchî?"

#: ../src/balsa-mime-widget-crypto.c:70
#, c-format
msgid ""
"This is an inline %s signed %s message part:\n"
"%s"
msgstr ""

#: ../src/balsa-mime-widget-crypto.c:72 ../src/print.c:1302
msgid "OpenPGP"
msgstr "OpenPGP"

#: ../src/balsa-mime-widget-crypto.c:89
msgid "_Run gpg to import this key"
msgstr "_Enonder gpg po-z abaguer cisse clé ci"

#: ../src/balsa-mime-widget-image.c:51 ../src/balsa-mime-widget-image.c:156
#, c-format
msgid "Error loading attached image: %s\n"
msgstr "Åk n' a nén stî tot tcherdjant l' imådje ataetcheye: %s\n"

#: ../src/balsa-mime-widget-message.c:162
#: ../src/balsa-mime-widget-message.c:175
#: ../src/balsa-mime-widget-message.c:203
#: ../src/balsa-mime-widget-message.c:256
msgid "Content Type: external-body\n"
msgstr ""

#: ../src/balsa-mime-widget-message.c:163
msgid "Access type: local-file\n"
msgstr "Sôre d' accès: fitchî locå\n"

#: ../src/balsa-mime-widget-message.c:164
#: ../src/balsa-mime-widget-message.c:211 ../src/balsa-mime-widget.c:241
#, c-format
msgid "File name: %s"
msgstr "No d' fitchî: %s"

#: ../src/balsa-mime-widget-message.c:176
msgid "Access type: URL\n"
msgstr "Sôre d' accès: hårdêye\n"

#: ../src/balsa-mime-widget-message.c:177
#, c-format
msgid "URL: %s"
msgstr "Hårdêye: %s"

#: ../src/balsa-mime-widget-message.c:204
#, c-format
msgid "Access type: %s\n"
msgstr "Sôre d' accès: %s\n"

#: ../src/balsa-mime-widget-message.c:208
#, c-format
msgid "FTP site: %s\n"
msgstr "Sierveu FTP: %s\n"

#: ../src/balsa-mime-widget-message.c:210
#, c-format
msgid "Directory: %s\n"
msgstr "Ridant: %s\n"

#: ../src/balsa-mime-widget-message.c:257
msgid "Access type: mail-server\n"
msgstr ""

#: ../src/balsa-mime-widget-message.c:258
#, c-format
msgid "Mail server: %s\n"
msgstr "Sierveu d' emilaedje: %s\n"

#: ../src/balsa-mime-widget-message.c:260
#, c-format
msgid "Subject: %s\n"
msgstr "Sudjet: %s\n"

#: ../src/balsa-mime-widget-message.c:277
msgid "Se_nd message to obtain this part"
msgstr ""

#: ../src/balsa-mime-widget-message.c:298 ../src/balsa-mime-widget-text.c:745
#: ../src/balsa-mime-widget-text.c:945 ../src/sendmsg-window.c:1757
#, c-format
msgid "Error showing %s: %s\n"
msgstr "Åk n' a nén stî tot mostrant %s: %s\n"

#: ../src/balsa-mime-widget-message.c:332 ../src/print.c:675
#, c-format
msgid "Could not get a part: %s"
msgstr "Dji n' a savou aveur ene pårteye: %s"

#: ../src/balsa-mime-widget-message.c:463
msgid "Reply..."
msgstr "Responde..."

#: ../src/balsa-mime-widget-message.c:469
msgid "Copy to folder..."
msgstr "Copyî el ridant..."

#: ../src/balsa-mime-widget-message.c:661 ../src/print.c:350
#: ../src/sendmsg-window.c:1102 ../src/sendmsg-window.c:3322
#: ../src/sendmsg-window.c:5240
msgid "Subject:"
msgstr "Sudjet:"

#: ../src/balsa-mime-widget-message.c:665 ../src/print.c:356
#: ../src/sendmsg-window.c:3318
msgid "Date:"
msgstr "Date:"

#: ../src/balsa-mime-widget-message.c:671 ../src/print.c:361
#: ../src/sendmsg-window.c:3329 ../src/store-address.c:305
msgid "From:"
msgstr "Di:"

#. Cannot edit the new "From:" header.
#. { N_("From:"),     G_STRUCT_OFFSET(BalsaSendmsg, from[1])},
#: ../src/balsa-mime-widget-message.c:678 ../src/sendmsg-window.c:1099
msgid "Reply-To:"
msgstr "Responde a:"

#: ../src/balsa-mime-widget-message.c:681 ../src/print.c:365
#: ../src/sendmsg-window.c:1096 ../src/sendmsg-window.c:3337
#: ../src/store-address.c:306
msgid "To:"
msgstr "A:"

#. cc:
#: ../src/balsa-mime-widget-message.c:682 ../src/print.c:366
#: ../src/sendmsg-window.c:1101 ../src/sendmsg-window.c:2825
#: ../src/sendmsg-window.c:3345 ../src/store-address.c:307
msgid "Cc:"
msgstr "Cc:"

#. bcc:
#: ../src/balsa-mime-widget-message.c:683 ../src/print.c:367
#: ../src/sendmsg-window.c:1100 ../src/sendmsg-window.c:2830
#: ../src/store-address.c:308
msgid "Bcc:"
msgstr "Bcc:"

#: ../src/balsa-mime-widget-message.c:687 ../src/print.c:368
msgid "Fcc:"
msgstr "Fcc:"

#: ../src/balsa-mime-widget-message.c:694 ../src/print.c:374
msgid "Disposition-Notification-To:"
msgstr ""

#: ../src/balsa-mime-widget-text.c:115
#, c-format
msgid "Could not save a text part: %s"
msgstr "Dji n' a savou schaper ene pårteye di tecse: %s"

#: ../src/balsa-mime-widget-text.c:150
#, c-format
msgid ""
"The message sent by %s with subject \"%s\" contains 8-bit characters, but no "
"header describing the used codeset (converted to %s)"
msgstr ""

#: ../src/balsa-mime-widget-text.c:468
msgid "Copy link"
msgstr "Copyî loyén"

#: ../src/balsa-mime-widget-text.c:473
msgid "Open link"
msgstr "Drovi loyén"

#: ../src/balsa-mime-widget-text.c:478
msgid "Send link..."
msgstr "Evoyî loyén..."

#: ../src/balsa-mime-widget-text.c:517
msgid "Highlight structured phrases"
msgstr ""

#: ../src/balsa-mime-widget-text.c:735
#, c-format
msgid "Calling URL %s..."
msgstr "Dji houke li hårdêye %s..."

#: ../src/balsa-mime-widget.c:260
#, c-format
msgid "Error reading message part: %s"
msgstr "Åk n' a nén stî tot lijhant li pårteye do messaedje: %s"

#: ../src/balsa-mime-widget.c:284
#, c-format
msgid "Type: %s (%s)"
msgstr "Sôre: %s (%s)"

#: ../src/balsa-mime-widget.c:287
#, c-format
msgid "Content Type: %s"
msgstr "Sôre di contnou: %s"

#: ../src/balsa-mime-widget.c:301
msgid "No open or view action defined in GNOME MIME for this content type"
msgstr ""

#: ../src/balsa-mime-widget.c:307
msgid "S_ave part"
msgstr "Sch_aper pårteye"

#: ../src/balsa-mime-widget.c:329 ../src/balsa-mime-widget.c:353
#, c-format
msgid "View _part with %s"
msgstr "Vey li _pårteye avou %s"

#: ../src/pref-manager.c:385
msgid "While Retrieving Messages"
msgstr ""

#: ../src/pref-manager.c:386
msgid "Until Closed"
msgstr ""

#: ../src/pref-manager.c:392
msgid "Fast"
msgstr "Rade"

#: ../src/pref-manager.c:393
msgid "Normal"
msgstr "Normå"

#: ../src/pref-manager.c:394
msgid "Bad Spellers"
msgstr "Måvas coridjeus"

#: ../src/pref-manager.c:400
msgid "Message number"
msgstr "Limero do messaedje"

#: ../src/pref-manager.c:404
msgid "Sender"
msgstr "Evoyeu"

#: ../src/pref-manager.c:408
msgid "Flat"
msgstr ""

#: ../src/pref-manager.c:410
msgid "JWZ"
msgstr "JWZ"

#. must NOT be modal
#: ../src/pref-manager.c:508
msgid "Balsa Preferences"
msgstr "Preferinces di Balsa"

#: ../src/pref-manager.c:557
msgid "Mail Options"
msgstr "Tchuzes d' emilaedje"

#: ../src/pref-manager.c:559
msgid "Display Options"
msgstr "Tchuzes di håynaedje"

#: ../src/pref-manager.c:561 ../src/pref-manager.c:2717
msgid "Address Books"
msgstr "Calpins d' adresses"

#: ../src/pref-manager.c:565 ../src/toolbar-factory.c:120
msgid "Spelling"
msgstr "Coridjî"

#: ../src/pref-manager.c:569
msgid "Startup"
msgstr "Enondaedje"

#: ../src/pref-manager.c:571 ../src/pref-manager.c:2505
msgid "Miscellaneous"
msgstr "Totes sôres"

#: ../src/pref-manager.c:1315
#, c-format
msgid "%s (default)"
msgstr "%s (prémetou)"

#: ../src/pref-manager.c:1575
msgid "Remote Mailbox Servers"
msgstr "Sierveus di boesses å lon"

#: ../src/pref-manager.c:1596 ../src/pref-manager.c:2738
#: ../src/sendmsg-window.c:2909
msgid "Type"
msgstr "Sôre"

#: ../src/pref-manager.c:1604
msgid "Mailbox Name"
msgstr "No del boesse ås emiles"

#: ../src/pref-manager.c:1618 ../src/pref-manager.c:1707
#: ../src/pref-manager.c:2773
msgid "_Modify"
msgstr "_Candjî"

#: ../src/pref-manager.c:1632
msgid "Local Mail Directory"
msgstr "Ridant di messaedjes locå"

#: ../src/pref-manager.c:1635 ../src/pref-manager.c:1643
msgid "Select your local mail directory"
msgstr "Tchoezixhoz vosse ridant des emiles locås"

#: ../src/pref-manager.c:1671
msgid "Outgoing Mail Servers"
msgstr "Sierveus d' emilaedje e rexhowe"

#: ../src/pref-manager.c:1693
msgid "Server Name"
msgstr "No do sierveu"

#: ../src/pref-manager.c:1733
msgid "Mail Servers"
msgstr "Sierveus d' emilaedje"

#: ../src/pref-manager.c:1735
msgid "Incoming"
msgstr "Intrêye"

#: ../src/pref-manager.c:1737
msgid "Outgoing"
msgstr "Rexhowe"

#: ../src/pref-manager.c:1762
msgid "Checking"
msgstr "Cwerant"

#: ../src/pref-manager.c:1767
msgid "_Check mail automatically every"
msgstr "_Cweri après des noveas emiles totes les"

#: ../src/pref-manager.c:1778 ../src/pref-manager.c:2528
#: ../src/pref-manager.c:2588
msgid "minutes"
msgstr "munutes"

#: ../src/pref-manager.c:1784
msgid "Check _IMAP mailboxes"
msgstr "Cweri ezès boesses _IMAP"

#: ../src/pref-manager.c:1790
msgid "Check INBOX _only"
msgstr "Cweri el boesse d' intrêye _seulmint"

#: ../src/pref-manager.c:1795
msgid "Display message if new mail has arrived"
msgstr "Håyner l' messaedje cwand on novea emile arive"

#: ../src/pref-manager.c:1800
msgid "Do background check quietly (no messages in status bar)"
msgstr ""

#: ../src/pref-manager.c:1804
msgid "_POP message size limit:"
msgstr ""

#. Quoted text regular expression
#. and RFC2646-style flowed text
#: ../src/pref-manager.c:1831
msgid "Quoted and Flowed Text"
msgstr ""

#: ../src/pref-manager.c:1835
msgid ""
"Quoted Text\n"
"Regular Expression:"
msgstr ""

#: ../src/pref-manager.c:1843
msgid "Wrap Text at"
msgstr ""

#: ../src/pref-manager.c:1855 ../src/pref-manager.c:2022
msgid "characters"
msgstr "caracteres"

#. handling of multipart/alternative
#: ../src/pref-manager.c:1870
msgid "Display of Multipart/Alternative Parts"
msgstr ""

#: ../src/pref-manager.c:1873
msgid "Prefer text/plain over html"
msgstr "Preferer li tecse simpe (text/plain) purade ki l' html"

#: ../src/pref-manager.c:1889
msgid "National (8-bit) characters in broken messages without codeset header"
msgstr "Les caracteres 8 bits dins les tiestires sins ecôdaedje elzès fåt"

#: ../src/pref-manager.c:1896
msgid "display as \"?\""
msgstr "håyner come «?»"

#: ../src/pref-manager.c:1905
msgid "display in codeset"
msgstr "håyner e l' ecôdaedje"

#. How to handle received MDN requests
#: ../src/pref-manager.c:1935
msgid "Message Disposition Notification Requests"
msgstr ""

#: ../src/pref-manager.c:1937
msgid ""
"When I receive a message whose sender requested a Message Disposition "
"Notification (MDN), send it if:"
msgstr ""

#: ../src/pref-manager.c:1949
msgid ""
"The message header looks clean\n"
"(the notify-to address is the return path,\n"
"and I am in the \"To:\" or \"Cc:\" list)."
msgstr ""

#: ../src/pref-manager.c:1966
msgid "The message header looks suspicious."
msgstr ""

#: ../src/pref-manager.c:2003
msgid "Word Wrap"
msgstr ""

#: ../src/pref-manager.c:2008
msgid "Wrap Outgoing Text at"
msgstr ""

#: ../src/pref-manager.c:2036
msgid "Other Options"
msgstr "Ôtès tchuzes"

#: ../src/pref-manager.c:2041
msgid "Reply Prefix:"
msgstr "Betchete di response:"

#: ../src/pref-manager.c:2044
msgid "Automatically quote original when replying"
msgstr ""

#: ../src/pref-manager.c:2047
msgid "Forward a mail as attachment instead of quoting it"
msgstr ""

#: ../src/pref-manager.c:2050
msgid "Copy outgoing messages to sentbox"
msgstr "Copiant les messaedjes evoyîs viè l' boesse des evoyîs"

#: ../src/pref-manager.c:2052
msgid "Send button always queues outgoing mail in outbox"
msgstr ""

#: ../src/pref-manager.c:2055
msgid "Edit headers in external editor"
msgstr ""

#: ../src/pref-manager.c:2057
msgid "Include HTML parts as text when replying or forwarding"
msgstr ""

#: ../src/pref-manager.c:2074
msgid "Layout"
msgstr "Adjinçmint"

#: ../src/pref-manager.c:2076
msgid "Sort and Thread"
msgstr ""

#: ../src/pref-manager.c:2078
msgid "Message"
msgstr "Messaedje"

#: ../src/pref-manager.c:2080
msgid "Colors"
msgstr "Coleurs"

#: ../src/pref-manager.c:2082 ../src/pref-manager.c:2170
msgid "Format"
msgstr "Cogne"

#: ../src/pref-manager.c:2084
msgid "Status Messages"
msgstr "Messaedjes so l' estat"

#: ../src/pref-manager.c:2109
msgid "Main Window"
msgstr "Mwaisse purnea"

#: ../src/pref-manager.c:2112
msgid "Use preview pane"
msgstr ""

#: ../src/pref-manager.c:2114
msgid "Show mailbox statistics in left pane"
msgstr ""

#: ../src/pref-manager.c:2116
msgid "Use alternative main window layout"
msgstr ""

#: ../src/pref-manager.c:2118
msgid "Automatically view message when mailbox opened"
msgstr ""

#: ../src/pref-manager.c:2124
msgid "PageUp/PageDown keys scroll text by"
msgstr ""

#: ../src/pref-manager.c:2135
msgid "percent"
msgstr ""

#: ../src/pref-manager.c:2150
msgid "Display Progress Dialog"
msgstr ""

#: ../src/pref-manager.c:2175
msgid "Date encoding (for strftime):"
msgstr "Cogne del date (po strftime):"

#: ../src/pref-manager.c:2177
msgid "Selected headers:"
msgstr "Tchoezeyès tiestires:"

#: ../src/pref-manager.c:2199
msgid "Information Messages"
msgstr "Messaedjes d' informåcion"

#: ../src/pref-manager.c:2204
msgid "Information Messages:"
msgstr "Messaedjes d' informåcion:"

#: ../src/pref-manager.c:2208
msgid "Warning Messages:"
msgstr "Messaedjes d' adviertixhmint:"

#: ../src/pref-manager.c:2212
msgid "Error Messages:"
msgstr "Messaedjes d' aroke:"

#: ../src/pref-manager.c:2216
msgid "Fatal Error Messages:"
msgstr "Messaedjes d' arokes moirts:"

#: ../src/pref-manager.c:2220
msgid "Debug Messages:"
msgstr "Messaedjes di disbugaedje:"

#: ../src/pref-manager.c:2246
msgid "Message Colors"
msgstr "Coleurs pol messaedje"

#: ../src/pref-manager.c:2251
#, c-format
msgid "Quote level %d color"
msgstr ""

#: ../src/pref-manager.c:2264
msgid "Link Color"
msgstr "Coleur po les loyéns"

#: ../src/pref-manager.c:2266
msgid "Hyperlink color"
msgstr ""

#: ../src/pref-manager.c:2277
msgid "Composition Window"
msgstr "Purnea d' aspougnaedje"

#: ../src/pref-manager.c:2281
msgid "Invalid or incomplete address label color"
msgstr ""

#: ../src/pref-manager.c:2304
msgid "Fonts"
msgstr "Fontes"

#: ../src/pref-manager.c:2308
msgid "Message Font:"
msgstr "Fonte pol coir do messaedje:"

#: ../src/pref-manager.c:2316
msgid "Subject Font:"
msgstr "Fonte pol sudjet:"

#: ../src/pref-manager.c:2354
msgid "Sorting and Threading"
msgstr ""

#: ../src/pref-manager.c:2358
msgid "Default sort column:"
msgstr "Prémetowe colone pol relijhaedje:"

#: ../src/pref-manager.c:2362
msgid "Default threading style:"
msgstr ""

#: ../src/pref-manager.c:2367
msgid "Expand threads on open"
msgstr ""

#: ../src/pref-manager.c:2442
msgid "Pspell Settings"
msgstr "Apontiaedje di pspell"

#: ../src/pref-manager.c:2448
msgid "Spell Check Module"
msgstr "Module pol coridjaedje"

#: ../src/pref-manager.c:2454
msgid "Suggestion Level"
msgstr ""

#. do the ignore length
#: ../src/pref-manager.c:2459
msgid "Ignore words shorter than"
msgstr ""

#: ../src/pref-manager.c:2477
msgid "Miscellaneous Spelling Settings"
msgstr "Apontiaedje di totes sôres pol coridjrece"

#: ../src/pref-manager.c:2479
msgid "Check signature"
msgstr ""

#: ../src/pref-manager.c:2480
msgid "Check quoted"
msgstr ""

#: ../src/pref-manager.c:2507
msgid "Debug"
msgstr "Disbugaedje"

#: ../src/pref-manager.c:2508
msgid "Empty Trash on exit"
msgstr "Vudî l' batch e cwitant"

#: ../src/pref-manager.c:2514
msgid "Close mailbox if unused more than"
msgstr ""

#: ../src/pref-manager.c:2543
msgid "Deleting Messages"
msgstr "Disfaçant messaedjes"

#. Translators: this used to be "using Mailbox -> Hide messages";
#. * the UTF-8 string for the right-arrow symbol is broken out to
#. * avoid msgconv problems.
#: ../src/pref-manager.c:2548
#, c-format
msgid ""
"The following setting is global, but may be overridden for the selected "
"mailbox using Mailbox %s Hide messages:"
msgstr ""

#: ../src/pref-manager.c:2560
msgid "Hide messages marked as deleted"
msgstr ""

#: ../src/pref-manager.c:2562
msgid "The following settings are global:"
msgstr ""

#: ../src/pref-manager.c:2568
msgid "Expunge deleted messages when mailbox is closed"
msgstr ""

#: ../src/pref-manager.c:2575
msgid "...and if unused more than"
msgstr ""

#: ../src/pref-manager.c:2600
msgid "Message Window"
msgstr "Purnea di messaedje"

#: ../src/pref-manager.c:2605
msgid "After moving a message:"
msgstr "Après aveur displaecî on messaedje:"

#: ../src/pref-manager.c:2634
msgid "Startup Options"
msgstr "Tchuzes d' enondaedje"

#: ../src/pref-manager.c:2637
msgid "Open Inbox upon startup"
msgstr "Drovi ezès messaedje en intrêye a l' enondaedje"

#: ../src/pref-manager.c:2639
msgid "Check mail upon startup"
msgstr "Cweri après des noveas emiles a l' enondaedje"

#: ../src/pref-manager.c:2641
msgid "Remember open mailboxes between sessions"
msgstr "Si rmimbrer des drovowès boesses inte les sessions"

#: ../src/pref-manager.c:2655
msgid "Folder Scanning"
msgstr ""

#: ../src/pref-manager.c:2657
msgid ""
"Choose depth 1 for fast startup; this defers scanning some folders.  To see "
"more of the tree at startup, choose a greater depth."
msgstr ""

#: ../src/pref-manager.c:2668
msgid "Scan local folders to depth"
msgstr ""

#: ../src/pref-manager.c:2681
msgid "Scan IMAP folders to depth"
msgstr ""

#: ../src/pref-manager.c:2746
msgid "Address Book Name"
msgstr "No do calpin d' adresses"

#: ../src/pref-manager.c:2754
msgid "Auto-complete"
msgstr ""

#: ../src/pref-manager.c:2779
msgid "_Set as default"
msgstr "_Defini come prémetou"

#: ../src/pref-manager.c:3089
msgid "Remote POP3 mailbox..."
msgstr "Boesse POP3 å lon..."

#: ../src/pref-manager.c:3215
msgid "Show nothing"
msgstr "Èn rén mostrer"

#: ../src/pref-manager.c:3217
msgid "Show dialog"
msgstr "Mostrer èn aspitant purnea"

#: ../src/pref-manager.c:3219
msgid "Show in list"
msgstr "Mostrer el djivêye"

#: ../src/pref-manager.c:3221
msgid "Show in status bar"
msgstr "Mostrer sol bår d' estat"

#: ../src/pref-manager.c:3223
msgid "Print to console"
msgstr "Håyner sol conzôle"

#: ../src/pref-manager.c:3234
msgid "Ask me"
msgstr "Mi dmander"

#: ../src/pref-manager.c:3311
msgid "Show next unread message"
msgstr "Mostrer l' shuvant messaedje nén léjhou"

#: ../src/pref-manager.c:3312
msgid "Show next message"
msgstr "Mostrer l' messaedje shuvant"

#: ../src/pref-manager.c:3313
msgid "Close message window"
msgstr "Clôre li purnea d' messaedje"

#: ../src/pref-manager.c:3351
#, c-format
msgid "Error displaying link_id %s: %s\n"
msgstr "Åk n' a nén stî tot håynant l' idintifiant do loyén (link_id) %s: %s\n"

#: ../src/print.c:246 ../src/print.c:727
#, c-format
msgid "Page: %i/%i"
msgstr "Pådje: %i/%i"

#: ../src/print.c:662
msgid ""
"Preparing an HTML part, which must start on a new page.\n"
"Print this part?"
msgstr ""

#. gather some info about this part
#. four fields, one terminator
#: ../src/print.c:981
msgid "Type:"
msgstr "Sôre:"

#: ../src/print.c:984
msgid "File name:"
msgstr "No do fitchî:"

#: ../src/print.c:1300
#, c-format
msgid "This is an inline %s signed %s message part:"
msgstr ""

#: ../src/print.c:1547
msgid "Font available for printing"
msgstr "Fonte disponibe po-z imprimer"

#: ../src/print.c:1553
#, c-format
msgid "Font <b>not</b> available for printing. Closest: %s"
msgstr ""
"Li fonte n' est <b>nén</b> disponibe po-z imprimer. Li pus rshonnante: %s"

#: ../src/print.c:1566
msgid "Select Font"
msgstr "Tchoezi fonte"

#: ../src/print.c:1599
msgid "Change..."
msgstr "Candjî..."

#: ../src/print.c:1634
msgid "Print message"
msgstr "Imprimer l' messaedje"

#. create a 2nd notebook page for the fonts
#: ../src/print.c:1645
msgid "_Fonts"
msgstr "_Fontes"

#: ../src/print.c:1648
msgid "Header font"
msgstr "Fonte pol tiestire"

#: ../src/print.c:1650
msgid "Body font"
msgstr "Fonte pol coir do messaedje"

#: ../src/print.c:1652
msgid "Footer font"
msgstr "Fonte pol pînote"

#. highlight cited stuff
#: ../src/print.c:1656
msgid "Highlight cited text"
msgstr ""

#: ../src/print.c:1660
msgid "_Enable highlighting of cited text"
msgstr ""

#: ../src/print.c:1686
#, c-format
msgid ""
"Balsa could not find font \"%s\".\n"
"Use the \"Fonts\" page on the \"Print message\" dialog to change it."
msgstr ""

#: ../src/print.c:1787
msgid "Balsa: message print preview"
msgstr ""

#: ../src/save-restore.c:613
msgid "Error during filters loading: "
msgstr ""

#: ../src/save-restore.c:615
#, c-format
msgid ""
"Error during filters loading: %s\n"
"Filters may not be correct."
msgstr ""

#: ../src/save-restore.c:730
msgid "The option not to recognize \"format=flowed\" text has been removed."
msgstr ""

#: ../src/save-restore.c:991
msgid ""
"The option not to send \"format=flowed\" text is now on the Options menu of "
"the compose window."
msgstr ""

#: ../src/save-restore.c:1023
msgid ""
"The option to request a MDN is now on the Options menu of the compose window."
msgstr ""

#: ../src/save-restore.c:2038
msgid "Error opening GConf database\n"
msgstr "Åk n' a nén stî tot drovant l' båze di dnêyes GConf\n"

#: ../src/save-restore.c:2046 ../src/save-restore.c:2057
#, c-format
msgid "Error setting GConf field: %s\n"
msgstr ""

#. Translators: please use the initial letter of each language as
#. * its accelerator; this is a long list, and unique accelerators
#. * cannot be found.
#: ../src/sendmsg-window.c:237
msgid "_Brazilian Portuguese"
msgstr "_Portuguès do Braezi"

#: ../src/sendmsg-window.c:238
msgid "_Catalan"
msgstr "_Catalan"

#: ../src/sendmsg-window.c:239
msgid "_Chinese Simplified"
msgstr "_Chinwès simplifyî"

#: ../src/sendmsg-window.c:240
msgid "_Chinese Traditional"
msgstr "_Chinwès tradicionel"

#: ../src/sendmsg-window.c:241
msgid "_Czech"
msgstr "_Tcheke"

#: ../src/sendmsg-window.c:242
msgid "_Danish"
msgstr "_Daenwès"

#: ../src/sendmsg-window.c:243
msgid "_Dutch"
msgstr "_Neyerlandès"

#: ../src/sendmsg-window.c:244
msgid "_English (American)"
msgstr "_Inglès (USA)"

#: ../src/sendmsg-window.c:245
msgid "_English (British)"
msgstr "_Inglès (GB)"

#: ../src/sendmsg-window.c:246
msgid "_Esperanto"
msgstr "_Esperanto"

#: ../src/sendmsg-window.c:247
msgid "_Estonian"
msgstr "_Estonyin"

#: ../src/sendmsg-window.c:248
msgid "_Finnish"
msgstr "_Finwès"

#: ../src/sendmsg-window.c:249
msgid "_French"
msgstr "_Francès"

#: ../src/sendmsg-window.c:250
msgid "_German"
msgstr "_Almand"

#: ../src/sendmsg-window.c:251
msgid "_Greek"
msgstr "_Grek"

#: ../src/sendmsg-window.c:252
msgid "_Hebrew"
msgstr "_Ebreu"

#: ../src/sendmsg-window.c:253
msgid "_Hungarian"
msgstr "_Hongrwès"

#: ../src/sendmsg-window.c:254
msgid "_Italian"
msgstr "_Itålyin"

#: ../src/sendmsg-window.c:255
msgid "_Japanese (JIS)"
msgstr "D_japonès (JIS)"

#: ../src/sendmsg-window.c:256
msgid "_Korean"
msgstr "_Corêyin"

#: ../src/sendmsg-window.c:257
msgid "_Latvian"
msgstr "_Letonyin"

#: ../src/sendmsg-window.c:258
msgid "_Lithuanian"
msgstr "_Litwanyin"

#: ../src/sendmsg-window.c:259
msgid "_Norwegian"
msgstr "_Norvedjyin"

#: ../src/sendmsg-window.c:260
msgid "_Polish"
msgstr "_Polonès"

#: ../src/sendmsg-window.c:261
msgid "_Portugese"
msgstr "_Portuguès"

#: ../src/sendmsg-window.c:262
msgid "_Romanian"
msgstr "_Roumin"

#: ../src/sendmsg-window.c:263
msgid "_Russian (ISO)"
msgstr "_Rûsse (ISO)"

#: ../src/sendmsg-window.c:264
msgid "_Russian (KOI)"
msgstr "_Rûsse (KOI)"

#: ../src/sendmsg-window.c:265
msgid "_Serbian"
msgstr "_Siebe"

#: ../src/sendmsg-window.c:266
msgid "_Serbian (Latin)"
msgstr "_Siebe (Latén)"

#: ../src/sendmsg-window.c:267
msgid "_Slovak"
msgstr "_Slovake"

#: ../src/sendmsg-window.c:268
msgid "_Spanish"
msgstr "_Castiyan"

#: ../src/sendmsg-window.c:269
msgid "_Swedish"
msgstr "_Suwedwès"

#: ../src/sendmsg-window.c:270
msgid "_Turkish"
msgstr "_Turk"

#: ../src/sendmsg-window.c:271
msgid "_Ukrainian"
msgstr "_Oucrinnyin"

#: ../src/sendmsg-window.c:272
msgid "_Generic UTF-8"
msgstr "_Unicôde djenerike (UTF-8)"

#: ../src/sendmsg-window.c:296
msgid "_GnuPG uses MIME mode"
msgstr "_GnuPG eploye li môde MIME"

#: ../src/sendmsg-window.c:302
msgid "_GnuPG uses old OpenPGP mode"
msgstr "_GnuPG eploye li vî môde OpenPGP"

#: ../src/sendmsg-window.c:309
msgid "_S/MIME mode (GpgSM)"
msgstr "Môde _S/MIME (GpgSM)"

#: ../src/sendmsg-window.c:324 ../src/sendmsg-window.c:502
msgid "_Include File..."
msgstr "S_ititchî on fitchî..."

#: ../src/sendmsg-window.c:327 ../src/sendmsg-window.c:515
msgid "_Attach File..."
msgstr "_Ataetchî on fitchî..."

#: ../src/sendmsg-window.c:330 ../src/sendmsg-window.c:504
msgid "I_nclude Message(s)"
msgstr "Si_titchî messaedje(s)"

#: ../src/sendmsg-window.c:333 ../src/sendmsg-window.c:507
msgid "Attach _Message(s)"
msgstr "Ataetchî _messaedje(s)"

#: ../src/sendmsg-window.c:339 ../src/sendmsg-window.c:532
msgid "Sen_d"
msgstr "E_voyî"

#: ../src/sendmsg-window.c:340 ../src/sendmsg-window.c:533
#: ../src/toolbar-factory.c:111
msgid "Send this message"
msgstr "Evoyî ci messaedje chal"

#: ../src/sendmsg-window.c:344
msgid "_Queue"
msgstr "El _caweye"

#: ../src/sendmsg-window.c:345 ../src/sendmsg-window.c:538
msgid "Queue this message in Outbox for sending"
msgstr "Mete ci messaedje chal el caweye po l' evoyî pus tård"

#: ../src/sendmsg-window.c:349
msgid "_Postpone"
msgstr "_Leyî po pus tård"

#: ../src/sendmsg-window.c:352 ../src/sendmsg-window.c:519
msgid "_Save"
msgstr "_Schaper"

#: ../src/sendmsg-window.c:353 ../src/sendmsg-window.c:520
msgid "Save this message"
msgstr "Schaper ci messaedje chal"

#: ../src/sendmsg-window.c:357 ../src/sendmsg-window.c:524
msgid "Print the edited message"
msgstr "Rexhe li messaedje sol sicrirece"

#: ../src/sendmsg-window.c:386 ../src/sendmsg-window.c:549
msgid "_Wrap Body"
msgstr ""

#: ../src/sendmsg-window.c:390 ../src/sendmsg-window.c:553
msgid "_Reflow Selected Text"
msgstr ""

#: ../src/sendmsg-window.c:395 ../src/sendmsg-window.c:581
msgid "Insert Si_gnature"
msgstr "Sititchî _sinateure"

#: ../src/sendmsg-window.c:399 ../src/sendmsg-window.c:557
msgid "_Quote Message(s)"
msgstr ""

#: ../src/sendmsg-window.c:405 ../src/sendmsg-window.c:409
#: ../src/sendmsg-window.c:633
msgid "C_heck Spelling"
msgstr "_Verifyî l' ortografeye"

#: ../src/sendmsg-window.c:406 ../src/sendmsg-window.c:410
#: ../src/sendmsg-window.c:635
msgid "Check the spelling of the message"
msgstr "Verifyî l' ortografeye do messaedje"

#: ../src/sendmsg-window.c:416 ../src/sendmsg-window.c:641
msgid "Select _Identity..."
msgstr "Tchoezi ene _idintité..."

#: ../src/sendmsg-window.c:417 ../src/sendmsg-window.c:642
msgid "Select the Identity to use for the message"
msgstr "Tchoezi l' idintité a-z eployî pol messaedje"

#: ../src/sendmsg-window.c:422
msgid "_Edit with Gnome-Editor"
msgstr ""

#: ../src/sendmsg-window.c:423
msgid "Edit the current message with the default Gnome editor"
msgstr ""

#: ../src/sendmsg-window.c:435 ../src/sendmsg-window.c:594
msgid "Fr_om"
msgstr ""

#: ../src/sendmsg-window.c:437 ../src/sendmsg-window.c:596
msgid "_Cc"
msgstr "_Cc"

#: ../src/sendmsg-window.c:439 ../src/sendmsg-window.c:598
msgid "_Bcc"
msgstr "_Bcc"

#: ../src/sendmsg-window.c:441 ../src/sendmsg-window.c:600
msgid "_Fcc"
msgstr "_Fcc"

#: ../src/sendmsg-window.c:443
msgid "_Reply To"
msgstr ""

#: ../src/sendmsg-window.c:449 ../src/sendmsg-window.c:646
msgid "_Request Disposition Notification"
msgstr ""

#: ../src/sendmsg-window.c:452 ../src/sendmsg-window.c:612
msgid "_Format = Flowed"
msgstr ""

#: ../src/sendmsg-window.c:457 ../src/sendmsg-window.c:617
msgid "_Sign Message"
msgstr "_Siner l' messaedje"

#: ../src/sendmsg-window.c:458 ../src/sendmsg-window.c:618
msgid "signs the message using GnuPG"
msgstr "Siner l' messaedje avou GnuPG"

#: ../src/sendmsg-window.c:461 ../src/sendmsg-window.c:621
msgid "_Encrypt Message"
msgstr "_Ecripter l' messaedje"

#: ../src/sendmsg-window.c:462 ../src/sendmsg-window.c:622
msgid "signs the message using GnuPG for all To: and CC: recipients"
msgstr ""

#: ../src/sendmsg-window.c:482 ../src/sendmsg-window.c:662
msgid "_Show"
msgstr "_Vey"

#: ../src/sendmsg-window.c:484 ../src/sendmsg-window.c:639
msgid "_Language"
msgstr "_Lingaedjes"

#: ../src/sendmsg-window.c:486
msgid "_Options"
msgstr "_Tchuzes"

#: ../src/sendmsg-window.c:528
msgid "Sa_ve and Close"
msgstr ""

#: ../src/sendmsg-window.c:537
msgid "Send _Later"
msgstr "Evoyî pus _tård"

#: ../src/sendmsg-window.c:631
msgid "Toggle Spell C_hecker"
msgstr "Discandjî l' c_oridjrece"

#: ../src/sendmsg-window.c:692
msgid "Attachment"
msgstr "Ataetchmint"

#: ../src/sendmsg-window.c:692
msgid "Inline"
msgstr ""

#: ../src/sendmsg-window.c:692
msgid "Reference"
msgstr "Referince"

#: ../src/sendmsg-window.c:923
#, c-format
msgid ""
"The message to '%s' is modified.\n"
"Save message to Draftbox?"
msgstr ""
"Li messaedje po «%s» a stî candjî.\n"
"El schaper dins l' boesse di brouyons?"

#: ../src/sendmsg-window.c:1244
msgid "Gnome editor is not defined in your preferred applications."
msgstr ""

#: ../src/sendmsg-window.c:1295
msgid "Select Identity"
msgstr "Tchoezi idintité"

#: ../src/sendmsg-window.c:1672
#, c-format
msgid ""
"Saying yes will not send the file `%s' itself, but just a MIME message/"
"external-body reference.  Note that the recipient must have proper "
"permissions to see the `real' file.\n"
"\n"
"Do you really want to attach this file as reference?"
msgstr ""

#: ../src/sendmsg-window.c:1683
msgid "Attach as Reference?"
msgstr ""

#: ../src/sendmsg-window.c:1796
msgid "Choose charset"
msgstr "Tchoezixhoz l' ecôdaedje"

#: ../src/sendmsg-window.c:1803
#, c-format
msgid ""
"File\n"
"%s\n"
"is not encoded in US-ASCII or UTF-8.\n"
"Please choose the charset used to encode the file."
msgstr ""
"Li fitchî\n"
"%s\n"
"n' est nén ecôdé en ASCII nerén en UTF-8.\n"
"Tchoezixhoz l' ecôdaedje do fitchî s' i vs plait."

#: ../src/sendmsg-window.c:1819
msgid "Attach as MIME type:"
msgstr ""

#: ../src/sendmsg-window.c:1875
#, c-format
msgid "Character set for file %s changed from \"%s\" to \"%s\"."
msgstr ""

#: ../src/sendmsg-window.c:1918 ../src/sendmsg-window.c:5244
msgid "(no subject)"
msgstr "(nou sudjet)"

#: ../src/sendmsg-window.c:2004
msgid "forwarded message"
msgstr "redjiblé messaedje"

#: ../src/sendmsg-window.c:2009
#, c-format
msgid "Message from %s, subject: \"%s\""
msgstr "Messaedje di %s, sudjet: «%s»"

#: ../src/sendmsg-window.c:2027
#, c-format
msgid "Error converting \"%s\" to UTF-8: %s\n"
msgstr "Åk n' a nén stî totcviersant «%s» viè UTF-8: %s\n"

#: ../src/sendmsg-window.c:2097 ../src/sendmsg-window.c:2168
msgid "Remove"
msgstr "Oister"

#: ../src/sendmsg-window.c:2180
msgid "Open..."
msgstr "Drovi..."

#: ../src/sendmsg-window.c:2192
msgid "(URL)"
msgstr ""

#: ../src/sendmsg-window.c:2213
#, c-format
msgid "Cannot get info on file '%s': %s"
msgstr "Dji n' sai aveur des informåcions sol fitchî «%s»: %s"

#: ../src/sendmsg-window.c:2218
#, c-format
msgid "Attachment %s is not a regular file."
msgstr ""

#: ../src/sendmsg-window.c:2221
#, c-format
msgid "File %s cannot be read\n"
msgstr "Li fitchî %s n' pout nén esse léjhou\n"

#: ../src/sendmsg-window.c:2270
msgid "Attach file"
msgstr "Ataetchî fitchî"

#: ../src/sendmsg-window.c:2357 ../src/sendmsg-window.c:2466
#: ../src/sendmsg-window.c:4448
msgid ""
"Attaching message failed.\n"
"Possible reason: not enough temporary space"
msgstr ""

#: ../src/sendmsg-window.c:2686
msgid "F_rom:"
msgstr "_Di:"

#. Subject:
#: ../src/sendmsg-window.c:2821
msgid "S_ubject:"
msgstr "S_udjet:"

#. fcc: mailbox folder where the message copy will be written to
#: ../src/sendmsg-window.c:2835
msgid "F_cc:"
msgstr "_Fcc:"

#. Reply To:
#: ../src/sendmsg-window.c:2866
msgid "_Reply To:"
msgstr "_Responde a:"

#. Attachment list
#: ../src/sendmsg-window.c:2871
msgid "_Attachments:"
msgstr "_Ataetchmints:"

#: ../src/sendmsg-window.c:2916
msgid "Mode"
msgstr "Môde"

#: ../src/sendmsg-window.c:2939
msgid "Description"
msgstr "Discrijhaedje"

#: ../src/sendmsg-window.c:3249
#, c-format
msgid "Could not save attachment: %s"
msgstr "Dji n' a savou schaper l' ataetchmint: %s"

#: ../src/sendmsg-window.c:3270
msgid "No subject"
msgstr "Nou sudjet"

#: ../src/sendmsg-window.c:3303
msgid "you"
msgstr "vosse"

#: ../src/sendmsg-window.c:3312
#, c-format
msgid "------forwarded message from %s------\n"
msgstr "------messaedje ricassî da %s------\n"

#: ../src/sendmsg-window.c:3349
#, c-format
msgid "Message-ID: %s\n"
msgstr "ID do messaedje: %s\n"

#: ../src/sendmsg-window.c:3355
msgid "References:"
msgstr "Referinces: "

#: ../src/sendmsg-window.c:3366
#, c-format
msgid "On %s, %s wrote:\n"
msgstr "Li %s, %s scrijha:\n"

#: ../src/sendmsg-window.c:3368
#, c-format
msgid "%s wrote:\n"
msgstr "%s scrijha:\n"

#: ../src/sendmsg-window.c:3472
msgid "No signature found!"
msgstr "Nole sinateure di trovêye!"

#: ../src/sendmsg-window.c:3641
msgid "Could not save message."
msgstr "Dji n' a savou schaper l' messaedje."

#: ../src/sendmsg-window.c:3648
#, c-format
msgid "Could not open draftbox: %s"
msgstr "Dji n' a savou drovi l' boesse di brouyons: %s"

#: ../src/sendmsg-window.c:3669
msgid "Message saved."
msgstr "Messaedje schapé."

#: ../src/sendmsg-window.c:4644
#, c-format
msgid "Error executing signature generator %s"
msgstr ""

#: ../src/sendmsg-window.c:4656
#, c-format
msgid "Cannot open signature file '%s' for reading"
msgstr "Dji n' a savou drovi li fitchî d' sinateure «%s» pol lére"

#: ../src/sendmsg-window.c:4666
#, c-format
msgid "Error reading signature from %s"
msgstr "Åk n' a nén stî tot lijhant l' sinateure di %s"

#: ../src/sendmsg-window.c:4670
#, c-format
msgid "Signature in %s is not a UTF-8 text."
msgstr "Li sinateure e %s n' est nén do tecse UTF-8"

#: ../src/sendmsg-window.c:4733
#, c-format
msgid "Could not open the file %s.\n"
msgstr "Dji n' a savou drovi l' fitchî %s.\n"

#: ../src/sendmsg-window.c:4789
msgid "Include file"
msgstr "Sititchî fitchî"

#. Translators: please do not translate Face.
#: ../src/sendmsg-window.c:5003
#, c-format
msgid "Could not load Face header file %s: %s"
msgstr "Dji n' a savou tcherdjî l' fitchî d' tiestire Face %s: %s"

#. Translators: please do not translate Face.
#: ../src/sendmsg-window.c:5006
#, c-format
msgid "Could not load X-Face header file %s: %s"
msgstr "Dji n' a savou tcherdjî l' fitchî d' tiestire X-Face %s: %s"

#: ../src/sendmsg-window.c:5086
msgid "Message contains national (8-bit) characters"
msgstr "Li messaedje a des accints ou ôtes caracteres 8 bits."

#: ../src/sendmsg-window.c:5090
msgid ""
"Balsa will encode the message in UTF-8.\n"
"Cancel the operation to choose a different language."
msgstr ""
"Balsa el va-st ecôder come UTF-8.\n"
"Rinoncîz po tchoezi èn ôte lingaedje."

#: ../src/sendmsg-window.c:5096
msgid ""
"<b><big>Message contains national (8-bit) characters.</big></b> Balsa will "
"encode the message in UTF-8.\n"
"Cancel the operation to choose a different language."
msgstr ""
"<b><big>Li messaedje a des accints ou ôtes caracteres 8 bits.</big></b> "
"Balsa el va-st ecôder come UTF-8.\n"
"Rinoncîz po tchoezi èn ôte lingaedje."

#: ../src/sendmsg-window.c:5228
msgid "You did not specify a subject for this message"
msgstr "Vos n' avoz nén dné on sudjet po ç' messaedje ci"

#: ../src/sendmsg-window.c:5229
msgid "If you would like to provide one, enter it below."
msgstr "Si vos è vloz dner onk, tapez chal pa dzo."

#: ../src/sendmsg-window.c:5270
msgid "_Send"
msgstr "_Evoyî"

#: ../src/sendmsg-window.c:5327
msgid ""
"You selected OpenPGP mode for a message with attachments. In this mode, only "
"the first part will be signed and/or encrypted. You should select MIME mode "
"if the complete message shall be protected. Do you really want to proceed?"
msgstr ""

#: ../src/sendmsg-window.c:5343
#, c-format
msgid "sending message with gpg mode %d"
msgstr "evoyant messaedje avou gpg môde %d"

#: ../src/sendmsg-window.c:5380
msgid "Message could not be created"
msgstr "Li messaedje n' a nén polou esse ahivé"

#: ../src/sendmsg-window.c:5382
msgid "Message could not be queued in outbox"
msgstr ""

#: ../src/sendmsg-window.c:5384
msgid "Message could not be saved in sentbox"
msgstr "Li messaedje n' a nén polou esse schapé el boesse des evoyîs"

#: ../src/sendmsg-window.c:5386
msgid "Message could not be sent"
msgstr "Li messaedje n' a nén polou esse evoyî"

#: ../src/sendmsg-window.c:5390
#, c-format
msgid "Send failed: %s"
msgstr "L' evoyaedje a fwait berwete: %s"

#: ../src/sendmsg-window.c:5473 ../src/sendmsg-window.c:5492
msgid "Could not postpone message."
msgstr "Dji n' a nén polou mete li messaedje a pus tård."

#: ../src/sendmsg-window.c:5487
msgid "Message postponed."
msgstr "Messaedje metou a pus tård."

#: ../src/sendmsg-window.c:5642
#, c-format
msgid "Error starting spell checker: %s"
msgstr "Åk n' a nén stî tot-z enondant l' coridjrece: %s"

#: ../src/sendmsg-window.c:5801
#, c-format
msgid "Could not compile %s"
msgstr "Dji n' a savou copiler %s"

#: ../src/sendmsg-window.c:5802
msgid "Quoted Text Regular Expression"
msgstr ""

#: ../src/sendmsg-window.c:6355
#, c-format
msgid "Reply to %s: %s"
msgstr "Responde a %s: %s"

#: ../src/sendmsg-window.c:6360
#, c-format
msgid "Forward message to %s: %s"
msgstr "Ricassî ci messaedje viè %s: %s"

#: ../src/sendmsg-window.c:6364
#, c-format
msgid "Continue message to %s: %s"
msgstr "Continouwer on messaedje po %s: %s"

#: ../src/sendmsg-window.c:6368
#, c-format
msgid "New message to %s: %s"
msgstr "Novea messaedje po %s: %s"

#: ../src/spell-check.c:511
msgid "Replace the current word with the selected suggestion"
msgstr "Candjî ci mot chal avou li suddjestion tchoezeye"

#: ../src/spell-check.c:519
msgid ""
"Replace all occurrences of the current word with the selected suggestion"
msgstr ""
"Candjî totes les ocurinces di ç' mot chal so tot l' tecse avou li "
"suddjestion tchoezeye"

#: ../src/spell-check.c:531
msgid "Skip the current word"
msgstr "Passer houte di ç' mot chal"

#: ../src/spell-check.c:537
msgid "Skip all occurrences of the current word"
msgstr "Passer houte di ç' mot chal po tot l' tecse"

#: ../src/spell-check.c:547
msgid "Add the current word to your personal dictionary"
msgstr "Radjouter ç' mot chal å motî da vosse"

#: ../src/spell-check.c:556
msgid "Finish spell checking"
msgstr "Fini l' coridjaedje"

#: ../src/spell-check.c:561
msgid "Revert all changes and finish spell checking"
msgstr "Disfé tos les candjmints eyet fini l' coridjaedje"

#: ../src/spell-check.c:592
msgid "Spell check"
msgstr "Coridjaedje"

#: ../src/store-address.c:104
msgid "Store address: no addresses"
msgstr ""

#: ../src/store-address.c:181
msgid "Store Address"
msgstr ""

#: ../src/store-address.c:199
msgid "Save this address and close the dialog?"
msgstr "Schaper ciste adresse eyet clôre li purnea?"

#: ../src/store-address.c:217
msgid "No address book selected...."
msgstr "Nou calpin d' adresses di tchoezi..."

#: ../src/store-address.c:230
msgid "Address could not be written to this address book."
msgstr ""

#: ../src/store-address.c:233
msgid "Address book could not be accessed."
msgstr ""

#: ../src/store-address.c:235
msgid "This mail address is already in this address book."
msgstr "Ciste adresse emile ci est ddja e calpin d' adresses."

#: ../src/store-address.c:238
msgid "Unexpected address book error. Report it."
msgstr ""

#: ../src/store-address.c:254
msgid "Choose Address Book"
msgstr "Tchoezixhoz on calpin d' adresses"

#: ../src/store-address.c:293
msgid "Choose Address"
msgstr "Tchoezixhoz ene adresse"

#: ../src/toolbar-factory.c:77
msgid "Separator"
msgstr "Separateu"

#: ../src/toolbar-factory.c:78
msgid "Check"
msgstr ""
"Cweri\n"
"noveas"

#: ../src/toolbar-factory.c:79
msgid "Check for new email"
msgstr "Cweri après des noveas messaedjes"

#: ../src/toolbar-factory.c:80
msgid "Compose"
msgstr "Sicrire"

#: ../src/toolbar-factory.c:81
msgid "Compose message"
msgstr "Sicrire on novea messaedje"

#: ../src/toolbar-factory.c:82
msgid "Continue"
msgstr "Continouwer"

#: ../src/toolbar-factory.c:83
msgid "Continue message"
msgstr "Continouwer on messaedje"

#: ../src/toolbar-factory.c:84
msgid "Reply"
msgstr "Responde"

#: ../src/toolbar-factory.c:86
msgid ""
"Reply\n"
"to all"
msgstr ""
"Responde\n"
"a tertos"

#: ../src/toolbar-factory.c:87
msgid "Reply to all recipients"
msgstr "Responde a tertos k' on rçuvou ci messaedje chal"

#: ../src/toolbar-factory.c:88
msgid ""
"Reply\n"
"to group"
msgstr ""
"Responde\n"
"å groupe"

#: ../src/toolbar-factory.c:90
msgid "Forward"
msgstr "Ricassî"

#: ../src/toolbar-factory.c:92
msgid "Previous"
msgstr "Di dvant"

#: ../src/toolbar-factory.c:93
msgid "Open previous"
msgstr "Drovi l' ci di dvant"

#: ../src/toolbar-factory.c:94
msgid "Next"
msgstr "Shuvant"

#: ../src/toolbar-factory.c:95
msgid "Open next"
msgstr "Drovi l' shuvant"

#: ../src/toolbar-factory.c:96
msgid ""
"Next\n"
"unread"
msgstr ""
"Shuvant\n"
"nén léjhou"

#: ../src/toolbar-factory.c:97
msgid "Open next unread message"
msgstr "Drovi l' shuvant messaedje nén léjhou"

#: ../src/toolbar-factory.c:98
msgid ""
"Next\n"
"flagged"
msgstr ""
"Drapea\n"
"shuvant"

#: ../src/toolbar-factory.c:99
msgid "Open next flagged message"
msgstr "Drovi l' shuvant messaedje avou on drapea"

#: ../src/toolbar-factory.c:100
msgid ""
"Previous\n"
"part"
msgstr ""
"Pårteye\n"
"di dvant"

#: ../src/toolbar-factory.c:101
msgid "View previous part of message"
msgstr "Vey li pårteye di dvant do messaedje"

#: ../src/toolbar-factory.c:102
msgid ""
"Next\n"
"part"
msgstr ""
"Pårteye\n"
"shuvante"

#: ../src/toolbar-factory.c:103
msgid "View next part of message"
msgstr "Vey li pårteye shuvante do messaedje"

#: ../src/toolbar-factory.c:104
msgid ""
"Trash /\n"
"Delete"
msgstr ""
"Batch /\n"
"Disfacer"

#: ../src/toolbar-factory.c:105
msgid "Move the current message to trash"
msgstr "Evoyî l' messaedje do moumint al boesse ki sieve di batch"

#: ../src/toolbar-factory.c:106
msgid "Postpone"
msgstr "Leyî po pus tård"

#: ../src/toolbar-factory.c:107
msgid "Postpone current message"
msgstr "Leyî l' messaedje do moumint po pus tård"

#: ../src/toolbar-factory.c:108
msgid "Print"
msgstr "Imprimer"

#: ../src/toolbar-factory.c:110
msgid "Send"
msgstr "Evoyî"

#: ../src/toolbar-factory.c:112
msgid "Exchange"
msgstr ""

#: ../src/toolbar-factory.c:114
msgid "Attach"
msgstr "Ataetchî"

#: ../src/toolbar-factory.c:115
msgid "Add attachments to this message"
msgstr "Radjouter des ataetchmints a ci messaedje chal"

#: ../src/toolbar-factory.c:116
msgid "Save"
msgstr "Schaper"

#: ../src/toolbar-factory.c:117
msgid "Save the current item"
msgstr "Schaper l' cayet do moumint"

#: ../src/toolbar-factory.c:118
msgid "Identity"
msgstr "Idintité"

#: ../src/toolbar-factory.c:119
msgid "Set identity to use for this message"
msgstr "Tchoezi l' idintité a-z eployî po ci messaedje chal"

#: ../src/toolbar-factory.c:122
msgid "Toggle spell checker"
msgstr "Discandjî l' coridjaedje"

#: ../src/toolbar-factory.c:124
msgid "Run a spell check"
msgstr "Fé on coridjaedje"

#: ../src/toolbar-factory.c:126 ../src/toolbar-factory.c:136
msgid "Close"
msgstr "Clôre"

#: ../src/toolbar-factory.c:127
msgid "Close the compose window"
msgstr "Clôre li purnea d' aspougnaedje"

#: ../src/toolbar-factory.c:128
msgid ""
"Toggle\n"
"new"
msgstr ""
"Discandjî\n"
"novea"

#: ../src/toolbar-factory.c:129
msgid "Toggle new message flag"
msgstr "Discandjî l' drapea di novea messaedje"

#: ../src/toolbar-factory.c:130
msgid "Mark all"
msgstr "Marker ttafwait"

#: ../src/toolbar-factory.c:131
msgid "Mark all messages in current mailbox"
msgstr "Marker tos les messaedjes del boesse do moumint"

#: ../src/toolbar-factory.c:132
msgid ""
"All\n"
"headers"
msgstr ""
"Totes les\n"
"tiestires"

#: ../src/toolbar-factory.c:133
msgid "Show all headers"
msgstr "Håyner totes les tiestires"

#: ../src/toolbar-factory.c:134
msgid "Empty Trash"
msgstr "Vudî l' batch"

#: ../src/toolbar-factory.c:137
msgid "Close current mailbox"
msgstr "Clôre li boesse ås emiles do moumint"

#: ../src/toolbar-factory.c:138
msgid "Msg Preview"
msgstr "Vey divant"

#: ../src/toolbar-factory.c:139
msgid "Show preview pane"
msgstr ""

#: ../src/toolbar-factory.c:141
msgid "Sign"
msgstr "Siner"

#: ../src/toolbar-factory.c:142
msgid "Sign message using GPG"
msgstr "Siner l' messaedje avou GPG"

#: ../src/toolbar-factory.c:143
msgid "Encrypt"
msgstr "Ecripter"

#: ../src/toolbar-factory.c:144
msgid "Encrypt message using GPG"
msgstr "Ecripter l' messaedje avou GPG"

#: ../src/toolbar-factory.c:146
msgid "Undo"
msgstr "Disfé"

#: ../src/toolbar-factory.c:147
msgid "Undo most recent change"
msgstr "Disfé l' dierin candjmint"

#: ../src/toolbar-factory.c:148
msgid "Redo"
msgstr "Rifé"

#: ../src/toolbar-factory.c:149
msgid "Redo most recent change"
msgstr "Rifé l' dierin candjmint"

#: ../src/toolbar-factory.c:150
msgid ""
"Expunge\n"
"Deleted"
msgstr ""
"Purdjî\n"
"disfacés"

#: ../src/toolbar-factory.c:151
msgid "Expunge messages marked as deleted"
msgstr "Purdjî les messaedjes k' ont stî mårkés come disfacés"

#: ../src/toolbar-factory.c:239
#, c-format
msgid "Unknown toolbar icon \"%s\""
msgstr "Imådjete del bår ås usteyes nén cnoxhowe «%s»"

#: ../src/toolbar-factory.c:321
msgid "Queue"
msgstr "El cawêye"

#: ../src/toolbar-factory.c:358
msgid "Queue this message for sending"
msgstr "Mete ci messaedje chal el cawêye po l' evoyî pus tård"

#: ../src/toolbar-prefs.c:123
msgid "Customize Toolbars"
msgstr "Bår ås usteyes a vosse môde"

#: ../src/toolbar-prefs.c:144
msgid "Main window"
msgstr "Mwaisse purnea"

#: ../src/toolbar-prefs.c:148
msgid "Compose window"
msgstr "Purnea d' aspougnaedje"

#: ../src/toolbar-prefs.c:152
msgid "Message window"
msgstr "Purnea di messaedje"

#: ../src/toolbar-prefs.c:154
msgid "Toolbar options"
msgstr "Tchuzes del bårs ås usteyes"

#: ../src/toolbar-prefs.c:164
msgid "_Wrap button labels"
msgstr ""

#: ../src/toolbar-prefs.c:363
#, c-format
msgid "Error displaying toolbar help: %s\n"
msgstr ""

#. Preview display
#: ../src/toolbar-prefs.c:399
msgid "Preview"
msgstr "Vey divant"

#: ../src/toolbar-prefs.c:427
msgid "_Restore toolbar to standard buttons"
msgstr ""

#: ../src/toolbar-prefs.c:446
msgid "Available buttons"
msgstr "Botons k' i gn a"

#: ../src/toolbar-prefs.c:462
msgid "Current toolbar"
msgstr "Bår ås usteyes do moumint"

#: ../src/toolbar-prefs.c:479
msgid "Up"
msgstr "Monter"

#: ../src/toolbar-prefs.c:495
msgid "Down"
msgstr "Dischinde"