summaryrefslogtreecommitdiffstats
path: root/perl-install/printerdrake.pm
blob: d190638d8e5be4015b8ba4ccf669d2fb43b86fff (plain)
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
package printerdrake;
# $Id$
use diagnostics;
use strict;


use common;
use detect_devices;
use modules;
use network;
use log;
use printer;

1;

sub choose_printer_type {
    my ($printer, $in) = @_;
    $in->set_help('configurePrinterConnected') if $::isInstall;
    my $queue = $printer->{OLD_QUEUE};
    $printer->{str_type} = $printer::printer_type_inv{$printer->{TYPE}};
    my $autodetect = 0;
    $autodetect = 1 if ($printer->{AUTODETECT});
    my @printertypes = printer::printer_type($printer);
    $in->ask_from_(
		   { title => _("Select Printer Connection"),
		     messages => _("How is the printer connected?") .
			 ($printer->{SPOOLER} eq "cups" ?
			  _("
Printers on remote CUPS servers you do not have to configure here; these printers will be automatically detected.") : ())
		     },
		   [
		    { val => \$printer->{str_type},
		      list => \@printertypes, 
		      not_edit => 1, sort => 0,
		      type => 'list' },
		    { text => _("Printer auto-detection (Local, TCP/Socket, and SMB printers)"),
		      type => 'bool', val => \$autodetect }
		    ]
		   ) or return 0;
    if ($autodetect) {
	$printer->{AUTODETECT} = 1;
    } else {
	undef $printer->{AUTODETECT};
    }
    $printer->{TYPE} = $printer::printer_type{$printer->{str_type}};
    1;
}

sub config_cups {
    my ($printer, $in, $upNetwork) = @_;

    local $::isWizard = 0;
    # Check whether the network functionality is configured and
    # running
    if (!check_network($printer, $in, $upNetwork)) { return 0 };

    $in->set_help('configureRemoteCUPSServer') if $::isInstall;
    my $queue = $printer->{OLD_QUEUE};
    #- hack to handle cups remote server printing,
    #- first read /etc/cups/cupsd.conf for variable BrowsePoll address:port
    my ($server, $port, $default, $autoconf);
    # Return value: 0 when nothing was changed ("Apply" never pressed), 1
    # when "Apply" was at least pressed once.
    my $retvalue = 0;
    # Read CUPS config file
    my @cupsd_conf = printer::read_cupsd_conf();
    foreach (@cupsd_conf) {
	/^\s*BrowsePoll\s+(\S+)/ and $server = $1, last;
    }
    $server =~ /([^:]*):(.*)/ and ($server, $port) = ($1, $2);
    #- Did we have automatic or manual configuration mode for CUPS
    $autoconf = printer::get_cups_autoconf();
    #- Remember the server/port/autoconf settings to check whether the user
    #- has changed them.
    my $oldserver = $server;
    my $oldport = $port;
    my $oldautoconf = $autoconf;
    
    #- then ask user for this combination and rewrite /etc/cups/cupsd.conf
    #- according to new settings. There are no other point where such
    #- information is written in this file.
    
    if ($in->ask_from_
	({ title => ($::expert ? _("CUPS configuration") :
		     _("Specify CUPS server")),
	   messages => _("To get access to printers on remote CUPS servers in your local network you do not have to configure anything; the CUPS servers inform your machine automatically about their printers. All printers currently known to your machine are listed in the \"Remote printers\" section in the main window of Printerdrake. When your CUPS server is not in your local network, you have to enter the CUPS server IP address and optionally the port number to get the printer information from the server, otherwise leave these fields blank.") .
	       ($::expert ? "\n" . _("
Normally, CUPS is automatically configured according to your network environment, so that you can access the printers on the CUPS servers in your local network. If this does not work correctly, turn off \"Automatic CUPS configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not forget to restart CUPS afterwards (command: \"service cups restart\").") : ()),
	   callbacks => { complete => sub {
	       unless (!$server || network::is_ip($server)) {
		   $in->ask_warn('', _("The IP address should look like 192.168.1.20"));
		   return (1,0);
	       }
	       if ($port !~ /^\d*$/) {
		   $in->ask_warn('', _("The port number should be an integer!"));
		   return (1,1);
	       }
	       return 0;
	   } }
       },
	 [	
		{ label => _("CUPS server IP"), val => \$server },
		{ label => _("Port"), val => \$port },
		($::expert ?
		 { text => _("Automatic CUPS configuration"), type => 'bool',
		   val => \$autoconf } : ()),
	 ]
	 )) {
	# We have clicked "OK"
	$retvalue = 1;
	# Set BrowsePoll line
	if (($server ne $oldserver) || ($port ne $oldport)) {
	    $server && $port and $server = "$server:$port";
	    if ($server) {
		@cupsd_conf = 
		    map { $server and 
			      s/^\s*BrowsePoll\s+(\S+)/BrowsePoll $server/ and
			      $server = '';
			  $_ } @cupsd_conf;
		$server and push @cupsd_conf, "\nBrowsePoll $server\n";
	    } else {
		@cupsd_conf = 
		    map { s/^\s*BrowsePoll\s+(\S+)/\#BrowsePoll $1/;
			  $_ } @cupsd_conf;
	    }
	    printer::write_cupsd_conf(@cupsd_conf);
	}
	# Set auto-configuration state
	if ($autoconf != $oldautoconf) {
	    printer::set_cups_autoconf($autoconf);
	}
	# Save user settings for auto-install
	$printer->{BROWSEPOLLADDR} = $server;
	$printer->{BROWSEPOLLPORT} = $port;
	$printer->{MANUALCUPSCONFIG} = 1 - $autoconf;
    }
    return $retvalue;
}

sub setup_printer_connection {
    my ($printer, $in, $upNetwork) = @_;
    # Choose the appropriate connection config dialog
    my $done = 1;
    for ($printer->{TYPE}) {
	/LOCAL/     and setup_local_autoscan ($printer, $in, $upNetwork)
	    and last;
	/LPD/       and setup_lpd      ($printer, $in, $upNetwork) and last;
	/SOCKET/    and setup_socket   ($printer, $in, $upNetwork) and last;
	/SMB/       and setup_smb      ($printer, $in, $upNetwork) and last;
	/NCP/       and setup_ncp      ($printer, $in, $upNetwork) and last;
	/URI/       and setup_uri      ($printer, $in, $upNetwork) and last;
	/POSTPIPE/  and setup_postpipe ($printer, $in) and last;
	$done = 0; last;
    }
    return $done;
}

sub auto_detect {
    my ($local, $network, $smb) = @_;
    if ($local) {
	modules::get_probeall("usb-interface") and eval { modules::load("printer") };
	eval { modules::unload(qw(lp parport_pc parport_probe parport)) }; #- on kernel 2.4 parport has to be unloaded to probe again
	eval { modules::load(qw(parport_pc lp parport_probe)) }; #- take care as not available on 2.4 kernel (silent error).
    }
    my $b = before_leaving { eval { modules::unload("parport_probe") } }
    if $local;
    detect_devices::whatPrinter($local, $network, $smb);
}

sub wizard_welcome {
    my ($printer, $in) = @_;
    my $ret;
    my $autodetectlocal = 0;
    my $autodetectnetwork = 0;
    my $autodetectsmb = 0;
    $autodetectlocal = 1 if ($printer->{AUTODETECTLOCAL});
    $autodetectnetwork = 1 if ($printer->{AUTODETECTNETWORK});
    $autodetectsmb = 1 if ($printer->{AUTODETECTSMB});
    if ($in) {
	eval {
	    if ($::expert) {
		$ret = $in->ask_okcancel
		    (_("Add a new printer"),
		     _("
Welcome to the Printer Setup Wizard

This wizard allows you to install local or remote printers to be used from this machine and also from other machines in the network.

It asks you for all necessary information to set up the printer and gives you access to all available printer drivers, driver options, and printer connection types."));
	    } else {
		$ret = $in->ask_from_
		    ({title => _("Add a new printer"),
		      messages => ($printer->{SPOOLER} ne "pdq" ? _("
Welcome to the Printer Setup Wizard

This wizard will help you to install your printer(s) connected to this computer, connected directly to the network or to a remote Windows machine.

If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that they can be auto-detected. Also your network printer(s) and you Windows machines must be connected and turned on.

Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network and/or Windows-hosted printers when you don't need it.

 Click on \"Next\" when you are ready, and on \"Cancel\" when you do not want to set up your printer(s) now.") : _("
Welcome to the Printer Setup Wizard

This wizard will help you to install your printer(s) connected to this computer or connected directly to the network.

If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that they can be auto-detected. Also your network printer(s) must be connected and turned on.

Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network printers when you don't need it.

 Click on \"Next\" when you are ready, and on \"Cancel\" when you do not want to set up your printer(s) now."))},
		     [
		      { text => _("Auto-detect printers connected to this machine"), type => 'bool',
			val => \$autodetectlocal},
		      { text => _("Auto-detect printers connected directly to the local network"), type => 'bool',
			val => \$autodetectnetwork},
		      ($printer->{SPOOLER} ne "pdq" ?
		       { text => _("Auto-detect printers connected to machines running Microsoft Windows"), type => 'bool',
			 val => \$autodetectsmb } : ())
		      ]);
		if ($autodetectlocal) {
		    $printer->{AUTODETECTLOCAL} = 1;
		} else {
		    undef $printer->{AUTODETECTLOCAL};
		}
		if ($autodetectnetwork) {
		    $printer->{AUTODETECTNETWORK} = 1;
		} else {
		    undef $printer->{AUTODETECTNETWORK};
		}
		if ($autodetectsmb && ($printer->{SPOOLER} ne "pdq")) {
		    $printer->{AUTODETECTSMB} = 1;
		} else {
		    undef $printer->{AUTODETECTSMB};
		}
	    }
	};
	return ($@ =~ /wizcancel/) ? 0 : $ret;
    }
}

sub wizard_congratulations {
    my ($in) = @_;
    if ($in) {
	$in->ask_okcancel(_("Local Printer"),
			  _("
Congratulations, your printer is now installed and configured!

You can print using the \"Print\" command of your application (usually in the \"File\" menu).

If you want to add, remove, or rename a printer, or if you want to change the default option settings (paper input tray, printout quality, ...), select \"Printer\" in the \"Hardware\" section of the Mandrake Control Center."))
    }
}

sub setup_local_autoscan {
    my ($printer, $in, $upNetwork) = @_;
    my (@port, @str, $device);
    my $queue = $printer->{OLD_QUEUE};
    my $expert_or_modify = ($::expert || !$printer->{NEW});
    my $do_auto_detect = 
	(($expert_or_modify &&
	  $printer->{AUTODETECT}) ||
	 (!$expert_or_modify &&
	  ($printer->{AUTODETECTLOCAL} ||
	   $printer->{AUTODETECTNETWORK} ||
	   $printer->{AUTODETECTSMB})));

    # If the user requested auto-detection of remote printers, check
    # whether the network functionality is configured and running
    if ($printer->{AUTODETECTNETWORK} || $printer->{AUTODETECTSMB}) {
	if (!check_network($printer, $in, $upNetwork)) { return 0 };
    }

    my @autodetected;
    my $menuentries = {};
    $in->set_help('setupLocal') if $::isInstall;
    if ($do_auto_detect) {
	if ((!$::testing) &&
	    ($printer->{AUTODETECTSMB}) &&
	    (!printer::files_exist((qw(/usr/bin/smbclient))))) {
	    $in->do_pkgs->install('samba-client');
	}
	my $w = $in->wait_message(_("Printer auto-detection"), _("Detecting devices..."));
	# When HPOJ is running, it blocks the printer ports on which it is
	# configured, so we stop it here. If it is not installed or not 
	# configured, this command has no effect.
	printer::stop_service("hpoj");
	@autodetected = auto_detect($expert_or_modify ||
				    $printer->{AUTODETECTLOCAL},
				    !$expert_or_modify && 
				    $printer->{AUTODETECTNETWORK},
				    !$expert_or_modify && 
				    $printer->{AUTODETECTSMB});
	# We have more than one printer, so we must ask the user for a queue
	# name in the fully automatic printer configuration.
	$printer->{MORETHANONE} = ($#autodetected > 0);
	for my $p (@autodetected) {
	    if ($p->{val}{DESCRIPTION}) {
		my $menustr = $p->{val}{DESCRIPTION};
		if ($p->{port} =~ m!^/dev/lp(\d+)$!) {
		    $menustr .= _(" on parallel port \#%s", $1);
		} elsif ($p->{port} =~ m!^/dev/usb/lp(\d+)$!) {
		    $menustr .= _(", USB printer \#%s", $1);
		} elsif ($p->{port} =~ m!^socket://([^:]+):(\d+)$!) {
		    $menustr .= _(", network printer \"%s\", port %s", $1, $2);
		} elsif ($p->{port} =~ m!^smb://([^/:]+)/([^/:]+)$!) {
		    $menustr .= _(", printer \"%s\" on SMB/Windows server \"%s\"", $2, $1);
		}
		if ($::expert) {
		    $menustr .= " ($p->{port})";
		}
		$menuentries->{$menustr} = $p->{port};
		push @str, _("Detected %s", $menustr);
	    } else {
		my $menustr;
		if ($p->{port} =~ m!^/dev/lp(\d+)$!) {
		    $menustr = _("Printer on parallel port \#%s", $1);
		} elsif ($p->{port} =~ m!^/dev/usb/lp(\d+)$!) {
		    $menustr = _("USB printer \#%s", $1);
		} elsif ($p->{port} =~ m!^socket://([^:]+):(\d+)$!) {
		    $menustr .= _("Network printer \"%s\", port %s", $1, $2);
		} elsif ($p->{port} =~ m!^smb://([^/:]+)/([^/:]+)$!) {
		    $menustr .= _("Printer \"%s\" on SMB/Windows server \"%s\"", $2, $1);
		}
		if ($::expert) {
		    $menustr .= " ($p->{port})";
		}
		$menuentries->{$menustr} = $p->{port};
	    }
	}
	if ($::expert) {
	    @port = detect_devices::whatPrinterPort();
	    for my $q (@port) {
		if (@str) {
		    my $alreadyfound = 0;
		    for my $p (@autodetected) {
			if ($p->{port} eq $q) {
			    $alreadyfound = 1;
			    last;
			}
		    }
		    if ($alreadyfound) {
			next;
		    }
		}
		my $menustr;
		if ($q =~ m!^/dev/lp(\d+)$!) {
		    $menustr = _("Printer on parallel port \#%s", $1);
		} elsif ($q =~ m!^/dev/usb/lp(\d+)$!) {
		    $menustr = _("USB printer \#%s", $1);
		}
		if ($::expert) {
		    $menustr .= " ($q)";
		}
		$menuentries->{$menustr} = $q;
	    }
	}
	# We are ready with auto-detection, so we restart HPOJ here. If it 
	# is not installed or not configured, this command has no effect.
	printer::start_service("hpoj");
    } else {
	# Always ask for queue name in recommended mode when no auto-
	# detection was done
	$printer->{MORETHANONE} = ($#autodetected > 0);
	my $m;
	for ($m = 0; $m <= 2; $m++) {
	    my $menustr = _("Printer on parallel port \#%s", $m);
	    if ($::expert) {
		$menustr .= " (/dev/lp$m)";
	    }
	    $menuentries->{$menustr} = "/dev/lp$m";
	    $menustr = _("USB printer \#%s", $m);
	    if ($::expert) {
		$menustr .= " (/dev/usb/lp$m)";
	    }
	    $menuentries->{$menustr} = "/dev/usb/lp$m";
	}
    }
    my @menuentrieslist = sort { 
	my @prefixes = ("/dev/lp", "/dev/usb/lp", "/dev/", "socket:", "smb:");
	my $first = $menuentries->{$a};
	my $second = $menuentries->{$b};
	for (my $i = 0; $i <= $#prefixes; $i++) {
	    my $firstinlist = ($first =~ m!^$prefixes[$i]!);
	    my $secondinlist = ($second =~ m!^$prefixes[$i]!);
	    if (($firstinlist) && (!$secondinlist)) {return -1};
	    if (($secondinlist) && (!$firstinlist)) {return 1};
	}
	return $first cmp $second;
    } keys(%{$menuentries});
    my $menuchoice = "";
    my $oldmenuchoice = "";
    if (($printer->{configured}{$queue}) &&
	($printer->{currentqueue}{connect} =~ m/^file:/)) {
	# Non-HP or HP print-only device (HPOJ not used)
	$device = $printer->{currentqueue}{connect};
	$device =~ s/^file://;
	for my $p (keys %{$menuentries}) {
	    if ($device eq $menuentries->{$p}) {
		$menuchoice = $p;
		last;
	    }
	}
    } elsif (($printer->{configured}{$queue}) &&
	($printer->{currentqueue}{connect} =~ m!^ptal:/mlc:!)) {
	# HP multi-function device (controlled by HPOJ)
	my $ptaldevice = $printer->{currentqueue}{connect};
	$ptaldevice =~ s!^ptal:/mlc:!!;
	if ($ptaldevice =~ /^par:(\d+)$/) {
	    $device = "/dev/lp$1";
	    for my $p (keys %{$menuentries}) {
		if ($device eq $menuentries->{$p}) {
		    $menuchoice = $p;
		    last;
		}
	    }
	} else {
	    my $make = lc($printer->{currentqueue}{make});
	    my $model = lc($printer->{currentqueue}{model});
	    $device = "";
	    for my $p (keys %{$menuentries}) {
		my $menumakemodel = lc($p);
		if (($menumakemodel =~ /$make/) && 
		    ($menumakemodel =~ /$model/)) {
		    $menuchoice = $p;
		    $device = $menuentries->{$p};
		    last;
		}
	    }
	}
    } elsif (($printer->{configured}{$queue}) &&
	($printer->{currentqueue}{connect} =~ m!^(socket|smb):/!)) {
	# Ethernet-(TCP/Socket)-connected printer or printer on Windows server
	$device = $printer->{currentqueue}{connect};
	for my $p (keys %{$menuentries}) {
	    if ($device eq $menuentries->{$p}) {
		$menuchoice = $p;
		last;
	    }
	}
    } else {
	$device = "";
    }
    if (($menuchoice eq "") && (@menuentrieslist > -1)) {
	$menuchoice = $menuentrieslist[0];
	$oldmenuchoice = $menuchoice;
	if ($device eq "") {
	    $device = $menuentries->{$menuchoice};
	}
    }
    if ($in) {
	$::expert or $in->set_help('configurePrinterDev') if $::isInstall;
	if ($#menuentrieslist < 0) { # No menu entry
	    # auto-detection has failed, we must do all manually
	    $do_auto_detect = 0;
	    $printer->{MANUAL} = 1;
	    if ($::expert) {
		$device = $in->ask_from_entry
		    (_("Local Printer"),
		     _("No local printer found! To manually install a printer enter a device name/file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."),
		     { 
			 complete => sub {
			     unless ($menuchoice ne "") {
				 $in->ask_warn('', _("You must enter a device or file name!"));
				 return (1,0);
			     }
			     return 0;
			 }
		     });
		if ($device eq "") {
		    return 0;
		}
	    } else {
		$in->ask_warn(_("Printer auto-detection"),
			      _("No printer found!"));
		return 0;
	    }
	} else {
	    my $manualconf = 0;
	    $manualconf = 1 if (($printer->{MANUAL}) || (!$do_auto_detect));
	    if (!$in->ask_from_
		(
		 { title => ($expert_or_modify ?
			     _("Local Printer") :
			     _("Available printers")),
		   messages => (($do_auto_detect ?
				 ($::expert ?
				  (($#menuentrieslist == 0) ?
				   _("The following printer was auto-detected, if it is not the one you want to configure, enter a device name/file name in the input line") :
				   _("Here is a list of all auto-detected printers. Please choose the printer you want to set up or enter a device name/file name in the input line")) :
				  (($#menuentrieslist == 0) ?
				   _("The following printer was auto-detected. The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\".") :
				   _("Here is a list of all auto-detected printers. Please choose the printer you want to set up. The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\"."))) :
				 ($::expert ?
				  _("Please choose the port where your printer is connected to or enter a device name/file name in the input line") :
				  _("Please choose the port where your printer is connected to."))) .
				($::expert ?
				 _(" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...).") :
				 ())), 
				 callbacks => {
				     complete => sub {
					 unless ($menuchoice ne "") {
					     $in->ask_warn('', _("You must choose/enter a printer/device!"));
					     return (1,0);
					 }
					 return 0;
				     },
				     changed => sub {
					 if ($oldmenuchoice ne $menuchoice) {
					     $device = $menuentries->{$menuchoice};
					     $oldmenuchoice = $menuchoice;
					 }
					 return 0;
				     }
				 }},
		 [
		  ($::expert ? 
		   { val => \$device } : ()),
		  { val => \$menuchoice, list => \@menuentrieslist, 
		    not_edit => !$::expert, format => \&translate, sort => 0,
		    allow_empty_list => 1, type => 'list' },
		  (((!$::expert) && ($do_auto_detect) && ($printer->{NEW})) ? 
		   { text => _("Manual configuration"), type => 'bool',
		     val => \$manualconf } : ()),
		  ]
		 )) {
		return 0;
	    }
	    if ($device ne $menuentries->{$menuchoice}) {
		$menuchoice = "";
		$do_auto_detect = 0;
	    }
	    if ($manualconf) {
		$printer->{MANUAL} = 1;
	    } else {
		undef $printer->{MANUAL};
	    }
	}
    }

    #- LPD and LPRng need netcat ('nc') to access to socket printers
    if ((($printer->{SPOOLER} eq 'lpd') || ($printer->{SPOOLER} eq 'lprng')) &&
        (!$::testing) && ($device =~ /^socket:/) &&
        (!printer::files_exist((qw(/usr/bin/nc))))) {
        $in->do_pkgs->install('nc');
    }

    # Do configuration of multi-function devices and look up model name
    # in the printer database
    setup_common ($printer, $in, $menuchoice, $device, $do_auto_detect,
		  @autodetected);

    1;
}

sub setup_lpd {
    my ($printer, $in, $upNetwork) = @_;

    # Check whether the network functionality is configured and
    # running
    if (!check_network($printer, $in, $upNetwork)) { return 0 };

    $in->set_help('setupLPD') if $::isInstall;
    my ($uri, $remotehost, $remotequeue);
    my $queue = $printer->{OLD_QUEUE};
    if (($printer->{configured}{$queue}) &&
	($printer->{currentqueue}{connect} =~ m/^lpd:/)) {
	$uri = $printer->{currentqueue}{connect};
	$uri =~ m!^\s*lpd://([^/]+)/([^/]+)/?\s*$!;
	$remotehost = $1;
	$remotequeue = $2;
    } else {
	$remotehost = "";
	$remotequeue = "lp";
    }

    return if !$in->ask_from(_("Remote lpd Printer Options"),
_("To use a remote lpd printer, you need to supply the hostname of the printer server and the printer name on that server."), [
{ label => _("Remote host name"), val => \$remotehost },
{ label => _("Remote printer name"), val => \$remotequeue } ],
complete => sub {
    unless ($remotehost ne "") {
	$in->ask_warn('', _("Remote host name missing!"));
	return (1,0);
    }
    unless ($remotequeue ne "") {
	$in->ask_warn('', _("Remote printer name missing!"));
	return (1,1);
    }
    return 0;
}
			      );
    #- make the DeviceURI from user input.
    $printer->{currentqueue}{connect} = 
        "lpd://$remotehost/$remotequeue";

    #- LPD does not support filtered queues to a remote LPD server by itself
    #- It needs an additional program as "rlpr"
    if (($printer->{SPOOLER} eq 'lpd') && (!$::testing) &&
        (!printer::files_exist((qw(/usr/bin/rlpr))))) {
        $in->do_pkgs->install('rlpr');
    }

    # Auto-detect printer model (works if host is an ethernet-connected
    # printer)
    my $modelinfo = detect_devices::getSNMPModel ($remotehost);
    my $auto_hpoj;
    if ((defined($modelinfo)) && ($modelinfo->{MANUFACTURER} ne "")) {
        $in->ask_warn('', _("Detected model: %s %s",
                            $modelinfo->{MANUFACTURER}, $modelinfo->{MODEL}));
        $auto_hpoj = 1;
    } else {
	$auto_hpoj = 0;
    }

    # Do configuration of multi-function devices and look up model name
    # in the printer database
    setup_common ($printer, $in,
		  "$modelinfo->{MANUFACTURER} $modelinfo->{MODEL}", 
		  $printer->{currentqueue}{connect}, $auto_hpoj,
                  ({port => $printer->{currentqueue}{connect},
                    val => $modelinfo}));

    1;
}

sub setup_smb {
    my ($printer, $in, $upNetwork) = @_;

    # Check whether the network functionality is configured and
    # running
    if (!check_network($printer, $in, $upNetwork)) { return 0 };

    $in->set_help('setupSMB') if $::isInstall;
    my ($uri, $smbuser, $smbpassword, $workgroup, $smbserver, $smbserverip, $smbshare);
    my $queue = $printer->{OLD_QUEUE};
    if (($printer->{configured}{$queue}) &&
	($printer->{currentqueue}{connect} =~ m/^smb:/)) {
	$uri = $printer->{currentqueue}{connect};
	$uri =~ m!^\s*smb://(.*)$!;
	my $parameters = $1;
	# Get the user's login and password from the URI
	if ($parameters =~ m!([^@]*)@([^@]+)!) {
	    my $login = $1;
	    $parameters = $2;
	    if ($login =~ m!([^:]*):([^:]*)!) {
		$smbuser = $1;
		$smbpassword = $2;
	    } else {
		$smbuser = $login;
		$smbpassword = "";
	    }
	} else {
	    $smbuser = "";
	    $smbpassword = "";
	}
	# Get the workgroup, server, and share name
	if ($parameters =~ m!([^/]*)/([^/]+)/([^/]+)$!) {
	    $workgroup = $1;
	    $smbserver = $2;
	    $smbshare = $3;
	} elsif ($parameters =~ m!([^/]+)/([^/]+)$!) {
	    $workgroup = "";
	    $smbserver = $1;
	    $smbshare = $2;
	} else {
	    die "The \"smb://\" URI must at least contain the server name and the share name!\n";
	}
	if (network::is_ip($smbserver)) {
	    $smbserverip = $smbserver;
	    $smbserver = "";
	}
    }

    my $autodetect = 0;
    my @autodetected;
    my $menuentries;
    my @menuentrieslist;
    my $menuchoice = "";
    my $oldmenuchoice = "";
    if ($printer->{AUTODETECT}) {
	$autodetect = 1;
	my $w = $in->wait_message(_("Printer auto-detection"), _("Scanning network..."));
	@autodetected = auto_detect(0, 0, 1);
	for my $p (@autodetected) {
	    my $menustr;
	    $p->{port} =~ m!^smb://([^/:]+)/([^/:]+)$!;
	    my $server = $1;
	    my $share = $2;
	    if ($p->{val}{DESCRIPTION}) {
		$menustr = $p->{val}{DESCRIPTION};
		$menustr .= _(", printer \"%s\" on server \"%s\"",
			      $share, $server);
	    } else {
		$menustr = _("Printer \"%s\" on server \"%s\"",
			     $share, $server);
	    }
	    $menuentries->{$menustr} = $p->{port};
	    if (($server eq $smbserver) &&
		($share eq $smbshare)) {
		$menuchoice = $menustr;
	    }
	}
	@menuentrieslist = sort {
	    $menuentries->{$a} cmp $menuentries->{$b};
	} keys(%{$menuentries});
	if (($printer->{configured}{$queue}) &&
	    ($printer->{currentqueue}{connect} =~ m/^smb:/) &&
	    ($menuchoice eq "")) {
	    my $menustr;
	    if ($printer->{currentqueue}{make}) {
		$menustr = "$printer->{currentqueue}{make} $printer->{currentqueue}{model}";
		$menustr .= _(", printer \"%s\" on server \"%s\"",
			      $smbshare, $smbserver);
	    } else {
		$menustr = _("Printer \"%s\" on server \"%s\"",
			     $smbshare, $smbserver);
	    }
	    $menuentries->{$menustr} = "smb://$smbserver/$smbshare";
	    unshift(@menuentrieslist, $menustr);
	    $menuchoice = $menustr;
	}
	if ($#menuentrieslist < 0) {
	    $autodetect = 0;
	} elsif ($menuchoice eq "") {
	    $menuchoice = $menuentrieslist[0];
	    $menuentries->{$menuentrieslist[0]} =~
		m!^smb://([^/:]+)/([^/:]+)$!;
	    $smbserver = $1;
	    $smbshare = $2;
	}
	$oldmenuchoice = $menuchoice;
    }

    return 0 if !$in->ask_from
	(_("SMB (Windows 9x/NT) Printer Options"),
	 _("To print to a SMB printer, you need to provide the SMB host name (Note! It may be different from its TCP/IP hostname!) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information.") .
	 ($autodetect ? _(" If the desired printer was auto-detected, simply choose it from the list and then add user name, password, and/or workgroup if needed.") : ""),
	 [{ label => _("SMB server host"), val => \$smbserver },
	  { label => _("SMB server IP"), val => \$smbserverip },
	  { label => _("Share name"), val => \$smbshare },
	  { label => _("User name"), val => \$smbuser },
	  { label => _("Password"), val => \$smbpassword, hidden => 1 },
	  { label => _("Workgroup"), val => \$workgroup },
	  ($autodetect ?
	   { label => _("Auto-detected"),
	     val => \$menuchoice, list => \@menuentrieslist, 
	     not_edit => 0, format => \&translate, sort => 0,
	     allow_empty_list => 1, type => 'combo' }
	   : ()) ],
	 complete => sub {
	     unless ((network::is_ip($smbserverip)) || ($smbserverip eq "")) {
		 $in->ask_warn('', _("IP address should be in format 1.2.3.4"));
		 return (1,1);
	     }
	     unless (($smbserver ne "") || ($smbserverip ne "")) {
		 $in->ask_warn('', _("Either the server name or the server's IP must be given!"));
		 return (1,0);
	     }
	     unless ($smbshare ne "") {
		 $in->ask_warn('', _("Samba share name missing!"));
		 return (1,2);
	     }
	     unless ($smbpassword eq "") {
		 local $::isWizard = 0;
		 my $yes = $in->ask_yesorno
		     (_("SECURITY WARNING!"),
		      _("You are about to set up printing to a Windows account with password. Due to a fault in the architecture of the Samba client software the password is put in clear text into the command line of the Samba client used to transmit the print job to the Windows server. So it is possible for every user on this machine to display the password on the screen by issuing commands as \"ps auxwww\".

We recommend to make use of one of the following alternatives (in all cases you have to make sure that only machines from your local network have access to your Windows server, for example by means of a firewall):

Use a password-less account on your Windows server, as the \"GUEST\" account or a special account dedicated for printing. Do not remove the password protection from a personal account or the administrator account.

Set up your Windows server to make the printer available under the LPD protocol. Then set up printing from this machine with the \"%s\" connection type in Printerdrake.

", _("Printer on remote lpd server")) .
		      ($::expert ? 
		       _("Set up your Windows server to make the printer available under the IPP protocol and set up printing from this machine with the \"%s\" connection type in Printerdrake.

", _("Enter a printer device URI")) : "") .
_("Connect your printer to a Linux server and let your Windows machine(s) connect to it as a client.

Do you really want to continue setting up this printer as you are doing now?"), 0);
		 return 0 if $yes;
		 return (1,2);
	     }
	     return 0;
	 },
	 changed => sub {
	     return 0 if !$autodetect;
	     if ($oldmenuchoice ne $menuchoice) {
		 $menuentries->{$menuchoice} =~ m!^smb://([^/:]+)/([^/:]+)$!;
		 $smbserver = $1;
		 $smbshare = $2;
		 $oldmenuchoice = $menuchoice;
	     }
	     return 0;
	 }
	 );
    #- make the DeviceURI from, try to probe for available variable to
    #- build a suitable URI.
    $printer->{currentqueue}{connect} =
    join '', ("smb://", ($smbuser && ($smbuser . 
    ($smbpassword && ":$smbpassword") . "@")), ($workgroup && ("$workgroup/")),
    ($smbserver || $smbserverip), "/$smbshare");

    if ((!$::testing) &&
        (!printer::files_exist((qw(/usr/bin/smbclient))))) {
	$in->do_pkgs->install('samba-client');
    }
    $printer->{SPOOLER} eq 'cups' and printer::restart_queue($printer);
    1;
}

sub setup_ncp {
    my ($printer, $in, $upNetwork) = @_;

    # Check whether the network functionality is configured and
    # running
    if (!check_network($printer, $in, $upNetwork)) { return 0 };

    $in->set_help('setupNCP') if $::isInstall;
    my ($uri, $ncpuser, $ncppassword, $ncpserver, $ncpqueue);
    my $queue = $printer->{OLD_QUEUE};
    if (($printer->{configured}{$queue}) &&
	($printer->{currentqueue}{connect} =~ m/^ncp:/)) {
	$uri = $printer->{currentqueue}{connect};
	my $parameters = $uri =~ m!^\s*ncp://(.*)$!;
	# Get the user's login and password from the URI
	if ($parameters =~ m!([^@]*)@([^@]+)!) {
	    my $login = $1;
	    $parameters = $2;
	    if ($login =~ m!([^:]*):([^:]*)!) {
		$ncpuser = $1;
		$ncppassword = $2;
	    } else {
		$ncpuser = $login;
		$ncppassword = "";
	    }
	} else {
	    $ncpuser = "";
	    $ncppassword = "";
	}
	# Get the workgroup, server, and share name
	if ($parameters =~ m!([^/]+)/([^/]+)$!) {
	    $ncpserver = $1;
	    $ncpqueue = $2;
	} else {
	    die "The \"ncp://\" URI must at least contain the server name and the share name!\n";
	}
    }

    return 0 if !$in->ask_from(_("NetWare Printer Options"),
_("To print on a NetWare printer, you need to provide the NetWare print server name (Note! it may be different from its TCP/IP hostname!) as well as the print queue name for the printer you wish to access and any applicable user name and password."), [
{ label => _("Printer Server"), val => \$ncpserver },
{ label => _("Print Queue Name"), val => \$ncpqueue },
{ label => _("User name"), val => \$ncpuser },
{ label => _("Password"), val => \$ncppassword, hidden => 1 } ],
complete => sub {
    unless ($ncpserver ne "") {
	$in->ask_warn('', _("NCP server name missing!"));
	return (1,0);
    }
    unless ($ncpqueue ne "") {
	$in->ask_warn('', _("NCP queue name missing!"));
	return (1,1);
    }
    return 0;
}
					);
    # Generate the Foomatic URI
    $printer->{currentqueue}{connect} =
    join '', ("ncp://", ($ncpuser && ($ncpuser . 
    ($ncppassword && ":$ncppassword") . "@")),
    "$ncpserver/$ncpqueue");

    if ((!$::testing) &&
        (!printer::files_exist((qw(/usr/bin/nprint))))) {
	$in->do_pkgs->install('ncpfs');
    }

    1;
}

sub setup_socket {
    my ($printer, $in, $upNetwork) = @_;

    # Check whether the network functionality is configured and
    # running
    if (!check_network($printer, $in, $upNetwork)) { return 0 };

    $in->set_help('setupSocket') if $::isInstall;

    my ($hostname, $port, $uri, $remotehost,$remoteport);
    my $queue = $printer->{OLD_QUEUE};
    if (($printer->{configured}{$queue}) &&
	($printer->{currentqueue}{connect} =~  m!^(socket:|ptal:/hpjd:)!)) {
	$uri = $printer->{currentqueue}{connect};
	if ($uri =~ m!^ptal:!) {
	    if ($uri =~ m!^ptal:/hpjd:([^/:]+):([0-9]+)/?\s*$!) {
		my $ptalport = $2 - 9100;
		($remotehost, $remoteport) = ($1, $ptalport);
	    } elsif ($uri =~ m!^ptal:/hpjd:([^/:]+)\s*$!) {
		($remotehost, $remoteport) = ($1, 9100);
	    }
	} else {
	    ($remotehost, $remoteport) =
		$uri =~ m!^\s*socket://([^/:]+):([0-9]+)/?\s*$!;
	}
    } else {
	$remotehost = "";
	$remoteport = "9100";
    }

    my $autodetect = 0;
    my @autodetected;
    my $menuentries;
    my @menuentrieslist;
    my $menuchoice = "";
    my $oldmenuchoice = "";
    if ($printer->{AUTODETECT}) {
	$autodetect = 1;
	my $w = $in->wait_message(_("Printer auto-detection"), _("Scanning network..."));
	@autodetected = auto_detect(0, 1, 0);
	for my $p (@autodetected) {
	    my $menustr;
	    $p->{port} =~ m!^socket://([^:]+):(\d+)$!;
	    my $host = $1;
	    my $port = $2;
	    if ($p->{val}{DESCRIPTION}) {
		$menustr = $p->{val}{DESCRIPTION};
		$menustr .= _(", host \"%s\", port %s",
			      $host, $port);
	    } else {
		$menustr = _("Host \"%s\", port %s", $host, $port);
	    }
	    $menuentries->{$menustr} = $p->{port};
	    if (($host eq $remotehost) &&
		($host eq $remotehost)) {
		$menuchoice = $menustr;
	    }
	}
	@menuentrieslist = sort { 
	    $menuentries->{$a} cmp $menuentries->{$b};
	} keys(%{$menuentries});
	if (($printer->{configured}{$queue}) &&
	    ($printer->{currentqueue}{connect} =~ m!^(socket:|ptal:/hpjd:)!) &&
	    ($menuchoice eq "")) {
	    my $menustr;
	    if ($printer->{currentqueue}{make}) {
		$menustr = "$printer->{currentqueue}{make} $printer->{currentqueue}{model}";
		$menustr .= _(", host \"%s\", port %s",
			      $remotehost, $remoteport);
	    } else {
		$menustr = _("Host \"%s\", port %s",
			      $remotehost, $remoteport);
	    }
	    $menuentries->{$menustr} = "socket://$remotehost:$remoteport";
	    unshift(@menuentrieslist, $menustr);
	    $menuchoice = $menustr;
	}
	if ($#menuentrieslist < 0) {
	    $autodetect = 0;
	} elsif ($menuchoice eq "") {
	    $menuchoice = $menuentrieslist[0];
	    $menuentries->{$menuentrieslist[0]} =~ m!^socket://([^:]+):(\d+)$!;
	    $remotehost = $1;
	    $remoteport = $2;
	}
	$oldmenuchoice = $menuchoice;
    }

    return 0 if !$in->ask_from_
	({
	     title => _("TCP/Socket Printer Options"),
	     messages => ($autodetect ?
			  _("Choose one of the auto-detected printers from the list or enter the hostname or IP and the optional port number (default is 9100) into the input fields.") :
			  _("To print to a TCP or socket printer, you need to provide the host name or IP of the printer and optionally the port number (default is 9100). On HP JetDirect servers the port number is usually 9100, on other servers it can vary. See the manual of your hardware.")),
		 callbacks => {
		 complete => sub {
		     unless ($remotehost ne "") {
			 $in->ask_warn
			     ('', _("Printer host name or IP missing!"));
			 return (1,0);
		     }
		     unless ($remoteport =~ /^[0-9]+$/) {
			 $in->ask_warn('', _("The port number should be an integer!"));
			 return (1,1);
		     }
		     return 0;
		 },
		 changed => sub {
		     return 0 if !$autodetect;
		     if ($oldmenuchoice ne $menuchoice) {
			 $menuentries->{$menuchoice} =~ m!^socket://([^:]+):(\d+)$!;
			 $remotehost = $1;
			 $remoteport = $2;
			 $oldmenuchoice = $menuchoice;
		     }
		     return 0;
		 }
	     }
	 },
	 [
	  { label => ($autodetect ? "" : _("Printer host name or IP")),
	    val => \$remotehost },
	  { label => ($autodetect ? "" : _("Port")), val => \$remoteport },
	  ($autodetect ?
	   { val => \$menuchoice, list => \@menuentrieslist, 
	     not_edit => 0, format => \&translate, sort => 0,
	     allow_empty_list => 1, type => 'list' }
	   : ())
	  ]
	 );
    
    #- make the Foomatic URI
    $printer->{currentqueue}{connect} = 
	join '', ("socket://$remotehost", $remoteport ? (":$remoteport") : ());

    #- LPD and LPRng need netcat ('nc') to access to socket printers
    if ((($printer->{SPOOLER} eq 'lpd') || ($printer->{SPOOLER} eq 'lprng'))&& 
        (!$::testing) &&
        (!printer::files_exist((qw(/usr/bin/nc))))) {
        $in->do_pkgs->install('nc');
    }

    # Auto-detect printer model (works if host is an ethernet-connected
    # printer)
    my $modelinfo = undef;
    if ($printer->{AUTODETECT}) {
	$modelinfo = detect_devices::getSNMPModel ($remotehost);
    }
    my $auto_hpoj;
    if ((defined($modelinfo)) && ($modelinfo->{MANUFACTURER} ne "")) {
        $auto_hpoj = 1;
    } else {
	$auto_hpoj = 0;
    }

    # Do configuration of multi-function devices and look up model name
    # in the printer database
    setup_common ($printer, $in,
		  "$modelinfo->{MANUFACTURER} $modelinfo->{MODEL}", 
		  $printer->{currentqueue}{connect}, $auto_hpoj,
                  ({port => $printer->{currentqueue}{connect},
                    val => $modelinfo}));
    1;
}

sub setup_uri {
    my ($printer, $in, $upNetwork) = @_;

    $in->set_help('setupURI') if $::isInstall;
    return if !$in->ask_from(_("Printer Device URI"),
_("You can specify directly the URI to access the printer. The URI must fulfill either the CUPS or the Foomatic specifications. Note that not all URI types are supported by all the spoolers."), [
{ label => _("Printer Device URI"),
val => \$printer->{currentqueue}{connect},
list => [ $printer->{currentqueue}{connect},
	  "file:/",
	  "http://",
	  "ipp://",
	  "lpd://",
	  "smb://",
	  "ncp://",
	  "socket://",
	  "postpipe:\"\"",
	  ], not_edit => 0 }, ],
complete => sub {
    unless ($printer->{currentqueue}{connect} =~ /[^:]+:.+/) {
	$in->ask_warn('', _("A valid URI must be entered!"));
	return (1,0);
    }
    return 0;
}
    );

    # Non-local printer, check network and abort if no network available
    if (($printer->{currentqueue}{connect} !~ m!^file:/!) &&
        (!check_network($printer, $in, $upNetwork))) { return 0 };

    # If the chosen protocol needs additional software, install it.

    # LPD does not support filtered queues to a remote LPD server by itself
    # It needs an additional program as "rlpr"
    if (($printer->{currentqueue}{connect} =~ /^lpd:/) &&
	($printer->{SPOOLER} eq 'lpd') && (!$::testing) &&
        (!printer::files_exist((qw(/usr/bin/rlpr))))) {
        $in->do_pkgs->install('rlpr');
    }
    if (($printer->{currentqueue}{connect} =~ /^smb:/) &&
        (!$::testing) &&
        (!printer::files_exist((qw(/usr/bin/smbclient))))) {
	$in->do_pkgs->install('samba-client');
    }
    if (($printer->{currentqueue}{connect} =~ /^ncp:/) &&
	(!$::testing) &&
        (!printer::files_exist((qw(/usr/bin/nprint))))) {
	$in->do_pkgs->install('ncpfs');
    }
    #- LPD and LPRng need netcat ('nc') to access to socket printers
    if (($printer->{currentqueue}{connect} =~ /^socket:/) &&
	(($printer->{SPOOLER} eq 'lpd') || ($printer->{SPOOLER} eq 'lprng')) &&
        (!$::testing) &&
        (!printer::files_exist((qw(/usr/bin/nc))))) {
        $in->do_pkgs->install('nc');
    }

    if (($printer->{currentqueue}{connect} =~ m!^socket://([^:/]+)!) ||
        ($printer->{currentqueue}{connect} =~ m!^lpd://([^:/]+)!) ||
        ($printer->{currentqueue}{connect} =~ m!^http://([^:/]+)!) ||
        ($printer->{currentqueue}{connect} =~ m!^ipp://([^:/]+)!)) {
	
	# Auto-detect printer model (works if host is an ethernet-connected
	# printer)
	my $remotehost = $1;
	my $modelinfo = detect_devices::getSNMPModel ($remotehost);
        my $auto_hpoj;
        if ((defined($modelinfo)) && ($modelinfo->{MANUFACTURER} ne "")) {
            $in->ask_warn('', _("Detected model: %s %s",
                                $modelinfo->{MANUFACTURER},
				$modelinfo->{MODEL}));
            $auto_hpoj = 1;
        } else {
	    $auto_hpoj = 0;
        }

        # Do configuration of multi-function devices and look up model name
        # in the printer database
        setup_common ($printer, $in,
		      "$modelinfo->{MANUFACTURER} $modelinfo->{MODEL}", 
		      $printer->{currentqueue}{connect}, $auto_hpoj,
                      ({port => $printer->{currentqueue}{connect},
                        val => $modelinfo}));
    }

    1;
}

sub setup_postpipe {
    my ($printer, $in) = @_;

    $in->set_help('setupPostpipe') if $::isInstall;
    my $uri;
    my $commandline;
    my $queue = $printer->{OLD_QUEUE};
    if (($printer->{configured}{$queue}) &&
	($printer->{currentqueue}{connect} =~ m/^postpipe:/)) {
	$uri = $printer->{currentqueue}{connect};
	$uri =~ m!^\s*postpipe:\"(.*)\"$!;
	$commandline = $1;
    } else {
	$commandline = "";
    }

    return if !$in->ask_from(_("Pipe into command"),
_("Here you can specify any arbitrary command line into which the job should be piped instead of being sent directly to a printer."), [
{ label => _("Command line"),
val => \$commandline }, ],
complete => sub {
    unless ($commandline ne "") {
	$in->ask_warn('', _("A command line must be entered!"));
	return (1,0);
    }
    return 0;
}
);

    #- make the Foomatic URI
    $printer->{currentqueue}{connect} = "postpipe:$commandline";
    
    1;
}

sub setup_common {

    my ($printer, $in, $makemodel, $device, $do_auto_detect,
	@autodetected) = @_;

    #- Check whether the printer is an HP multi-function device and 
    #- configure HPOJ if it is one

    my $ptaldevice = "";
    my $isHPOJ = 0;
    if ($device !~ /^smb:/) {
	if (!$do_auto_detect) {
	    local $::isWizard = 0;
	    $isHPOJ = $in->ask_yesorno(_("Local Printer"),
				       _("Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet 2200?"), 0);
	}
	if (($makemodel =~ /HP\s+OfficeJet/i) ||
	    ($makemodel =~ /HP\s+PSC/i) ||
	    ($makemodel =~ /HP\s+PhotoSmart/i) ||
	    ($makemodel =~ /HP\s+LaserJet\s+1100/i) ||
	    ($makemodel =~ /HP\s+LaserJet\s+1200/i) ||
	    ($makemodel =~ /HP\s+LaserJet\s+1220/i) ||
	    ($makemodel =~ /HP\s+LaserJet\s+2200/i) ||
	    ($makemodel =~ /HP\s+LaserJet\s+3200/i) ||
	    ($makemodel =~ /HP\s+LaserJet\s+33.0/i) ||
	    ($isHPOJ)) {
	    # Install HPOJ package
	    if ((!$::testing) &&
		(!printer::files_exist((qw(/usr/sbin/ptal-mlcd
					   /usr/sbin/ptal-init
					   /usr/bin/xojpanel))))) {
		my $w = $in->wait_message('', _("Installing HPOJ package..."));
		$in->do_pkgs->install('hpoj', 'xojpanel');
	    }
	    # Configure and start HPOJ
	    my $w = $in->wait_message
		('', _("Checking device and configuring HPOJ..."));
	    $ptaldevice = printer::configure_hpoj($device, @autodetected);
	    
	    if ($ptaldevice) {
		# Configure scanning with SANE on the MF device
		if (($makemodel !~ /HP\s+PhotoSmart/i) &&
		    ($makemodel !~ /HP\s+LaserJet\s+2200/i)) {
		    # Install SANE
		    if ((!$::testing) &&
			(!printer::files_exist((qw(/usr/bin/scanimage
						   /usr/bin/xscanimage
						   /usr/bin/xsane
						   /etc/sane.d/dll.conf
						   /usr/lib/libsane-hpoj.so.1),
						(printer::files_exist
						 ('/usr/bin/gimp') ? 
						 '/usr/bin/xsane-gimp' : 
						 ()))))) {
			my $w = $in->wait_message
			    ('', _("Installing SANE packages..."));
			$in->do_pkgs->install('sane-backends',
					      'sane-frontends',
					      'xsane', 'libsane-hpoj0',
					      if_($in->do_pkgs->is_installed
						  ('gimp'),'xsane-gimp'));
		    }
		    # Configure the HPOJ SANE backend
		    printer::config_sane();
		}
		# Configure photo card access with mtools and MToolsFM
		if (($makemodel =~ /HP\s+PhotoSmart/i) ||
		    ($makemodel =~ /HP\s+PSC\s*9[05]0/i) ||
		    ($makemodel =~ /HP\s+OfficeJet\s+D\s*1[45]5/i)) {
		    # Install mtools and MToolsFM
		    if ((!$::testing) &&
			(!printer::files_exist(qw(/usr/bin/mdir
						  /usr/bin/mcopy
						  /usr/bin/MToolsFM
						  )))) {
			my $w = $in->wait_message
			    ('', _("Installing mtools packages..."));
			$in->do_pkgs->install('mtools', 'MToolsFM');
		    }
		    # Configure mtools/MToolsFM for photo card access
		    printer::config_photocard();
		}
		
		my $text = "";
		# Inform user about how to scan with his MF device
		$text = scanner_help($makemodel, "ptal:/$ptaldevice");
		if ($text) {
		    $in->ask_warn
			(_("Scanning on your HP multi-function device"),
			 $text);
		}
		# Inform user about how to access photo cards with his MF
		# device
		$text = photocard_help($makemodel, "ptal:/$ptaldevice");
		if ($text) {
		    $in->ask_warn(_("Photo memory card access on your HP multi-function device"),
				  $text);
		}
		# make the DeviceURI from $ptaldevice.
		$printer->{currentqueue}{connect} = "ptal:/" . $ptaldevice;
	    } else {
		# make the DeviceURI from $device.
		$printer->{currentqueue}{connect} = $device;
	    }
	} else {
	    # make the DeviceURI from $device.
	    $printer->{currentqueue}{connect} = $device;
	}
    } else {
	# make the DeviceURI from $device.
	$printer->{currentqueue}{connect} = $device;
    }

    if ($printer->{currentqueue}{connect} !~ /:/) {
	$printer->{currentqueue}{connect} =
	    "file:" . $printer->{currentqueue}{connect};
    }

    #- if CUPS is the spooler, make sure that CUPS knows the device
    if (($printer->{SPOOLER} eq "cups") &&
	($device !~ /^lpd:/) &&
	($device !~ /^smb:/) &&
	($device !~ /^socket:/) &&
	($device !~ /^http:/) &&
	($device !~ /^ipp:/)) {
	my $w = $in->wait_message
	    ('', _("Making printer port available for CUPS..."));
	if ($ptaldevice eq "") {
	    printer::assure_device_is_available_for_cups($device);
	} else {
	    printer::assure_device_is_available_for_cups($ptaldevice);
	}
    }

    #- Read the printer driver database if necessary
    if ((keys %printer::thedb) == 0) {
	my $w = $in->wait_message('', _("Reading printer database..."));
        printer::read_printer_db($printer->{SPOOLER});
    }

    #- Search the database entry which matches the detected printer best
    my $descr = "";
    foreach (@autodetected) {
	$device eq $_->{port} or next;
	if (($_->{val}{MANUFACTURER}) && ($_->{val}{MODEL})) {
	    $descr = "$_->{val}{MANUFACTURER} $_->{val}{MODEL}";
	} else {
	    $descr = $_->{val}{DESCRIPTION};
	}
	# Clean up the description from noise which makes the best match
	# difficult
	$descr =~ s/\s+Inc\.//;
	$descr =~ s/\s+Corp\.//;
	$descr =~ s/\s+SA\.//;
	$descr =~ s/\s+S\.\s*A\.//;
	$descr =~ s/\s+Ltd\.//;
	$descr =~ s/\s+International//;
	$descr =~ s/\s+Int\.//;
	$descr =~ s/\s+[Ss]eries//;
	$descr =~ s/\s+\(?[Pp]rinter\)?$//;
	$printer->{DBENTRY} = "";
	for my $entry (keys(%printer::thedb)) {
	    if ($entry =~ m!$descr!i) {
		$printer->{DBENTRY} = $entry;
		last;
	    }
	}
	if (!$printer->{DBENTRY}) {
	    $printer->{DBENTRY} =
		bestMatchSentence ($descr, keys %printer::thedb);
	}
        # If the manufacturer was not guessed correctly, discard the
        # guess.
        $printer->{DBENTRY} =~ /^([^\|]+)\|/;
        my $guessedmake = lc($1);
        if (($descr !~ /$guessedmake/i) &&
            (($guessedmake ne "hp") ||
             ($descr !~ /Hewlett[\s-]+Packard/i)))
            { $printer->{DBENTRY} = "" };
    }

    #- Pre-fill the "Description" field with the printer's model name
    if ((!$printer->{currentqueue}{desc}) && ($descr)) {
	$printer->{currentqueue}{desc} = $descr;
	$printer->{currentqueue}{desc} =~ s/\|/ /g;
    }

    #- When we have chosen a printer here, the question whether the
    #- automatically chosen model from the database is correct, should
    #- have "This model is correct" as default answer
    delete($printer->{MANUALMODEL});

    1;
}

sub choose_printer_name {
    my ($printer, $in) = @_;
    # Name, description, location
    $in->set_help('setupPrinterName') if $::isInstall;
    my $default = $printer->{currentqueue}{queue};
    $in->ask_from_
	(
	 { title => _("Enter Printer Name and Comments"),
	   #cancel => !$printer->{configured}{$queue} ? '' : _("Remove queue"),
	   callbacks => { complete => sub {
	       unless ($printer->{currentqueue}{queue} =~ /^\w+$/) {
		   $in->ask_warn('', _("Name of printer should contain only letters, numbers and the underscore"));
		   return (1,0);
	       }
	       local $::isWizard = 0;
	       if (($printer->{configured}{$printer->{currentqueue}{queue}})
		   && ($printer->{currentqueue}{queue} ne $default) && 
		   (!$in->ask_yesorno('', _("The printer \"%s\" already exists,\ndo you really want to overwrite its configuration?",
					    $printer->{currentqueue}{queue}),
				      0))) {
		   return (1,0); # Let the user correct the name
	       }
	       return 0;
	   },
		      },
	   messages =>
_("Every printer needs a name (for example \"printer\"). The Description and Location fields do not need to be filled in. They are comments for the users.") }, 
	 [ { label => _("Name of printer"), val => \$printer->{currentqueue}{queue} },
	   { label => _("Description"), val => \$printer->{currentqueue}{desc} },
	   { label => _("Location"), val => \$printer->{currentqueue}{loc} },
	 ]) or return 0;

    $printer->{QUEUE} = $printer->{currentqueue}{queue};
    1;
}

sub get_db_entry {
    my ($printer, $in) = @_;
    #- Read the printer driver database if necessary
    if ((keys %printer::thedb) == 0) {
	my $w = $in->wait_message('', _("Reading printer database..."));
        printer::read_printer_db($printer->{SPOOLER});
    }
    my $w = $in->wait_message('', _("Preparing printer database..."));
    my $queue = $printer->{OLD_QUEUE};
    if ($printer->{configured}{$queue}) {
	# The queue was already configured
	if ($printer->{configured}{$queue}{queuedata}{foomatic}) {
	    # The queue was configured with Foomatic
	    my $driverstr;
	    if ($printer->{configured}{$queue}{queuedata}{driver} eq "Postscript") {
		$driverstr = "PostScript";
	    } else {
		$driverstr = "GhostScript + $printer->{configured}{$queue}{queuedata}{driver}";
	    }
	    my $make = uc($printer->{configured}{$queue}{queuedata}{make});
	    my $model =	$printer->{configured}{$queue}{queuedata}{model};
	    if ($::expert) {
		$printer->{DBENTRY} = "$make|$model|$driverstr";
		# database key contains the "(recommended)" for the
		# recommended driver, so add it if necessary
		if (!member($printer->{DBENTRY}, keys(%printer::thedb))) {
		    $printer->{DBENTRY} .= " (recommended)";
		}
	    } else {
		$printer->{DBENTRY} = "$make|$model";
	    }
	    $printer->{OLD_CHOICE} = $printer->{DBENTRY};
	} elsif (($printer->{SPOOLER} eq "cups") && ($::expert) &&
		 ($printer->{configured}{$queue}{queuedata}{ppd})) {
	    # Do we have a native CUPS driver or a PostScript PPD file?
	    $printer->{DBENTRY} = printer::get_descr_from_ppd($printer) || $printer->{DBENTRY};
	    $printer->{OLD_CHOICE} = $printer->{DBENTRY};
	} else {
	    # Point the list cursor at least to manufacturer and model of the
	    # printer
	    $printer->{DBENTRY} = "";
	    my $make = uc($printer->{configured}{$queue}{queuedata}{make});
	    my $model = $printer->{configured}{$queue}{queuedata}{model};
	    my $key;
	    for $key (keys %printer::thedb) {
		if ((($::expert) && ($key =~ /^$make\|$model\|.*\(recommended\)$/)) ||
		    ((!$::expert) && ($key =~ /^$make\|$model$/))) {
		    $printer->{DBENTRY} = $key;
		}
	    }
	    if ($printer->{DBENTRY} eq "") {
		# Exact match of make and model did not work, try to clean
		# up the model name
		$model =~ s/PS//;
		$model =~ s/PostScript//;
		$model =~ s/Series//;
		for $key (keys %printer::thedb) {
		    if ((($::expert) && ($key =~ /^$make\|$model\|.*\(recommended\)$/)) ||
			((!$::expert) && ($key =~ /^$make\|$model$/))) {
			$printer->{DBENTRY} = $key;
		    }
		}
	    }
	    if (($printer->{DBENTRY} eq "") && ($make ne "")) {
		# Exact match with cleaned-up model did not work, try a best match
		my $matchstr = "$make|$model";
		$printer->{DBENTRY} = bestMatchSentence($matchstr, keys %printer::thedb);
		# If the manufacturer was not guessed correctly, discard the
		# guess.
		$printer->{DBENTRY} =~ /^([^\|]+)\|/;
		my $guessedmake = lc($1);
		if (($matchstr !~ /$guessedmake/i) &&
		    (($guessedmake ne "hp") ||
		     ($matchstr !~ /Hewlett[\s-]+Packard/i)))
		{ $printer->{DBENTRY} = "" };
	    }
	    # Set the OLD_CHOICE to a non-existing value
	    $printer->{OLD_CHOICE} = "XXX";
	}
    } else {
	if (($::expert) && ($printer->{DBENTRY} !~ /(recommended)/)) {
	    my ($make, $model) = $printer->{DBENTRY} =~ /^([^\|]+)\|([^\|]+)\|/;
	    for my $key (keys %printer::thedb) {
		if ($key =~ /^$make\|$model\|.*\(recommended\)$/) {
		    $printer->{DBENTRY} = $key;
		}
	    }
	}
	$printer->{OLD_CHOICE} = $printer->{DBENTRY};
    }
}

sub is_model_correct {
    my ($printer, $in) = @_;
    $in->set_help('chooseModel') if $::isInstall;
    my $dbentry = $printer->{DBENTRY};
    if (!$dbentry) {
	# If printerdrake could not determine the model, omit this dialog and
	# let the user choose manually.
	$printer->{MANUALMODEL} = 1;
	return 1;
    }
    $dbentry =~ s/\|/ /g;
    my $res = $in->ask_from_list_
	    (_("Your printer model"),
	     _("Printerdrake has compared the model name resulting from the printer auto-detection with the models listed in its printer database to find the best match. This choice can be wrong, especially when your printer is not listed at all in the database. So check whether the choice is correct and click \"The model is correct\" if so and if not, click \"Select model manually\" so that you can choose your printer model manually on the next screen.

For your printer Printerdrake has found:

%s", $dbentry),
	     [_("The model is correct"),
	      _("Select model manually")],
	     ($printer->{MANUALMODEL} ? _("Select model manually") : 
	      _("The model is correct")));
    return 0 if !$res;
    $printer->{MANUALMODEL} = ($res eq _("Select model manually"));
    1;
}

sub choose_model {
    my ($printer, $in) = @_;
    $in->set_help('chooseModel') if $::isInstall;
    #- Read the printer driver database if necessary
    if ((keys %printer::thedb) == 0) {
	my $w = $in->wait_message('', _("Reading printer database..."));
        printer::read_printer_db($printer->{SPOOLER});
    }
    if (!member($printer->{DBENTRY}, keys(%printer::thedb))) {
	$printer->{DBENTRY} = _("Raw printer (No driver)");
    }
    # Choose the printer/driver from the list
    return ($printer->{DBENTRY} = $in->ask_from_treelist(_("Printer model selection"),
							 _("Which printer model do you have?") .
							 _("

Please check whether Printerdrake did the auto-detection of your printer model correctly. Search the correct model in the list when the cursor is standing on a wrong model or on \"Raw printer\".") . " " .
_("If your printer is not listed, choose a compatible (see printer manual) or a similar one."), '|',
							 [ keys %printer::thedb ], $printer->{DBENTRY}));

}

sub get_printer_info {
    my ($printer, $in) = @_;
    #- Read the printer driver database if necessary
    #if ((keys %printer::thedb) == 0) {
    #    my $w = $in->wait_message('', _("Reading printer database..."));
    #    printer::read_printer_db($printer->{SPOOLER});
    #}
    my $queue = $printer->{OLD_QUEUE};
    my $oldchoice = $printer->{OLD_CHOICE};
    my $newdriver = 0;
    if ((!$printer->{configured}{$queue}) ||      # New queue  or
	(($oldchoice) && ($printer->{DBENTRY}) && # make/model/driver changed
	 (($oldchoice ne $printer->{DBENTRY}) ||
	  ($printer->{currentqueue}{driver} ne 
	   $printer::thedb{$printer->{DBENTRY}}{driver})))) {
	delete($printer->{currentqueue}{printer});
	delete($printer->{currentqueue}{ppd});
	$printer->{currentqueue}{foomatic} = 0;
	# Read info from printer database
	foreach (qw(printer ppd driver make model)) { #- copy some parameter, shorter that way...
	    $printer->{currentqueue}{$_} = $printer::thedb{$printer->{DBENTRY}}{$_};
	}
	$newdriver = 1;
    }
    # Use the "printer" and not the "foomatic" field to identify a Foomatic
    # queue because in a new queue "foomatic" is not set yet.
    if (($printer->{currentqueue}{printer}) || # We have a Foomatic queue
	($printer->{currentqueue}{ppd})) { # We have a CUPS+PPD queue
	if ($printer->{currentqueue}{printer}) { # Foomatic queue?
	    # In case of a new queue "foomatic" was not set yet
	    $printer->{currentqueue}{foomatic} = 1;
	    # Now get the options for this printer/driver combo
	    if (($printer->{configured}{$queue}) && ($printer->{configured}{$queue}{queuedata}{foomatic})) {
		# The queue was already configured with Foomatic ...
		if (!$newdriver) {
		    # ... and the user didn't change the printer/driver
		    $printer->{ARGS} = $printer->{configured}{$queue}{args};
		} else {
		    # ... and the user has chosen another printer/driver
		    $printer->{ARGS} = printer::read_foomatic_options($printer);
		}
	    } else {
		# The queue was not configured with Foomatic before
		# Set some special options
		$printer->{SPECIAL_OPTIONS} = '';
		# Default page size depending on the country/language
		# (US/Canada -> Letter, Others -> A4)
		my $pagesize;
		if ($printer->{PAPERSIZE}) {
		    $printer->{SPECIAL_OPTIONS} .= 
			" -o PageSize=$printer->{PAPERSIZE}";
		} elsif (($pagesize = $in->{lang}) ||
			 ($pagesize = $ENV{LC_PAPER}) ||
			 ($pagesize = $ENV{LANG}) ||
			 ($pagesize = $ENV{LANGUAGE}) ||
			 ($pagesize = $ENV{LC_ALL})) {
		    if (($pagesize =~ /^en_CA/) ||
			($pagesize =~ /^fr_CA/) || 
			($pagesize =~ /^en_US/)) {
			$pagesize = "Letter";
		    } else {
			$pagesize = "A4";
		    }
		    $printer->{SPECIAL_OPTIONS} .= 
			" -o PageSize=$pagesize";
		}
		# oki4w driver -> OKI winprinter which needs the
		# oki4daemon to work
		if ($printer->{currentqueue}{driver} eq 'oki4w') {
		    if ($printer->{currentqueue}{connect} ne 
			'file:/dev/lp0') {
			$in->ask_warn(_("OKI winprinter configuration"),
				      _("You are configuring an OKI laser winprinter. These printers\nuse a very special communication protocol and therefore they work only when connected to the first parallel port. When your printer is connected to another port or to a print server box please connect the printer to the first parallel port before you print a test page. Otherwise the printer will not work. Your connection type setting will be ignored by the driver."));
		    }
		    $printer->{currentqueue}{connect} = 'file:/dev/null';
		    # Start the oki4daemon
		    printer::start_service_on_boot('oki4daemon');
		    printer::start_service('oki4daemon');
		    # Set permissions
		    if ($printer->{SPOOLER} eq 'cups') {
			printer::set_permissions('/dev/oki4drv', '660', 'lp',
						 'sys');
		    } elsif ($printer->{SPOOLER} eq 'pdq') {
			printer::set_permissions('/dev/oki4drv', '666');
		    } else {
			printer::set_permissions('/dev/oki4drv', '660', 'lp',
						 'lp');
		    }
		} elsif ($printer->{currentqueue}{driver} eq 'lexmarkinkjet') {
		    # Set "Port" option
		    if ($printer->{currentqueue}{connect} eq 
			'file:/dev/lp0') {
			$printer->{SPECIAL_OPTIONS} .= 
			    " -o Port=ParPort1";
		    } elsif ($printer->{currentqueue}{connect} eq 
			'file:/dev/lp1') {
			$printer->{SPECIAL_OPTIONS} .= 
			    " -o Port=ParPort2";
		    } elsif ($printer->{currentqueue}{connect} eq 
			'file:/dev/lp2') {
			$printer->{SPECIAL_OPTIONS} .= 
			    " -o Port=ParPort3";
		    } elsif ($printer->{currentqueue}{connect} eq 
			'file:/dev/usb/lp0') {
			$printer->{SPECIAL_OPTIONS} .= 
			    " -o Port=USB1";
		    } elsif ($printer->{currentqueue}{connect} eq 
			'file:/dev/usb/lp1') {
			$printer->{SPECIAL_OPTIONS} .= 
			    " -o Port=USB2";
		    } elsif ($printer->{currentqueue}{connect} eq 
			'file:/dev/usb/lp2') {
			$printer->{SPECIAL_OPTIONS} .= 
			    " -o Port=USB3";
		    } else {
			$in->ask_warn(_("Lexmark inkjet configuration"),
				      _("The inkjet printer drivers provided by Lexmark only support local printers, no printers on remote machines or print server boxes. Please connect your printer to a local port or configure it on the machine where it is connected to."));
			return 0;
		    }
		    # Set device permissions
		    $printer->{currentqueue}{connect} =~ /^\s*file:(\S*)\s*$/;
		    if ($printer->{SPOOLER} eq 'cups') {
			printer::set_permissions($1, '660', 'lp', 'sys');
		    } elsif ($printer->{SPOOLER} eq 'pdq') {
			printer::set_permissions($1, '666');
		    } else {
			printer::set_permissions($1, '660', 'lp', 'lp');
		    }
		    # This is needed to have the device not blocked by the
		    # spooler backend.
		    $printer->{currentqueue}{connect} = 'file:/dev/null';
		    #install packages
		    my $drivertype = $printer->{currentqueue}{model};
		    if ($drivertype eq 'Z22') { $drivertype = 'Z32' }
		    if ($drivertype eq 'Z23') { $drivertype = 'Z33' }
		    $drivertype = lc($drivertype);
		    if (!printer::files_exist("/usr/local/lexmark/$drivertype/$drivertype")) {
			eval { $in->do_pkgs->install("lexmark-drivers-$drivertype") };
		    }
		    if (!printer::files_exist("/usr/local/lexmark/$drivertype/$drivertype")) {
			# Driver installation failed, probably we do not have
			# the commercial CDs
			$in->ask_warn(_("Lexmark inkjet configuration"),
				      _("To be able to print with your Lexmark inkjet and this configuration, you need the inkjet printer drivers provided by Lexmark (http://www.lexmark.com/). Go to the US site and click on the \"Drivers\" button. Then choose your model and afterwards \"Linux\" as operating system. The drivers come as RPM packages or shell scripts with interactive graphical installation. You do not need to do this configuration by the graphical frontends. Cancel directly after the license agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and adjust the head alignment settings with this program."));
		    }
		}
		$printer->{ARGS} = printer::read_foomatic_options($printer);
		delete($printer->{SPECIAL_OPTIONS});
	    }
	} elsif ($printer->{currentqueue}{ppd}) { # CUPS+PPD queue?
	    # If we had a Foomatic queue before, unmark the flag and initialize
	    # the "printer" and "driver" fields
	    $printer->{currentqueue}{foomatic} = 0;
	    $printer->{currentqueue}{printer} = undef;
	    $printer->{currentqueue}{driver} = "CUPS/PPD";
	    # Now get the options from this PPD file
	    if ($printer->{configured}{$queue}) {
		# The queue was already configured
		if ((!$printer->{DBENTRY}) || (!$oldchoice) ||
		    ($printer->{DBENTRY} eq $oldchoice)) {
		    # ... and the user didn't change the printer/driver
		    $printer->{ARGS} = printer::read_cups_options($queue);
		} else {
		    # ... and the user has chosen another printer/driver
		    $printer->{ARGS} = printer::read_cups_options("/usr/share/cups/model/$printer->{currentqueue}{ppd}");
		}
	    } else {
		# The queue was not configured before
		$printer->{ARGS} = printer::read_cups_options("/usr/share/cups/model/$printer->{currentqueue}{ppd}");
	    }
	}
    }
    1;
}

sub setup_options {
    my ($printer, $in) = @_;
    my @simple_options = 
	("PageSize",        # Media properties
	 "MediaType",
	 "Form",
	 "InputSlot",       # Trays
	 "Tray",
	 "OutBin",
	 "OutputBin",
	 "FaceUp",
	 "FaceDown",
	 "Collate",
	 "Manual",
	 "ManualFeed",
	 "Manualfeed",
	 "ManualFeeder",
	 "Feeder",
	 "Duplex",          # Double-sided printing
	 "Binding",
	 "Tumble",
	 "DoubleSided",
	 "Resolution",      # Resolution/Quality
	 "GSResolution",
	 "JCLResolution",
	 "Quality",
	 "PrintQuality",
	 "PrintoutQuality",
	 "QualityType",
	 "ImageType",
	 "stpImageType",
	 "InkType",         # Colour/Gray/BW, 4-ink/6-ink
	 "stpInkType",
	 "Mode",
	 "OutputMode",
	 "OutputType",
	 "ColorMode",
	 "ColorModel",
	 "PrintingMode",
	 "Monochrome",
	 "BlackOnly",
	 "Grayscale",
	 "GrayScale",
	 "Colour",
	 "Color",
	 "Gamma",           # Lighter/Darker
	 "GammaCorrection",
	 "GammaGeneral",
	 "MasterGamma",
	 "StpGamma",
	 "stpGamma",
	 "EconoMode",       # Ink/Toner saving
	 "Economode",
	 "TonerSaving",
	 "JCLEconomode",
	 "HPNup",           # Other useful options
	 "InstalledMemory", # Laser printer hardware config
	 "Option1",
	 "Option2",
	 "Option3",
	 "Option4",
	 "Option5",
	 "Option6",
	 "Option7",
	 "Option8",
	 "Option9",
	 "Option10",
	 "Option11",
	 "Option12",
	 "Option13",
	 "Option14",
	 "Option15",
	 "Option16",
	 "Option17",
	 "Option18",
	 "Option19",
	 "Option20",
	 "Option21",
	 "Option22",
	 "Option23",
	 "Option24",
	 "Option25",
	 "Option26",
	 "Option27",
	 "Option28",
	 "Option29",
	 "Option30"
	 );
    $in->set_help('setupOptions') if $::isInstall;
    if (($printer->{currentqueue}{printer}) || # We have a Foomatic queue
	($printer->{currentqueue}{ppd})) { # We have a CUPS+PPD queue
	# Set up the widgets for the option dialog
	my @widgets;
	my @userinputs;
	my @choicelists;
	my @shortchoicelists;
	my $i;
	for ($i = 0; $i <= $#{$printer->{ARGS}}; $i++) {
	    my $optshortdefault = $printer->{ARGS}[$i]{default};
	    if ($printer->{ARGS}[$i]{type} eq 'enum') {
		# enumerated option
		push(@choicelists, []);
		push(@shortchoicelists, []);
		my $choice;
		for $choice (@{$printer->{ARGS}[$i]{vals}}) {
		    push(@{$choicelists[$i]}, $choice->{comment});
		    push(@{$shortchoicelists[$i]}, $choice->{value});
		    if ($choice->{value} eq $optshortdefault) {
			push(@userinputs, $choice->{comment});
		    }
		}
		push(@widgets,
		     { label => $printer->{ARGS}[$i]{comment}, 
		       val => \$userinputs[$i], 
		       not_edit => 1,
		       list => \@{$choicelists[$i]},
		       advanced => !member($printer->{ARGS}[$i]{name},
					   @simple_options) });
	    } elsif ($printer->{ARGS}[$i]{type} eq 'bool') {
		# boolean option
		push(@choicelists, [$printer->{ARGS}[$i]{name}, 
				    $printer->{ARGS}[$i]{name_false}]);
		push(@shortchoicelists, []);
		push(@userinputs, $choicelists[$i][1-$optshortdefault]);
		push(@widgets,
		     { label => $printer->{ARGS}[$i]{comment},
		       val => \$userinputs[$i],
		       not_edit => 1,
		       list => \@{$choicelists[$i]},
		       advanced => !member($printer->{ARGS}[$i]{name},
					   @simple_options) });
	    } else {
		# numerical option
		push(@choicelists, []);
		push(@shortchoicelists, []);
		push(@userinputs, $optshortdefault);
		push(@widgets,
		     { label => $printer->{ARGS}[$i]{comment} . 
			   " ($printer->{ARGS}[$i]{min}... " .
			       "$printer->{ARGS}[$i]{max})",
			   #type => 'range',
			   #min => $printer->{ARGS}[$i]{min},
			   #max => $printer->{ARGS}[$i]{max},
			   val => \$userinputs[$i],
			   advanced => !member($printer->{ARGS}[$i]{name},
					       @simple_options) });
	    }
	}
	# Show the options dialog. The call-back function does a
	# range check of the numerical options.
	my $windowtitle = "$printer->{currentqueue}{make} $printer->{currentqueue}{model}";
	if ($::expert) {
	    my $driver;
	    if ($driver = $printer->{currentqueue}{driver}) {
		if ($printer->{currentqueue}{foomatic}) {
		    if ($driver eq 'Postscript') {
			$driver = "PostScript";
		    } else {
			$driver = "GhostScript + $driver";
		    }
		} elsif ($printer->{currentqueue}{ppd}) {
		    if ($printer->{DBENTRY}) {
			$printer->{DBENTRY} =~ /^[^\|]*\|[^\|]*\|(.*)$/;
			$driver = $1;
		    } else {
			$driver = printer::get_descr_from_ppd($printer);
			if ($driver =~ /^[^\|]*\|[^\|]*$/) { # No driver info
			    $driver = "CUPS/PPD";
			} else {
			    $driver =~ /^[^\|]*\|[^\|]*\|(.*)$/;
			    $driver = $1;
			}
		    }
		}
	    } 
	    if ($driver) {
		$windowtitle .= ", $driver";
	    }
	}
	# Do not show the options setup dialog when installing a new printer
	# in recommended mode without "Manual configuration" turned on.
	if ((!$printer->{NEW}) or ($::expert) or ($printer->{MANUAL})) {
	    return 0 if !$in->ask_from
		($windowtitle,
		 _("Printer default settings

You should make sure that the page size and the ink type/printing mode (if available) and also the hardware configuration of laser printers (memory, duplex unit, extra trays) are set correctly. Note that with a very high printout quality/resolution printing can get substantially slower."),
		 \@widgets,
		 complete => sub {
		     my $i;
		     for ($i = 0; $i <= $#{$printer->{ARGS}}; $i++) {
			 if (($printer->{ARGS}[$i]{type} eq 'int') || ($printer->{ARGS}[$i]{type} eq 'float')) {
			     unless (($printer->{ARGS}[$i]{type} ne 'int') || ($userinputs[$i] =~ /^[\-\+]?[0-9]+$/)) {
				 $in->ask_warn('', _("Option %s must be an integer number!", $printer->{ARGS}[$i]{comment}));
				 return (1, $i);
			     }
			     unless (($printer->{ARGS}[$i]{type} ne 'float') || ($userinputs[$i] =~ /^[\-\+]?[0-9\.]+$/)) {
				 $in->ask_warn('', _("Option %s must be a number!", $printer->{ARGS}[$i]{comment}));
				 return (1, $i);
			     }
			     unless (($userinputs[$i] >= $printer->{ARGS}[$i]{min}) &&
				     ($userinputs[$i] <= $printer->{ARGS}[$i]{max})) {
				 $in->ask_warn('', _("Option %s out of range!", $printer->{ARGS}[$i]{comment}));
				 return (1, $i);
			     }
			 }
		     }
		     return (0);
		 } );
	}
	# Read out the user's choices and generate the appropriate command
	# line arguments
	@{$printer->{currentqueue}{options}} = ();
	for ($i = 0; $i <= $#{$printer->{ARGS}}; $i++) {
	    push(@{$printer->{currentqueue}{options}}, "-o");
	    if ($printer->{ARGS}[$i]{type} eq 'enum') {
		# enumerated option
		my $j;
		for ($j = 0; $j <= $#{$choicelists[$i]}; $j++) {
		    if ($choicelists[$i][$j] eq $userinputs[$i]) {
			push(@{$printer->{currentqueue}{options}}, $printer->{ARGS}[$i]{name} . "=". $shortchoicelists[$i][$j]);
		    }
		}
	    } elsif ($printer->{ARGS}[$i]{type} eq 'bool') {
		# boolean option
		push(@{$printer->{currentqueue}{options}}, $printer->{ARGS}[$i]{name} . "=".
		     (($choicelists[$i][0] eq $userinputs[$i]) ? "1" : "0"));
	    } else {
		# numerical option
		push(@{$printer->{currentqueue}{options}}, $printer->{ARGS}[$i]{name} . "=" . $userinputs[$i]);
	    }
	}
    }
    1;
}

sub setasdefault {
    my ($printer, $in) = @_;
    $in->set_help('setupAsDefault') if $::isInstall;
    if (($printer->{DEFAULT} eq '') || # We have no default printer,
	                               # so set the current one as default
	($in->ask_yesorno('', _("Do you want to set this printer (\"%s\")\nas the default printer?", $printer->{QUEUE}), 0))) { # Ask the user
	$printer->{DEFAULT} = $printer->{QUEUE};
        printer::set_default_printer($printer);
    }
}
	
sub print_testpages {
    my ($printer, $in, $upNetwork) = @_;
    $in->set_help('printTestPages') if $::isInstall;
    # print test pages
    my $standard = 1;
    my $altletter = 0;
    my $alta4 = 0;
    my $photo = 0;
    my $ascii = 0;
    my $res2 = 0;
    my $res1 = $in->ask_from_
	({ title => _("Test pages"),
	   messages => _("Please select the test pages you want to print.
Note: the photo test page can take a rather long time to get printed and on laser printers with too low memory it can even not come out. In most cases it is enough to print the standard test page."),
          cancel => ((!$printer->{NEW}) ?
		     _("Cancel") : ($::isWizard ? _("<- Previous") : 
				    _("No test pages"))),
          ok => ($::isWizard ? _("Next ->") : _("Print"))},
	 [
	  { text => _("Standard test page"), type => 'bool',
	    val => \$standard },
	  ($::expert ?
	   { text => _("Alternative test page (Letter)"), type => 'bool', 
	     val => \$altletter } : ()),
	  ($::expert ?
	   { text => _("Alternative test page (A4)"), type => 'bool', 
	     val => \$alta4 } : ()), 
	  { text => _("Photo test page"), type => 'bool', val => \$photo },
	  #{ text => _("Plain text test page"), type => 'bool',
	  #  val => \$ascii }
	  ($::isWizard ?
	   { text => _("Do not print any test page"), type => 'bool', 
	     val => \$res2 } : ())
	  ]);
    $res2 = 1 if (!($standard || $altletter || $alta4 || $photo ||
		    $ascii));
    if ($res1 && !$res2) {
	my @lpq_output;
	{
	    my $w = $in->wait_message('', _("Printing test page(s)..."));
	    
	    $upNetwork and do { &$upNetwork(); undef $upNetwork; sleep(1) };
	    my $stdtestpage = "/usr/share/printer-testpages/testprint.ps";
	    my $altlttestpage = "/usr/share/printer-testpages/testpage.ps";
	    my $alta4testpage = "/usr/share/printer-testpages/testpage-a4.ps";
	    my $phototestpage = "/usr/share/printer-testpages/photo-testpage.jpg";
	    my $asciitestpage = "/usr/share/printer-testpages/testpage.asc";
	    my @testpages;
	    # Install the filter to convert the photo test page to PS
	    if (($photo) && (!$::testing) &&
		(!printer::files_exist((qw(/usr/bin/convert))))) {
		$in->do_pkgs->install('ImageMagick');
	    }
	    # set up list of pages to print
	    $standard && push (@testpages, $stdtestpage);
	    $altletter && push (@testpages, $altlttestpage);
	    $alta4 && push (@testpages, $alta4testpage);
	    $photo && push (@testpages, $phototestpage);
	    $ascii && push (@testpages, $asciitestpage);
	    # print the stuff
	    @lpq_output = printer::print_pages($printer, @testpages);
	}
	my $dialogtext;
	if (@lpq_output) {
	    $dialogtext = _("Test page(s) have been sent to the printer.
It may take some time before the printer starts.
Printing status:\n%s\n\n", @lpq_output);
	} else {
	    $dialogtext = _("Test page(s) have been sent to the printer.
It may take some time before the printer starts.\n");
	}
	if ($printer->{NEW} == 0) {
	    $in->ask_warn('',$dialogtext);
	    return 1;
	} else {
	    $in->ask_yesorno('',$dialogtext . _("Did it work properly?"), 1) 
		and return 1;
	}
    } else {
	return ($::isWizard ? $res1 : 1) ;
    }
    return 2;
}

sub printer_help {
    my ($printer, $in) = @_;
    my $spooler = $printer->{SPOOLER};
    my $queue = $printer->{QUEUE};
    my $default = $printer->{DEFAULT};
    my $raw = 0;
    my $cupsremote = 0;
    my $scanning = "";
    my $photocard = "";
    if ($printer->{configured}{$queue}) {
	if (($printer->{configured}{$queue}{queuedata}{model} eq
	     _("Unknown model")) ||
	    ($printer->{configured}{$queue}{queuedata}{model} eq
	     _("Raw printer"))) {
	    $raw = 1;
	}
	# Information about scanning with HP's multi-function devices
	$scanning = scanner_help
	    ($printer->{configured}{$queue}{queuedata}{make} . " " .
	     $printer->{configured}{$queue}{queuedata}{model}, 
	     $printer->{configured}{$queue}{queuedata}{connect});
	if ($scanning) {
	    $scanning = "\n\n$scanning\n\n";
	}
	# Information about photo card access with HP's multi-function devices
	$photocard = photocard_help
	    ($printer->{configured}{$queue}{queuedata}{make} . " " .
	     $printer->{configured}{$queue}{queuedata}{model}, 
	     $printer->{configured}{$queue}{queuedata}{connect});
	if ($photocard) {
	    $photocard = "\n\n$photocard\n\n";
	}
    } else {
	$cupsremote = 1;
    }

    my $dialogtext;
    if ($spooler eq "cups") {
	$dialogtext =
_("To print a file from the command line (terminal window) you can either use the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or \"kprinter <file>\". The graphical tools allow you to choose the printer and to modify the option settings easily.
", ($queue ne $default ? "lpr -P $queue" : "lpr")) .
_("These commands you can also use in the \"Printing command\" field of the printing dialogs of many applications, but here do not supply the file name because the file to print is provided by the application.
") .
(!$raw ?
_("
The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". ", "lpr", ($queue ne $default ? "lpr -P $queue -o option=setting -o switch" : "lpr -o option=setting -o switch")) .
(!$cupsremote ?
 _("To know about the options available for the current printer read either the list shown below or click on the \"Print option list\" button.%s%s

", $scanning, $photocard) . printer::lphelp_output($printer) : 
 $scanning . $photocard .
 _("Here is a list of the available printing options for the current printer:

") . printer::lphelp_output($printer)) : $scanning . $photocard);
    } elsif ($spooler eq "lprng") {
	$dialogtext =
_("To print a file from the command line (terminal window) use the command \"%s <file>\".
", ($queue ne $default ? "lpr -P $queue" : "lpr")) . 
_("This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.
") .
(!$raw ?
_("
The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". ", "lpr", ($queue ne $default ? "lpr -P $queue -Z option=setting -Z switch" : "lpr -Z option=setting -Z switch")) .
_("To get a list of the options available for the current printer click on the \"Print option list\" button." . $scanning . $photocard) : $scanning . $photocard);
    } elsif ($spooler eq "lpd") {
	$dialogtext =
_("To print a file from the command line (terminal window) use the command \"%s <file>\".
", ($queue ne $default ? "lpr -P $queue" : "lpr")) .
_("This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.
") .
(!$raw ?
_("
The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". ", "lpr", ($queue ne $default ? "lpr -P $queue -o option=setting -o switch" : "lpr -o option=setting -o switch")) .
_("To get a list of the options available for the current printer click on the \"Print option list\" button." . $scanning . $photocard) : $scanning . $photocard);
    } elsif ($spooler eq "pdq") {
	$dialogtext =
_("To print a file from the command line (terminal window) use the command \"%s <file>\" or \"%s <file>\".
", ($queue ne $default ? "pdq -P $queue" : "pdq"), ($queue ne $default ? "lpr -P $queue" : "lpr")) .
_("This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.
") .
_("You can also use the graphical interface \"xpdq\" for setting options and handling printing jobs.
If you are using KDE as desktop environment you have a \"panic button\", an icon on the desktop, labeled with \"STOP Printer!\", which stops all print jobs immediately when you click it. This is for example useful for paper jams.
") .
(!$raw ?
_("
The \"%s\" and \"%s\" commands also allow to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\".
", "pdq", "lpr", ($queue ne $default ? "pdq -P $queue -aoption=setting -oswitch" : "pdq -aoption=setting -oswitch")) .
_("To know about the options available for the current printer read either the list shown below or click on the \"Print option list\" button.%s%s

", $scanning, $photocard) . printer::pdqhelp_output($printer) :
 $scanning . $photocard);
    }
    my $windowtitle = ($scanning ?
                       ($photocard ?
			_("Printing/Scanning/Photo Cards on \"%s\"", $queue) :
			_("Printing/Scanning on \"%s\"", $queue)) :
                       ($photocard ?
			_("Printing/Photo Card Access on \"%s\"", $queue) :
			_("Printing on the printer \"%s\"", $queue)));
    if (!$raw && !$cupsremote) {
        my $choice;
        while ($choice ne _("Close")) {
	    $choice = $in->ask_from_list_
	        ($windowtitle, $dialogtext,
		 [ _("Print option list"), _("Close") ],
		 _("Close"));
	    if ($choice ne _("Close")) {
		my $w = $in->wait_message('', _("Printing test page(s)..."));
	        printer::print_optionlist($printer);
	    }
	}
    } else {
	$in->ask_warn($windowtitle, $dialogtext);
    }
}

sub scanner_help {
    my ($makemodel, $deviceuri) = @_;
    if ($deviceuri =~ m!^ptal:/(.*)$!) {
	my $ptaldevice = $1;
	if (($makemodel !~ /HP\s+PhotoSmart/i) &&
	    ($makemodel !~ /HP\s+LaserJet\s+2200/i)) {
	    # Models with built-in scanner
	    return _("Your HP multi-function device was configured automatically to be able to scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the scanner when you have more than one) from the command line or with the graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, you can also scan by choosing the appropriate point in the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command line to get more information.

Do not use \"scannerdrake\" for this device!",
		     $ptaldevice);
	} else {
	    # Scanner-less models
	    return "";
	}
    }
}

sub photocard_help {
    my ($makemodel, $deviceuri) = @_;
    if ($deviceuri =~ m!^ptal:/(.*)$!) {
	my $ptaldevice = $1;
	if (($makemodel =~ /HP\s+PhotoSmart/i) ||
	    ($makemodel =~ /HP\s+PSC\s*9[05]0/i) ||
	    ($makemodel =~ /HP\s+OfficeJet\s+D\s*1[45]5/i)) {
	    # Models with built-in photo card drives
	    return _("Your HP printer was configured automatically to give you access to the photo card drives from your PC. Now you can access your photo cards using the graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> \"MTools File Manager\") or the command line utilities \"mtools\" (enter \"man mtools\" on the command line for more info). You find the card's file system under the drive letter \"p:\", or subsequent drive letters when you have more than one HP printer with photo card drives. In \"MtoolsFM\" you can switch between drive letters with the field at the upper-right corners of the file lists.",
		     $ptaldevice);
	} else {
	    # Photo-card-drive-less models
	    return "";
	}
    }
}

sub copy_queues_from {
    my ($printer, $in, $oldspooler) = @_;

    $in->set_help('copyQueues') if $::isInstall;
    my $newspooler = $printer->{SPOOLER};
    my @oldqueues;
    my @queueentries;
    my @queuesselected;
    my $newspoolerstr;
    my $oldspoolerstr;
    my $noninteractive = 0;
    {
	my $w = $in->wait_message('', _("Reading printer data..."));
	@oldqueues = printer::get_copiable_queues($oldspooler, $newspooler);
	@oldqueues = sort(@oldqueues);
	$newspoolerstr = $printer::shortspooler_inv{$newspooler};
	$oldspoolerstr = $printer::shortspooler_inv{$oldspooler};
	for (@oldqueues) {
	    push (@queuesselected, 1);
	    push (@queueentries, { text => $_, type => 'bool', 
				   val => \$queuesselected[$#queuesselected] });
	}
	# LPRng and LPD use the same config files, therefore one sees the 
	# queues of LPD when one uses LPRng and vice versa, but these queues
	# do not work. So automatically transfer all queues when switching
	# between LPD and LPRng.
	if (($oldspooler =~ /^lp/) && ($newspooler =~ /^lp/)) {
	    $noninteractive = 1;
	}
    }
    if ($noninteractive ||
	$in->ask_from_
	({ title => _("Transfer printer configuration"),
	   messages => _("You can copy the printer configuration which you have done for the spooler %s to %s, your current spooler. All the configuration data (printer name, description, location, connection type, and default option settings) is overtaken, but jobs will not be transferred.
Not all queues can be transferred due to the following reasons:
", $oldspoolerstr, $newspoolerstr) .
($newspooler eq "cups" ? _("CUPS does not support printers on Novell servers or printers sending the data into a free-formed command.
") :
 ($newspooler eq "pdq" ? _("PDQ only supports local printers, remote LPD printers, and Socket/TCP printers.
") :
  _("LPD and LPRng do not support IPP printers.
"))) .
_("In addition, queues not created with this program or \"foomatic-configure\" cannot be transferred.") .
($oldspooler eq "cups" ? _("
Also printers configured with the PPD files provided by their manufacturers or with native CUPS drivers cannot be transferred.") : ()) . _("
Mark the printers which you want to transfer and click 
\"Transfer\"."),
	   cancel => _("Do not transfer printers"),
           ok => _("Transfer")
	 },
         \@queueentries
      )) {
	my $queuecopied = 0;
	for (@oldqueues) {
	    if (shift(@queuesselected)) {
                my $oldqueue = $_;
                my $newqueue = $_;
                if ((!$printer->{configured}{$newqueue}) ||
		    ($noninteractive) ||
		    ($in->ask_from_
	             ({ title => _("Transfer printer configuration"),
	                messages => _("A printer named \"%s\" already exists under %s. 
Click \"Transfer\" to overwrite it.
You can also type a new name or skip this printer.", 
				      $newqueue, $newspoolerstr),
                        ok => _("Transfer"),
                        cancel => _("Skip"),
		        callbacks => { complete => sub {
	                    unless ($newqueue =~ /^\w+$/) {
				$in->ask_warn('', _("Name of printer should contain only letters, numbers and the underscore"));
				return (1,0);
			    }
			    if (($printer->{configured}{$newqueue})
				&& ($newqueue ne $oldqueue) && 
				(!$in->ask_yesorno('', _("The printer \"%s\" already exists,\ndo you really want to overwrite its configuration?",
							 $newqueue),
						   0))) {
				return (1,0); # Let the user correct the name
			    }
			    return 0;
			}}
		    },
		      [{label => _("New printer name"),val => \$newqueue}]))) {
		    {
			my $w = $in->wait_message('', 
			   _("Transferring %s...", $oldqueue));
		        printer::copy_foomatic_queue($printer, $oldqueue,
						   $oldspooler, $newqueue) and
							 $queuecopied = 1;
		    }
		    if ($oldqueue eq $printer->{DEFAULT}) {
			# Make the former default printer the new default
			# printer if the user does not reject
			if (($noninteractive) ||
			    ($in->ask_yesorno
			     (_("Transfer printer configuration"),
			      _("You have transferred your former default printer (\"%s\"), Should it be also the default printer under the new printing system %s?", $oldqueue, $newspoolerstr), 1))) {
			    $printer->{DEFAULT} = $newqueue;
			    printer::set_default_printer($printer);
			}
		    }
		}
            }
	}
        if ($queuecopied) {
	    my $w = $in->wait_message('', _("Refreshing printer data..."));
	    printer::read_configured_queues($printer);
        }
    }
}

sub start_network {
    my ($in, $upNetwork) = @_;
    my $w = $in->wait_message(_("Configuration of a remote printer"), 
			      _("Starting network..."));
    if ($::isInstall) {
	return ($upNetwork and 
		do { my $ret = &$upNetwork(); 
		     undef $upNetwork; 
		     sleep(1);
		     $ret});
    } else {
	return printer::start_service("network");
    }
}

sub check_network {

    # This routine is called whenever the user tries to configure a remote
    # printer. It checks the state of the network functionality to assure
    # that the network is up and running so that the remote printer is
    # reachable.

    my ($printer, $in, $upNetwork) = @_;

    # Any additional dialogs caused by this subroutine should appear as
    # extra windows and not embedded in the "Add printer" wizard.
    local $::isWizard = 0;

    $in->set_help('checkNetwork') if $::isInstall;

    # First check: Does /etc/sysconfig/network-scripts/drakconnet_conf exist
    # (otherwise the network is not configured yet and drakconnet has to be
    # started)

    if (!printer::files_exist("/etc/sysconfig/network-scripts/drakconnect_conf")) {
	my $go_on = 0;
	while (!$go_on) {
	    my $choice = _("Configure the network now");
	    if ($in->ask_from(_("Network functionality not configured"),
			      _("You are going to configure a remote printer. This needs working network access, but your network is not configured yet. If you go on without network configuration, you will not be able to use the printer which you are configuring now. How do you want to proceed?"),
			      [ { val => \$choice, type => 'list',
				  list => [ _("Configure the network now"),
					    _("Go on without configuring the network") ]} ] )) {
		if ($choice eq _("Configure the network now")){
		    if ($::isInstall) {
			require network::netconnect;
		        network::netconnect::main
			    ($in->{prefix}, $in->{netcnx} ||= {}, 
			     $in->{netc}, $in->{mouse}, $in, 
			     $in->{intf}, 0,
			     $in->{lang} eq "fr_FR" && 
			     $in->{keyboard}{KEYBOARD} eq "fr", 0);
		    } else {
			system("/usr/sbin/drakconnet");
		    }
		    if (printer::files_exist("/etc/sysconfig/network-scripts/drakconnect_conf")) {
			$go_on = 1;
		    }
		} else {
		    return 1;
		}
	    } else {
		return 0;
	    }
	}
    }

    # Second check: Is the network running?

    if (printer::network_running()) { return 1 }

    # The network is configured now, start it.
    if (!start_network($in, $upNetwork)) {
	$in->ask_warn(_("Configuration of a remote printer"), 
($::isInstall ?
_("The network configuration done during the installation cannot be started now. Please check whether the network gets accessable after booting your system and correct the configuration using the Mandrake Control Center, section \"Network & Internet\"/\"Connection\", and afterwards set up the printer, also using the Mandrake Control Center, section \"Hardware\"/\"Printer\"") :
_("The network access was not running and could not be started. Please check your configuration and your hardware. Then try to configure your remote printer again.")));
	return 0;
    }

    # Give a SIGHUP to the daemon and in case of CUPS do also the
    # automatic configuration of broadcasting/access permissions
    # The daemon is not really restarted but only SIGHUPped to not
    # interrupt print jobs.

    my $w = $in->wait_message(_("Configuration of a remote printer"), 
			      _("Restarting printing system..."));

    return printer::SIGHUP_daemon($printer->{SPOOLER});

}

sub security_check {
    # Check the security mode and when in "high" or "paranoid" mode ask the
    # user whether he really wants to configure printing.
    my ($printer, $in, $spooler) = @_;

    # Any additional dialogs caused by this subroutine should appear as
    # extra windows and not embedded in the "Add printer" wizard.
    local $::isWizard = 0;

    $in->set_help('securityCheck') if $::isInstall;

    # Get security level
    my $security;
    if ($::isInstall) {
	$security = $in->{security};
    } else {
	$security = printer::get_security_level();
    }

    # Exit silently if the spooler is PDQ
    if ($spooler eq "pdq") { return 1 }

    # Exit silently in medium or lower security levels
    if ((!$security) || ($security < 4)) { return 1 }
    
    # Exit silently if the current spooler is already activated for the current
    # security level
    if (printer::spooler_in_security_level($spooler, $security)) { return 1 }

    # Tell user in which security mode he is and ask him whether he really
    # wants to activate the spooler in the given security mode. Stop the
    # operation of installing the spooler if he disagrees.
    my $securitystr = ($security == 4 ? _("high") : _("paranoid"));
    if ($in->ask_yesorno(_("Installing a printing system in the %s security level", $securitystr),
			 _("You are about to install the printing system %s on a system running in the %s security level.

This printing system runs a daemon (background process) which waits for print jobs and handles them. This daemon is also accessable by remote machines through the network and so it is a possible point for attacks. Therefore only a few selected daemons are started by default in this security level.

Do you really want to configure printing on this machine?",
			   $printer::shortspooler_inv{$spooler},
			   $securitystr))) {
        printer::add_spooler_to_security_level($spooler, $security);
	my $service;
	if (($spooler eq "lpr") || ($spooler eq "lprng")) {
	    $service = "lpd";
	} else {
	    $service = $spooler;
	}
        printer::start_service_on_boot($service);
	return 1;
    } else {
	return 0;
    }
}

sub start_spooler_on_boot {
    # Checks whether the spooler will be started at boot time and if not,
    # ask the user whether he wants to start the spooler at boot time.
    my ($printer, $in, $service) = @_;

    # Any additional dialogs caused by this subroutine should appear as
    # extra windows and not embedded in the "Add printer" wizard.
    local $::isWizard = 0;

    $in->set_help('startSpoolerOnBoot') if $::isInstall;
    if (!printer::service_starts_on_boot($service)) {
	if ($in->ask_yesorno(_("Starting the printing system at boot time"),
			     _("The printing system (%s) will not be started automatically when the machine is booted.

It is possible that the automatic starting was turned off by changing to a higher security level, because the printing system is a potential point for attacks.

Do you want to have the automatic starting of the printing system turned on again?",
		       $printer::shortspooler_inv{$printer->{SPOOLER}}))) {
	    printer::start_service_on_boot($service);
	}
    }
    1;
}

sub install_spooler {
    # installs the default spooler and start its daemon
    my ($printer, $in, $upNetwork) = @_;
    if (!$::testing) {
	# If the user refuses to install the spooler in high or paranoid
	# security level, exit.
	if (!security_check($printer, $in, $printer->{SPOOLER})) {
	    return 0;
	}
	if ($printer->{SPOOLER} eq "cups") {
	    {
		my $w = $in->wait_message('', _("Checking installed software..."));
		if ((!$::testing) &&
		    (!printer::files_exist((qw(/usr/lib/cups/cgi-bin/printers.cgi
					       /sbin/ifconfig
					       /usr/bin/xpp
					       /usr/bin/curl),
					    ($::expert ? 
					     "/usr/share/cups/model/postscript.ppd.gz" : ())
					    )))) {
		    $in->do_pkgs->install(('cups', 'net-tools', 'xpp',
					   'curl',
					   ($::expert ? 'cups-drivers' : ())));
		}
		# Try to start the network when CUPS is the spooler, so that
		# remote CUPS printers get displayed (especially during
		# installation)
		$upNetwork and do {
		    &$upNetwork(); 
		    undef $upNetwork; 
		    sleep(1);
		};
		# Start daemon
		# Avoid unnecessary restarting of CUPS, this blocks the
		# startup of printerdrake for several seconds.
		printer::start_not_running_service("cups");
		# Set the CUPS tools as defaults for "lpr", "lpq", "lprm", ...
	        printer::set_alternative("lpr","/usr/bin/lpr-cups");
	        printer::set_alternative("lpq","/usr/bin/lpq-cups");
	        printer::set_alternative("lprm","/usr/bin/lprm-cups");
	        printer::set_alternative("lp","/usr/bin/lp-cups");
	        printer::set_alternative("cancel","/usr/bin/cancel-cups");
	        printer::set_alternative("lpstat","/usr/bin/lpstat-cups");
	        printer::set_alternative("lpc","/usr/sbin/lpc-cups");
		# Remove PDQ panic buttons from the user's KDE Desktops
	        printer::pdq_panic_button("remove");
	    }
	    # Should it be started at boot time?
	    start_spooler_on_boot($printer, $in, "cups");
	} elsif ($printer->{SPOOLER} eq "lpd") {
	    {
		my $w = $in->wait_message('', _("Checking installed software..."));
		# "lpr" conflicts with "LPRng", remove "LPRng"
		if ((!$::testing) &&
		    (printer::files_exist((qw(/usr/lib/filters/lpf))))) {
		    my $w = $in->wait_message('', _("Removing LPRng..."));
		    $in->do_pkgs->remove_nodeps('LPRng');
		}
		if ((!$::testing) &&
		    (!printer::files_exist((qw(/usr/sbin/lpf
					       /usr/sbin/lpd
					       /sbin/ifconfig
					       /usr/bin/gpr
					       /usr/bin/a2ps
					       /usr/bin/convert))))) {
		    $in->do_pkgs->install(('lpr', 'net-tools', 'gpr', 'a2ps', 'ImageMagick'));
		}
		# Start the network (especially during installation), so the
		# user can set up queues to remote printers.
		$upNetwork and do {
		    &$upNetwork(); 
		    undef $upNetwork; 
		    sleep(1);
		};
		# Start daemon
	        printer::restart_service("lpd");
		# Set the LPD tools as defaults for "lpr", "lpq", "lprm", ...
	        printer::set_alternative("lpr","/usr/bin/lpr-lpd");
	        printer::set_alternative("lpq","/usr/bin/lpq-lpd");
	        printer::set_alternative("lprm","/usr/bin/lprm-lpd");
	        printer::set_alternative("lpc","/usr/sbin/lpc-lpd");
		# Remove PDQ panic buttons from the user's KDE Desktops
	        printer::pdq_panic_button("remove");
	    }
	    # Should it be started at boot time?
	    start_spooler_on_boot($printer, $in, "lpd");
	} elsif ($printer->{SPOOLER} eq "lprng") {
	    {
		my $w = $in->wait_message('', _("Checking installed software..."));
		# "LPRng" conflicts with "lpr", remove "lpr"
		if ((!$::testing) &&
		    (printer::files_exist((qw(/usr/sbin/lpf))))) {
		    my $w = $in->wait_message('', _("Removing LPD..."));
		    $in->do_pkgs->remove_nodeps('lpr');
		}
		if ((!$::testing) &&
		    (!printer::files_exist((qw(/usr/lib/filters/lpf
					       /usr/sbin/lpd
					       /sbin/ifconfig
					       /usr/bin/gpr
					       /usr/bin/a2ps
					       /usr/bin/convert))))) {
		    $in->do_pkgs->install('LPRng', 'net-tools', 'gpr', 'a2ps', 'ImageMagick');
		}
		# Start the network (especially during installation), so the
		# user can set up queues to remote printers.
		$upNetwork and do {
		    &$upNetwork(); 
		    undef $upNetwork; 
		    sleep(1);
		};
		# Start daemon
	        printer::restart_service("lpd");
		# Set the LPRng tools as defaults for "lpr", "lpq", "lprm", ...
	        printer::set_alternative("lpr","/usr/bin/lpr-lpd");
	        printer::set_alternative("lpq","/usr/bin/lpq-lpd");
	        printer::set_alternative("lprm","/usr/bin/lprm-lpd");
	        printer::set_alternative("lp","/usr/bin/lp-lpd");
	        printer::set_alternative("cancel","/usr/bin/cancel-lpd");
	        printer::set_alternative("lpstat","/usr/bin/lpstat-lpd");
	        printer::set_alternative("lpc","/usr/sbin/lpc-lpd");
		# Remove PDQ panic buttons from the user's KDE Desktops
	        printer::pdq_panic_button("remove");
	    }
	    # Should it be started at boot time?
	    start_spooler_on_boot($printer, $in, "lpd");
	} elsif ($printer->{SPOOLER} eq "pdq") {
	    {
		my $w = $in->wait_message('', _("Checking installed software..."));
		if ((!$::testing) &&
		    (!printer::files_exist((qw(/usr/bin/pdq
					       /usr/X11R6/bin/xpdq))))) {
		    $in->do_pkgs->install('pdq');
		}
		# Start the network (especially during installation), so the
		# user can set up queues to remote printers.
		$upNetwork and do {
		    &$upNetwork(); 
		    undef $upNetwork; 
		    sleep(1);
		};
		# PDQ has no daemon, so nothing needs to be started
		
		# Set the PDQ tools as defaults for "lpr", "lpq", "lprm", ...
	        printer::set_alternative("lpr","/usr/bin/lpr-pdq");
	        printer::set_alternative("lpq","/usr/bin/lpq-foomatic");
	        printer::set_alternative("lprm","/usr/bin/lprm-foomatic");
		# Add PDQ panic buttons to the user's KDE Desktops
	        printer::pdq_panic_button("add");
	    }
	}
	# Give a SIGHUP to the devfsd daemon to correct the permissions
	# for the /dev/... files according to the spooler
	printer::SIGHUP_daemon("devfs");
    }
    1;
}

sub setup_default_spooler {
    my ($printer, $in, $upNetwork) = @_;
    $in->set_help('setupDefaultSpooler') if $::isInstall;
    $printer->{SPOOLER} ||= 'cups';
    my $oldspooler = $printer->{SPOOLER};
    my $str_spooler = 
	$in->ask_from_list_(_("Select Printer Spooler"),
			    _("Which printing system (spooler) do you want to use?"),
			    [ printer::spooler() ],
			    $printer::spooler_inv{$printer->{SPOOLER}},
			    ) or return;
    $printer->{SPOOLER} = $printer::spooler{$str_spooler};
    # Install the spooler if not done yet
    if (!install_spooler($printer, $in, $upNetwork)) {
	$printer->{SPOOLER} = $oldspooler;
	return;
    }
    if ($printer->{SPOOLER} ne $oldspooler) {
	# Remove the local printers from Star Office/OpenOffice.org
	printer::removelocalprintersfromapplications($printer);
	# Get the queues of this spooler
	{
	    my $w = $in->wait_message('', _("Reading printer data..."));
	    printer::read_configured_queues($printer);
	}
	# Copy queues from former spooler
	copy_queues_from($printer, $in, $oldspooler);
	# Re-read the printer database (CUPS has additional drivers, PDQ
	# has no raw queue)
	%printer::thedb = ();
	#my $w = $in->wait_message('', _("Reading printer database..."));
	#printer::read_printer_db($printer->{SPOOLER});
    }
    # Save spooler choice
    printer::set_default_spooler($printer);
    return $printer->{SPOOLER};
}

sub configure_queue {
    my ($printer, $in) = @_;
    my $w = $in->wait_message('', _("Configuring printer \"%s\"...",
				    $printer->{currentqueue}{queue}));
    $printer->{complete} = 1;
    printer::configure_queue($printer);
    $printer->{complete} = 0;
}

sub install_foomatic {
    my ($in) = @_;
    if ((!$::testing) &&
	(!printer::files_exist((qw(/usr/bin/foomatic-configure
				       /usr/lib/perl5/vendor_perl/5.8.0/Foomatic/DB.pm)
				    )))) {
	my $w = $in->wait_message('', _("Installing Foomatic..."));
	$in->do_pkgs->install('foomatic');
    }
}

sub wizard_close {
    my ($in, $mode) = @_;
    # Leave wizard mode with congratulations screen if $mode = 1
    $::Wizard_no_previous = 1;
    $::Wizard_no_cancel = 1;
    $::Wizard_finished = 1;
    wizard_congratulations($in) if ($mode == 1);
    undef $::isWizard;
    $::WizardWindow->destroy if defined $::WizardWindow;
    undef $::WizardWindow;
};

#- Program entry point for configuration of the printing system.
sub main {
    my ($printer, $in, $ask_multiple_printer, $upNetwork) = @_;

    # Default printer name, we do not use "lp" so that one can switch the
    # default printer under LPD without needing to rename another printer.
    # Under LPD the alias "lp" will be given to the default printer.
    my $defaultprname = _("Printer");

    # printerdrake does not work without foomatic, and for more convenience
    # we install some more stuff
    {
	my $w = $in->wait_message('', _("Checking installed software..."));
	if ((!$::testing) &&
	    (!printer::files_exist((qw(/usr/bin/foomatic-configure
				       /usr/lib/perl5/vendor_perl/5.8.0/Foomatic/DB.pm
				       /usr/bin/escputil
				       /usr/share/printer-testpages/testprint.ps
				       /usr/bin/nmap
				       /usr/bin/scli
				       ),
				    (printer::files_exist("/usr/bin/gimp") ?
				     "/usr/lib/gimp/1.2/plug-ins/print" : ())
				    )))) {
	    $in->do_pkgs->install('foomatic','printer-utils','printer-testpages','nmap','scli',
				  if_($in->do_pkgs->is_installed('gimp'), 'gimpprint'));
	}

	# only experts should be asked for the spooler
	!$::expert and $printer->{SPOOLER} ||= 'cups';

    }

    # If we have chosen a spooler, install it and mark it as default spooler
    if (($printer->{SPOOLER}) && ($printer->{SPOOLER} ne '')) {
	if (!install_spooler($printer, $in, $upNetwork)) { return }
        printer::set_default_spooler($printer);
    }

    # Turn on printer autodetection by default
    $printer->{AUTODETECT} = 1;
    $printer->{AUTODETECTLOCAL} = 1;
    $printer->{AUTODETECTNETWORK} = 1;
    $printer->{AUTODETECTSMB} = 1;

    # Control variables for the main loop
    my ($menuchoice, $cursorpos, $queue, $continue, $newqueue, $editqueue, $expertswitch, $menushown) = ('', '::', $defaultprname, 1, 0, 0, 0, 0);
    # Cursor position in queue modification window
    my $modify = _("Printer options");
    while ($continue) {
	$newqueue = 0;
	# When the queue list is not shown, cancelling the printer type
	# dialog should leave the program
	$continue = 0;
	# Get the default printer
	if (defined($printer->{SPOOLER}) && ($printer->{SPOOLER} ne '') &&
	    ((!defined($printer->{DEFAULT})) || ($printer->{DEFAULT} eq ''))) {
	    my $w = $in->wait_message('', _("Preparing PrinterDrake..."));
	    $printer->{DEFAULT} = printer::get_default_printer($printer);
	    if ($printer->{DEFAULT}) {
		# If a CUPS system has only remote printers and no default
		# printer defined, it defines the first printer whose
		# broadcast signal appeared after the start of the CUPS
		# daemon, so on every start another printer gets the default
		# printer. To avoid this, make sure that the default printer
		# is defined.
		printer::set_default_printer($printer);
	    } else {
		$printer->{DEFAULT} = '';
	    }
	}

	# Configure the current printer queues in applications
	{
	    my $w = $in->wait_message('', _("Configuring applications..."));
	    printer::configureapplications($printer);
	}

	if ($editqueue) {
	    # The user was either in the printer modification dialog and did
	    # not close it or he had set up a new queue and said that the test
	    # page didn't come out correctly, so let the user edit the queue.
	    $newqueue = 0;
	    $continue = 1;
	    $editqueue = 0;
	} else {
	    # Reset modification window cursor when one leaves the window
	    $modify = _("Printer options");
	    if (!$ask_multiple_printer && 
		%{$printer->{configured} || {}} == ()) {
		$in->set_help('doYouWantToPrint') if $::isInstall;
		$newqueue = 1;
		$menuchoice = $printer->{want} || 
		    $in->ask_yesorno(_("Printer"),
				    _("Would you like to configure printing?"),
				    0) ? "\@addprinter" : "\@quit";
		if ($menuchoice ne "\@quit") {
		    $printer->{SPOOLER} ||= 
			setup_default_spooler ($printer, $in, $upNetwork) ||
			    return;
		}
	    } else {
		# Ask for a spooler when none is defined
		$printer->{SPOOLER} ||=  setup_default_spooler ($printer, $in, $upNetwork) || return;
		# This entry and the check for this entry have to use
		# the same translation to work properly
		my $spoolerentry = _("Printing system: ");
		# Show a queue list window when there is at least one queue,
		# when we are in expert mode, or when we are not in the
		# installation.
		unless ((!%{$printer->{configured} || {}}) && 
			(!$::expert) && ($::isInstall)) {
		    $in->set_help('mainMenu') if $::isInstall;
		    # Cancelling the printer type dialog should leed to this
		    # dialog
		    $continue = 1;
		    # This is for the "Recommended" installation. When one has
		    # no printer queue printerdrake starts directly adding
		    # a printer and in the end it asks whether one wants to
		    # install another printer. If the user says "Yes", he
		    # arrives in the main menu of printerdrake. From now
		    # on the question is not asked any more but the menu
		    # is shown directly after having done an operation.
		    $menushown = 1;
		    # Initialize the cursor position
		    if (($cursorpos eq "::") && 
			($printer->{DEFAULT}) &&
			($printer->{DEFAULT} ne "")) {
			if ($printer->{configured}{$printer->{DEFAULT}}) {
			    $cursorpos = 
				$printer->{configured}{$printer->{DEFAULT}}{queuedata}{menuentry} . _(" (Default)");
			} elsif ($printer->{SPOOLER} eq "cups") {
			    ($cursorpos) = 
				grep { /!$printer->{DEFAULT}:[^!]*$/ }
			    printer::get_cups_remote_queues($printer);
			}
		    }
		    # Generate the list of available printers
		    my @printerlist = 
			((sort((map { $printer->{configured}{$_}{queuedata}{menuentry} 
				      . ($_ eq $printer->{DEFAULT} ?
					 _(" (Default)") : (""))}
				 keys(%{$printer->{configured}
					|| {}})),
				($printer->{SPOOLER} eq "cups" ?
				 printer::get_cups_remote_queues($printer)
				 : ())))
			  );
		    my $noprinters = ($#printerlist < 0);
		    # Position the cursor where it were before (in case
		    # a button was pressed).
		    $menuchoice = $cursorpos;
		    # Show the main dialog
		    $in->ask_from_(
			{ title => _("Printerdrake"),
			 messages =>
			     ($noprinters ? "" :
			      (($printer->{SPOOLER} eq "cups") ?
			       _("The following printers are configured. Double-click on a printer to change its settings; to make it the default printer; to view information about it; or to make a printer on a remote CUPS server available for Star Office/OpenOffice.org.") :
			       _("The following printers are configured. Double-click on a printer to change its settings; to make it the default printer; or to view information about it."))),
			 cancel => (""),
			 ok => (""),
			},
			# List the queues
			[ ($noprinters ? () :
			   { val => \$menuchoice, format => \&translate,
			     sort => 0, separator => "!",tree_expanded => 1,
			     quit_if_double_click => 1,allow_empty_list =>1,
			     list => \@printerlist }),
			  { clicked_may_quit =>
			    sub { 
				# Save the cursor position
				$cursorpos = $menuchoice;
				$menuchoice = "\@addprinter";
				1; 
			    },
			    val => _("Add a new printer") },
			  ($printer->{SPOOLER} eq "cups" ?
			    ({ clicked_may_quit =>
				   sub { 
				       # Save the cursor position
				       $cursorpos = $menuchoice;
				       $menuchoice = "\@refresh";
				       1;
				   },
			       val => _("Refresh printer list (to display all available remote CUPS printers)") },
			     { clicked_may_quit =>
				   sub { 
				       # Save the cursor position
				       $cursorpos = $menuchoice;
				       $menuchoice = "\@cupsconfig";
				       1;
				   },
			       val => ($::expert ? _("CUPS configuration") :
				       _("Specify CUPS server")) }) : ()),
			  ($::expert ?
			    { clicked_may_quit =>
				  sub {
				      # Save the cursor position
				      $cursorpos = $menuchoice;
				      $menuchoice = "\@spooler";
				      1;
				  },
				  val => _("Change the printing system") } :
			    ()),
			  (!$::isInstall ?
			    { clicked_may_quit =>
				  sub { $menuchoice = "\@usermode"; 1 },
				  val => ($::expert ? _("Normal Mode") :
					  _("Expert Mode")) } : ()),
			  { clicked_may_quit =>
			    sub { $menuchoice = "\@quit"; 1 },
			    val => _("Quit") },
			  ]
		    );
		    # Toggle expert mode and standard mode
		    if ($menuchoice eq "\@usermode") {
			$::expert = !$::expert;
			# Read printer database for the new user mode
			%printer::thedb = ();
			#my $w = $in->wait_message('', _("Reading printer database..."));
		        #printer::read_printer_db($printer->{SPOOLER});
			# Re-read printer queues to switch the tree
			# structure between expert/normal mode.
			my $w = $in->wait_message('', _("Reading printer data..."));
			printer::read_configured_queues($printer);
			$cursorpos = "::";
			next;
		    }
		} else {
		    #- as there are no printer already configured, Add one
		    #- automatically.
		    $menuchoice = "\@addprinter"; 
		}
		# Refresh printer list
		if ($menuchoice eq "\@refresh") {
		    next;
		}
		# Configure CUPS
		if ($menuchoice eq "\@cupsconfig") {
		    config_cups($printer, $in, $upNetwork);
		    next;
		}
	        # Determine a default name for a new printer queue
		if ($menuchoice eq "\@addprinter") {
		    $newqueue = 1;
		    my %queues; 
		    @queues{map { split '\|', $_ } keys %{$printer->{configured}}} = ();
		    my $i = ''; while ($i < 150) { last unless exists $queues{"$defaultprname$i"}; ++$i }
		    $queue = "$defaultprname$i";
		}
		# Function to switch to another spooler
		if ($menuchoice eq "\@spooler") {
		    $printer->{SPOOLER} = setup_default_spooler ($printer, $in, $upNetwork) || $printer->{SPOOLER};
		    next;
		}
		# Rip the queue name out of the chosen menu entry
		if ($menuchoice =~ /!([^\s!:]+):[^!]*$/) {
		    $queue = $1;
		    # Save the cursor position
		    $cursorpos = $menuchoice;
		}
	    }
	    # Save the default spooler
	    printer::set_default_spooler($printer);
	    #- Close printerdrake
	    $menuchoice eq "\@quit" and last;
	}
	if ($newqueue) {
	    $printer->{NEW} = 1;
	    #- Set default values for a new queue
	    $printer::printer_type_inv{$printer->{TYPE}} or 
		$printer->{TYPE} = printer::default_printer_type($printer);
	    $printer->{currentqueue} = { queue    => $queue,
					 foomatic => 0,
					 desc     => "",
					 loc      => "",
					 make     => "",
					 model    => "",
					 printer  => "",
					 driver   => "",
					 connect  => "",
					 spooler  => $printer->{SPOOLER},
				       };
	    #- Set OLD_QUEUE field so that the subroutines for the
	    #- configuration work correctly.
	    $printer->{OLD_QUEUE} = $printer->{QUEUE} = $queue;
	    #- Do all the configuration steps for a new queue
	  step_0:
	    #if ((!$::expert) && (!$::isEmbedded) && (!$::isInstall) &&
	    if ((!$::isEmbedded) && (!$::isInstall) &&
	    #if ((!$::isInstall) &&
		($in->isa('interactive::gtk'))) {
		$continue = 1;
		# Enter wizard mode
		$::Wizard_pix_up = "wiz_printerdrake.png";
		$::Wizard_title = _("Add a new printer");
		$::isWizard = 1;
		# Wizard welcome screen
		$::Wizard_no_previous = 1;
		undef $::Wizard_no_cancel; undef $::Wizard_finished;
		wizard_welcome($printer, $in) or do {
		    wizard_close($in, 0);
		    next;
		};
		undef $::Wizard_no_previous;
		eval { 
		    # eval to catch wizard cancel. The wizard stuff should 
		    # be in a separate function with steps. see dragw.
		    # (dams)
		    $::expert or $printer->{TYPE} = "LOCAL";
		  step_1:
		    !$::expert or choose_printer_type($printer, $in) or
			goto step_0;
		  step_2:
		    setup_printer_connection($printer, $in, $upNetwork) or 
			do {
			    goto step_1 if $::expert;
			    goto step_0;
			};
		  step_3:
		    if (($::expert) or ($printer->{MANUAL}) or
			($printer->{MORETHANONE})) {
			choose_printer_name($printer, $in) or
			    goto step_2;
		    }
		    get_db_entry($printer, $in);
		  step_3_9:
		    if ((!$::expert) and (!$printer->{MANUAL})) {
			is_model_correct($printer, $in) or do {
			    goto step_3 if $printer->{MORETHANONE};
			    goto step_2;
			}
		    }
		  step_4:
		    # Remember DB entry for "Previous" button in wizard
		    my $dbentry = $printer->{DBENTRY};
		    if (($::expert) or ($printer->{MANUAL}) or
			($printer->{MANUALMODEL})) { 
			choose_model($printer, $in) or do {
			    # Restore DB entry
			    $printer->{DBENTRY} = $dbentry;
			    goto step_3_9 if $printer->{MANUALMODEL};
			    goto step_3;
			};
		    }
		    get_printer_info($printer, $in) or next;
		  step_5:
		    setup_options($printer, $in) or
			goto step_4;
		    configure_queue($printer, $in);
		    undef $printer->{MANUAL} if $printer->{MANUAL};
		    $::Wizard_no_previous = 1;
		    setasdefault($printer, $in);
		    $cursorpos = 
			$printer->{configured}{$printer->{QUEUE}}{queuedata}{menuentry} .
			($printer->{QUEUE} eq $printer->{DEFAULT} ?
			 _(" (Default)") : ());
		    my $testpages = print_testpages($printer, $in, $printer->{TYPE} !~ /LOCAL/ && $upNetwork);
		    if ($testpages == 1) {
			# User was content with test pages
			# Leave wizard mode with congratulations screen
			wizard_close($in, 1);
			$continue = ($::expert || !$::isInstall || $menushown ||
				     $in->ask_yesorno('',_("Do you want to configure another printer?")));
		    } elsif ($testpages == 2) {
			# User was not content with test pages
			# Leave wizard mode without congratulations
			# screen
			wizard_close($in, 0);
			$editqueue = 1;
			$queue = $printer->{QUEUE};
		    }
		};
		wizard_close($in, 0) if ($@ =~ /wizcancel/);
	    } else {
		$::expert or $printer->{TYPE} = "LOCAL";
		!$::expert or choose_printer_type($printer, $in) or next;
		#- Cancelling the printer connection type window
		#- should not restart printerdrake in recommended mode,
		#- it is the first dialog of the sequence there and
		#- the "Add printer" sequence should be stopped when there
		#- are no local printers. In expert mode this is the second
		#- dialog of the sequence.
		$continue = 1 if ($::expert || !$::isInstall);
		setup_printer_connection($printer, $in, $upNetwork) or next;
		#- Cancelling one of the following dialogs should
		#- restart printerdrake
		$continue = 1;
		if (($::expert) or ($printer->{MANUAL}) or
		    ($printer->{MORETHANONE})) {
		    choose_printer_name($printer, $in) or next;
		}
		get_db_entry($printer, $in);
		if ((!$::expert) and (!$printer->{MANUAL})) {
		    is_model_correct($printer, $in) or next;
		}
		if (($::expert) or ($printer->{MANUAL}) or
		    ($printer->{MANUALMODEL})) { 
		    choose_model($printer, $in) or next;
		}
		get_printer_info($printer, $in) or next;
		setup_options($printer, $in) or next;
		configure_queue($printer, $in);
		undef $printer->{MANUAL} if $printer->{MANUAL};
		setasdefault($printer, $in);
		$cursorpos = 
		    $printer->{configured}{$printer->{QUEUE}}{queuedata}{menuentry} .
		    ($printer->{QUEUE} eq $printer->{DEFAULT} ?
		     _(" (Default)") : ());
		my $testpages = print_testpages($printer, $in, $printer->{TYPE} !~ /LOCAL/ && $upNetwork);
		if ($testpages == 1) {
		    # User was content with test pages
		    $continue = ($::expert || !$::isInstall || $menushown ||
				 $in->ask_yesorno('',_("Do you want to configure another printer?")));
		} elsif ($testpages == 2) {
		    # User was not content with test pages
		    $editqueue = 1;
		    $queue = $printer->{QUEUE};
		}
	    };
	    undef $printer->{MANUAL} if $printer->{MANUAL};
	} else {
	    $printer->{NEW} = 0;
	    # Modify a queue, ask which part should be modified
	    $in->set_help('modifyPrinterMenu') if $::isInstall;
	    # Get some info to display
	    my $infoline;
	    if ($printer->{configured}{$queue}) {
		# Here we must regenerate the menu entry, because the
		# parameters can be changed.
		printer::make_menuentry($printer,$queue);
		$printer->{configured}{$queue}{queuedata}{menuentry} =~
		    /!([^!]+)$/;
		$infoline = $1 .
		    ($queue eq $printer->{DEFAULT} ? _(" (Default)") : ()) .
		    ($printer->{configured}{$queue}{queuedata}{desc} ?
		     ", Descr.: $printer->{configured}{$queue}{queuedata}{desc}" : ()) .
		    ($printer->{configured}{$queue}{queuedata}{loc} ?
		     ", Loc.: $printer->{configured}{$queue}{queuedata}{loc}" : ()) .
		    ($::expert ?
		     ", Driver: $printer->{configured}{$queue}{queuedata}{driver}" : ());
	    } else {
		# The parameters of a remote CUPS queue cannot be changed,
		# so we can simply take the menu entry.
		$cursorpos =~ /!([^!]+)$/;
		$infoline = $1;
	    }
	    if ($in->ask_from_
		   ({ title => _("Modify printer configuration"),
		      messages => 
			   _("Printer %s
What do you want to modify on this printer?",
			     $infoline),
		     cancel => _("Close"),
		     ok => _("Do it!")
		     },
		    [ { val => \$modify, format => \&translate, 
			type => 'list',
			list => [ ($printer->{configured}{$queue} ?
				   (_("Printer connection type"),
				    _("Printer name, description, location"),
				    ($::expert ?
				     _("Printer manufacturer, model, driver") :
				     _("Printer manufacturer, model")),
				    (($printer->{configured}{$queue}{queuedata}{make} ne
				      "") &&
				     (($printer->{configured}{$queue}{queuedata}{model} ne
				       _("Unknown model")) &&
				      ($printer->{configured}{$queue}{queuedata}{model} ne
				       _("Raw printer"))) ?
				     _("Printer options") : ())) : ()),
				   (($queue ne $printer->{DEFAULT}) ?
				    _("Set this printer as the default") : ()),
				   ($printer->{configured}{$queue} ? () :
				    (_("Add this printer to Star Office/OpenOffice.org"),
				     _("Remove this printer from Star Office/OpenOffice.org"))),
				   _("Print test pages"),
				   _("Know how to use this printer"),
				   ($printer->{configured}{$queue} ?
				    _("Remove printer") : ()) ] } ] ) ) {
		# Stay in the queue edit window until the user clicks "Close"
		# or deletes the queue
		$editqueue = 1; 
		#- Copy the queue data and work on the copy
		$printer->{currentqueue} = {};
		my $driver;
		if ($printer->{configured}{$queue}) {
		    printer::copy_printer_params($printer->{configured}{$queue}{queuedata}, $printer->{currentqueue});
		    #- Keep in mind the printer driver which was used, so it
                    #- can be determined whether the driver is only
		    #- available in expert and so for setting the options
		    #- for the driver in recommended mode a special
		    #- treatment has to be applied.
		    $driver = $printer->{currentqueue}{driver};
		}
		#- keep in mind old name of queue (in case of changing)
		$printer->{OLD_QUEUE} = $printer->{QUEUE} = $queue;
		#- Reset some variables
		$printer->{OLD_CHOICE} = undef;
		$printer->{DBENTRY} = undef;
		#- Which printer type did we have before (check beginning of
		#- URI)
		my $type;
		if ($printer->{configured}{$queue}) {
		    for $type (qw(file lpd socket smb ncp postpipe)) {
			if ($printer->{currentqueue}{connect}
			    =~ /^$type:/) {
			    $printer->{TYPE} = 
				($type eq 'file' ? 'LOCAL' : uc($type));
			    last;
			}
		    }
		}
		# Do the chosen task
		if ($modify eq _("Printer connection type")) {
		    choose_printer_type($printer, $in) &&
			setup_printer_connection($printer, $in, $upNetwork) &&
		            configure_queue($printer, $in);
		} elsif ($modify eq _("Printer name, description, location")) {
		    choose_printer_name($printer, $in) &&
			configure_queue($printer, $in);
		    # Delete old queue when it was renamed
		    if (lc($printer->{QUEUE}) ne lc($printer->{OLD_QUEUE})) {
			my $w = $in->wait_message('', _("Removing old printer \"%s\"...", $printer->{OLD_QUEUE}));
		        printer::remove_queue($printer, $printer->{OLD_QUEUE});
			# If the default printer was renamed, correct the
			# the default printer setting of the spooler
			if ($queue eq $printer->{DEFAULT}) {
			    $printer->{DEFAULT} = $printer->{QUEUE};
			    printer::set_default_printer($printer);
			}
			$queue = $printer->{QUEUE};
		    }
		} elsif (($modify eq _("Printer manufacturer, model, driver")) ||
			 ($modify eq _("Printer manufacturer, model"))) {
		    get_db_entry($printer, $in);
		    choose_model($printer, $in) &&
			get_printer_info($printer, $in) &&
			setup_options($printer, $in) &&
			configure_queue($printer, $in);
		} elsif ($modify eq _("Printer options")) {
		    get_printer_info($printer, $in) &&
			setup_options($printer, $in) &&
			configure_queue($printer, $in);
		} elsif ($modify eq _("Set this printer as the default")) {
		    $printer->{DEFAULT} = $queue;
		    printer::set_default_printer($printer);
		    $in->ask_warn(_("Default printer"),
				  _("The printer \"%s\" is set as the default printer now.", $queue));
		} elsif ($modify eq _("Add this printer to Star Office/OpenOffice.org")) {
		    if (printer::addcupsremotetoapplications
			($printer, $queue)) {
			$in->ask_warn(_("Adding printer to Star Office/OpenOffice.org"),
				      _("The printer \"%s\" was successfully added to Star Office/OpenOffice.org.", $queue));
		    } else {
			$in->ask_warn(_("Adding printer to Star Office/OpenOffice.org"),
				      _("Failed to add the printer \"%s\" to Star Office/OpenOffice.org.", $queue));
		    }
		} elsif ($modify eq _("Remove this printer from Star Office/OpenOffice.org")) {
		    if (printer::removeprinterfromapplications
			($printer, $queue)) {
			$in->ask_warn(_("Removing printer from Star Office/OpenOffice.org"),
				      _("The printer \"%s\" was successfully removed from Star Office/OpenOffice.org.", $queue));
		    } else {
			$in->ask_warn(_("Removing printer from Star Office/OpenOffice.org"),
				      _("Failed to remove the printer \"%s\" from Star Office/OpenOffice.org.", $queue));
		    }
		} elsif ($modify eq _("Print test pages")) {
		    print_testpages($printer, $in, $upNetwork);
		} elsif ($modify eq _("Know how to use this printer")) {
		    printer_help($printer, $in);
		} elsif ($modify eq _("Remove printer")) {
		    if ($in->ask_yesorno('',
           _("Do you really want to remove the printer \"%s\"?", $queue), 1)) {
			{
			    my $w = $in->wait_message('', _("Removing printer \"%s\"...", $queue));
			    if (printer::remove_queue($printer, $queue)) { 
				$editqueue = 0;
				# Define a new default printer if we have
				# removed the default one
				if ($queue eq $printer->{DEFAULT}) {
				    my @k = sort(keys(%{$printer->{configured}}));
				    if (@k) {
					$printer->{DEFAULT} = $k[0];
				        printer::set_default_printer($printer);
				    } else {
					$printer->{DEFAULT} = "";
				    }
				}
				# Let the main menu cursor go to the default
				# position
				$cursorpos = "::";
			    }
			}
		    }		
		}
		# Make sure that the cursor is still at the same position
		# in the main menu when one has modified something on the
		# current printer
		if (($printer->{QUEUE}) && ($printer->{QUEUE} ne "")) {
		    if ($printer->{configured}{$printer->{QUEUE}}) {
			$cursorpos = 
			    $printer->{configured}{$printer->{QUEUE}}{queuedata}{menuentry} . 
			    ($printer->{QUEUE} eq $printer->{DEFAULT} ? 
			     _(" (Default)") : ());
		    } else {
			my $s1 = _(" (Default)");
			my $s2 = $s1;
			$s2 =~ s/\(/\\\(/;
			$s2 =~ s/\)/\\\)/;
			if (($printer->{QUEUE} eq $printer->{DEFAULT}) &&
			    ($cursorpos !~ /$s2/)) {
			    $cursorpos .= $s1;
			}
		    }
		}
	    } else {
		$editqueue = 0;
	    }
	    $continue = ($editqueue || $::expert || !$::isInstall || 
			 $menushown ||
			 $in->ask_yesorno('',_("Do you want to configure another printer?")));
	}

	# Configure the current printer queue in applications when main menu
	# will not be shown (During installation in "Recommended" mode)
	if ($::isInstall && !$::expert && !$menushown && !$continue) {
	    my $w = $in->wait_message('', _("Configuring applications..."));
	    printer::configureapplications($printer);
	}

	# Delete some variables
	$printer->{OLD_QUEUE} = "";
	foreach (qw(QUEUE TYPE str_type DBENTRY ARGS OLD_CHOICE)) {
		$printer->{$_} = "";
	}
	$printer->{currentqueue} = {};
	$printer->{complete} = 0;
    }
    # Clean up the $printer data structure for auto-install log
    for my $queue (keys %{$printer->{configured}}) {
	for my $item (keys %{$printer->{configured}{$queue}}) {
	    if ($item ne "queuedata") {
		delete($printer->{configured}{$queue}{$item});
	    }
	}
	if ($printer->{configured}{$queue}{queuedata}{menuentry}) {
	    delete($printer->{configured}{$queue}{queuedata}{menuentry});
	}
    }
    foreach (qw(Old_queue QUEUE TYPE str_type currentqueue DBENTRY ARGS complete OLD_CHOICE NEW MORETHANONE MANUALMODEL AUTODETECT AUTODETECTLOCAL AUTODETECTNETWORK AUTODETECTSMB))
    { delete $printer->{$_} };
}

='#n16725'>16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930
# DrakX e Brezhoneg.
# Copyright (C) 1999-2003 Mandriva
# Thierry Vignaud <tvignaud@mandriva.com>, 1999-2005
# Jañ-Mai Drapier <jan-mai.drapier@mail.dotcom.fr>, 1999-2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
"POT-Creation-Date: 2005-06-28 15:58+0200\n"
"PO-Revision-Date: 2005-05-27 18:40+0200\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandriva.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../move/move.pm:292
#, c-format
msgid "Which USB key do you want to format?"
msgstr "Pe seurt alc'hwez USB a vennit furmadiñ ?"

#: ../move/move.pm:296
#, c-format
msgid ""
"You are about to format a USB device \"%s\". This will delete all data on "
"it.\n"
"Make sure that the selected device is the USB key you want to format. \n"
"We advise you to unplug all other USB storage devices while doing this "
"operation."
msgstr ""

#: ../move/move.pm:448 ../move/move.pm:460
#, c-format
msgid "Key is not writable"
msgstr "Ne m'eus ket gallet skrivañ en alc'hwez"

#: ../move/move.pm:450
#, c-format
msgid ""
"The USB key seems to have write protection enabled. Please\n"
"unplug it, remove write protection, and then plug it again."
msgstr ""

#: ../move/move.pm:452
#, c-format
msgid "Retry"
msgstr "Aklask"

#: ../move/move.pm:453 ../move/move.pm:497
#, c-format
msgid "Continue without USB key"
msgstr "Kenderc'hel hep ur alc'hwez USB"

#: ../move/move.pm:462
#, c-format
msgid ""
"The USB key seems to have write protection enabled, but we can not safely\n"
"unplug it now.\n"
"\n"
"\n"
"Click the button to reboot the machine, unplug it, remove write protection,\n"
"plug the key again, and launch Mandriva Move again."
msgstr ""

#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1319
#, c-format
msgid "Reboot"
msgstr "Adlañsañ"

#: ../move/move.pm:473
#, c-format
msgid ""
"Your USB key does not have any valid Windows (FAT) partitions.\n"
"We need one to continue (beside, it's more standard so that you\n"
"will be able to move and access your files from machines\n"
"running Windows). Please plug in an USB key containing a\n"
"Windows partition instead.\n"
"\n"
"\n"
"You may also proceed without an USB key - you'll still be\n"
"able to use Mandriva Move as a normal live Mandriva\n"
"Operating System."
msgstr ""

#: ../move/move.pm:483
#, c-format
msgid ""
"We did not detect any USB key on your system. If you\n"
"plug in an USB key now, Mandriva Move will have the ability\n"
"to transparently save the data in your home directory and\n"
"system wide configuration, for next boot on this computer\n"
"or another one. Note: if you plug in a key now, wait several\n"
"seconds before detecting again.\n"
"\n"
"\n"
"You may also proceed without an USB key - you'll still be\n"
"able to use Mandriva Move as a normal live Mandriva\n"
"Operating System."
msgstr ""

#: ../move/move.pm:494
#, c-format
msgid "Need a key to save your data"
msgstr "Red eo da gaout un alc'hwez USB evit enrollañ ho roadoù"

#: ../move/move.pm:496
#, c-format
msgid "Detect USB key again"
msgstr ""

#: ../move/move.pm:517
#, c-format
msgid "Setting up USB key"
msgstr "Kefluniañ an alc'hwez USB"

#: ../move/move.pm:517
#, c-format
msgid "Please wait, setting up system configuration files on USB key..."
msgstr ""
"Emaon o lakaat restroù ar gefluniadur war an alc'hwez USB, gortozit mar "
"plij ..."

#: ../move/move.pm:546
#, c-format
msgid "Enter your user information, password will be used for screensaver"
msgstr ""

#: ../move/move.pm:556
#, c-format
msgid "Auto configuration"
msgstr "Kefluniadur emgefreek"

#: ../move/move.pm:556
#, c-format
msgid "Please wait, detecting and configuring devices..."
msgstr ""
"Gortozit mar plij, o tinoiñ trobarzhelloù ha o kefluniañ trobarzhelloù ..."

#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:230
#: diskdrake/interactive.pm:243 diskdrake/interactive.pm:404
#: diskdrake/interactive.pm:422 diskdrake/interactive.pm:558
#: diskdrake/interactive.pm:563 diskdrake/smbnfs_gtk.pm:41 fsedit.pm:209
#: install_any.pm:1721 install_any.pm:1773 install_steps.pm:81
#: install_steps_interactive.pm:37 interactive/http.pm:117
#: interactive/http.pm:118 network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:810 network/netconnect.pm:914
#: network/netconnect.pm:918 network/netconnect.pm:922
#: network/netconnect.pm:927 network/netconnect.pm:1057
#: network/netconnect.pm:1061 network/netconnect.pm:1065
#: network/netconnect.pm:1069 network/netconnect.pm:1177
#: network/netconnect.pm:1182 network/netconnect.pm:1202
#: network/netconnect.pm:1355 network/thirdparty.pm:267
#: network/thirdparty.pm:274 network/thirdparty.pm:310
#: network/thirdparty.pm:312 network/thirdparty.pm:333
#: network/thirdparty.pm:357 printer/printerdrake.pm:244
#: printer/printerdrake.pm:251 printer/printerdrake.pm:276
#: printer/printerdrake.pm:422 printer/printerdrake.pm:427
#: printer/printerdrake.pm:440 printer/printerdrake.pm:450
#: printer/printerdrake.pm:514 printer/printerdrake.pm:641
#: printer/printerdrake.pm:1352 printer/printerdrake.pm:1399
#: printer/printerdrake.pm:1436 printer/printerdrake.pm:1481
#: printer/printerdrake.pm:1485 printer/printerdrake.pm:1499
#: printer/printerdrake.pm:1591 printer/printerdrake.pm:1672
#: printer/printerdrake.pm:1676 printer/printerdrake.pm:1680
#: printer/printerdrake.pm:1729 printer/printerdrake.pm:1787
#: printer/printerdrake.pm:1791 printer/printerdrake.pm:1805
#: printer/printerdrake.pm:1920 printer/printerdrake.pm:1924
#: printer/printerdrake.pm:1967 printer/printerdrake.pm:2042
#: printer/printerdrake.pm:2060 printer/printerdrake.pm:2069
#: printer/printerdrake.pm:2078 printer/printerdrake.pm:2089
#: printer/printerdrake.pm:2153 printer/printerdrake.pm:2247
#: printer/printerdrake.pm:2767 printer/printerdrake.pm:3042
#: printer/printerdrake.pm:3048 printer/printerdrake.pm:3596
#: printer/printerdrake.pm:3600 printer/printerdrake.pm:3604
#: printer/printerdrake.pm:4064 printer/printerdrake.pm:4305
#: printer/printerdrake.pm:4329 printer/printerdrake.pm:4406
#: printer/printerdrake.pm:4472 printer/printerdrake.pm:4592
#: standalone/drakTermServ:392 standalone/drakTermServ:466
#: standalone/drakTermServ:475 standalone/drakTermServ:770
#: standalone/drakTermServ:777 standalone/drakTermServ:800
#: standalone/drakTermServ:846 standalone/drakTermServ:1022
#: standalone/drakTermServ:1502 standalone/drakTermServ:1518
#: standalone/drakTermServ:1523 standalone/drakTermServ:1531
#: standalone/drakTermServ:1543 standalone/drakTermServ:1564
#: standalone/drakauth:36 standalone/drakbackup:498 standalone/drakbackup:612
#: standalone/drakbackup:1090 standalone/drakbackup:1122
#: standalone/drakbackup:1645 standalone/drakbackup:1801
#: standalone/drakbackup:2415 standalone/drakbackup:4104
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
#: standalone/drakfloppy:297 standalone/drakfloppy:300
#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
#: standalone/scannerdrake:865 standalone/scannerdrake:876
#: standalone/scannerdrake:946 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
msgid "Error"
msgstr "Fazi"

#: ../move/move.pm:605 install_steps.pm:82
#, c-format
msgid ""
"An error occurred, but I do not know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n"
"Kendalc'hit war ho mar."

#: ../move/move.pm:660 install_steps_interactive.pm:37
#, c-format
msgid "An error occurred"
msgstr "Ur fazi a zo bet"

#: ../move/move.pm:666
#, c-format
msgid ""
"An error occurred:\n"
"\n"
"\n"
"%s\n"
"\n"
"This may come from corrupted system configuration files\n"
"on the USB key, in this case removing them and then\n"
"rebooting Mandriva Move would fix the problem. To do\n"
"so, click on the corresponding button.\n"
"\n"
"\n"
"You may also want to reboot and remove the USB key, or\n"
"examine its contents under another OS, or even have\n"
"a look at log files in console #3 and #4 to try to\n"
"guess what's happening."
msgstr ""

#: ../move/move.pm:681
#, c-format
msgid "Remove system config files"
msgstr "Dilemel restroù ar c'hefluniadur ar reizhiad"

#: ../move/move.pm:682
#, c-format
msgid "Simply reboot"
msgstr ""

#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
#, c-format
msgid "You can only run with no CDROM support"
msgstr ""

#: ../move/tree/mdk_totem:71
#, c-format
msgid "Kill those programs"
msgstr "Lazhañ an Lazhañ"

#: ../move/tree/mdk_totem:72
#, c-format
msgid "No CDROM support"
msgstr "Ne m'eus ket implij ar CD-ROMoù"

#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
#: diskdrake/interactive.pm:1035 diskdrake/interactive.pm:1045
#: diskdrake/interactive.pm:1098
#, c-format
msgid "Read carefully!"
msgstr "Lennit aketus !"

#: ../move/tree/mdk_totem:77
#, c-format
msgid ""
"You can not use another CDROM when the following programs are running: \n"
"%s"
msgstr ""

#: ../move/tree/mdk_totem:101
#, c-format
msgid "Copying to memory to allow removing the CDROM"
msgstr ""

#: Xconfig/card.pm:13
#, c-format
msgid "256 kB"
msgstr "256 ko"

#: Xconfig/card.pm:14
#, c-format
msgid "512 kB"
msgstr "512 ko"

#: Xconfig/card.pm:15
#, c-format
msgid "1 MB"
msgstr "1 Mo"

#: Xconfig/card.pm:16
#, c-format
msgid "2 MB"
msgstr "2 Mo"

#: Xconfig/card.pm:17
#, c-format
msgid "4 MB"
msgstr "4 Mo"

#: Xconfig/card.pm:18
#, c-format
msgid "8 MB"
msgstr "8 Mo"

#: Xconfig/card.pm:19
#, c-format
msgid "16 MB"
msgstr "16 Mo"

#: Xconfig/card.pm:20
#, c-format
msgid "32 MB"
msgstr "32 Mo"

#: Xconfig/card.pm:21
#, c-format
msgid "64 MB or more"
msgstr "64 Mo pe vuioc'h"

#: Xconfig/card.pm:155
#, c-format
msgid "X server"
msgstr "servijer X"

#: Xconfig/card.pm:156
#, c-format
msgid "Choose an X server"
msgstr "Dibabit ur servijer X"

#: Xconfig/card.pm:188
#, c-format
msgid "Multi-head configuration"
msgstr ""

#: Xconfig/card.pm:189
#, c-format
msgid ""
"Your system supports multiple head configuration.\n"
"What do you want to do?"
msgstr ""

#: Xconfig/card.pm:258
#, c-format
msgid "Can not install Xorg package: %s"
msgstr "N'eo ket evit staliañ ar pakad Xorg : %s"

#: Xconfig/card.pm:268
#, c-format
msgid "Select the memory size of your graphics card"
msgstr "Dibabit ment memor ho kartenn c'hrafek"

#: Xconfig/card.pm:345
#, c-format
msgid "Xorg configuration"
msgstr "Staliadur Xorg"

#: Xconfig/card.pm:347
#, c-format
msgid "Which configuration of Xorg do you want to have?"
msgstr "Pe seurt kefluniadur Xorg ha fellout a ra deoc'h ?"

#: Xconfig/card.pm:380
#, c-format
msgid "Configure all heads independently"
msgstr ""

#: Xconfig/card.pm:381
#, c-format
msgid "Use Xinerama extension"
msgstr "Implijit Xinemara"

#: Xconfig/card.pm:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Kefluniadur hep ken ar gartenn « %s » %s"

#: Xconfig/card.pm:398 Xconfig/various.pm:23
#, c-format
msgid "Xorg %s"
msgstr "Xorg %s"

#: Xconfig/card.pm:405 Xconfig/various.pm:22
#, c-format
msgid "Xorg %s with 3D hardware acceleration"
msgstr "Xorg %s gant 3D"

#: Xconfig/card.pm:407
#, c-format
msgid "Your card can have 3D hardware acceleration support with Xorg %s."
msgstr ""

#: Xconfig/card.pm:413
#, c-format
msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""

#: Xconfig/card.pm:415
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with Xorg %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""

#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:963
#, c-format
msgid "Custom"
msgstr "Personelañ"

#: Xconfig/main.pm:115 diskdrake/dav.pm:26 help.pm:14
#: install_steps_interactive.pm:85 install_steps_interactive.pm:1319
#: printer/printerdrake.pm:744 printer/printerdrake.pm:4401
#: printer/printerdrake.pm:4853 standalone/draksplash:85
#: standalone/logdrake:173 standalone/net_applet:219
#: standalone/scannerdrake:477
#, c-format
msgid "Quit"
msgstr "Kuitaat"

#: Xconfig/main.pm:117
#, c-format
msgid "Graphic Card"
msgstr "Kartenn C'hrafek"

#: Xconfig/main.pm:120 Xconfig/monitor.pm:110
#, c-format
msgid "Monitor"
msgstr "Skramm"

#: Xconfig/main.pm:123 Xconfig/resolution_and_depth.pm:286
#, c-format
msgid "Resolution"
msgstr "Spister"

#: Xconfig/main.pm:128
#, c-format
msgid "Test"
msgstr "Testañ"

#: Xconfig/main.pm:133 diskdrake/dav.pm:65 diskdrake/interactive.pm:448
#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
#: standalone/drakfont:491 standalone/drakfont:553
#, c-format
msgid "Options"
msgstr "Dibarzhoù"

#: Xconfig/main.pm:168
#, c-format
msgid "Your Xorg configuration file is broken, we will ignore it."
msgstr "Sac'het eo restr kefluniadur Xorg; emaon o tremen anezhañ."

#: Xconfig/main.pm:186
#, c-format
msgid ""
"Keep the changes?\n"
"The current configuration is:\n"
"\n"
"%s"
msgstr ""
"Derc'hel ar c'hemmoù \n"
"Ar kefluniadur red a zo \n"
"\n"
"%s"

#: Xconfig/monitor.pm:111
#, c-format
msgid "Choose a monitor for head #%d"
msgstr "Dibabit ur skramm evit ar benn #%d"

#: Xconfig/monitor.pm:111
#, c-format
msgid "Choose a monitor"
msgstr "Dibabit ur skramm"

#: Xconfig/monitor.pm:117
#, c-format
msgid "Plug'n Play"
msgstr "Lug ha c'hoari"

#: Xconfig/monitor.pm:118 mouse.pm:49
#, c-format
msgid "Generic"
msgstr "Rummel"

#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
#: standalone/harddrake2:88
#, c-format
msgid "Vendor"
msgstr "Gwerzher"

#: Xconfig/monitor.pm:129
#, c-format
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr ""

#: Xconfig/monitor.pm:137
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"An div arventenn dreistpouezus a zo ar feur freskaat a-serzh, da lavaret eo "
"ar\n"
"feur ma vez freskaet ar skramm a-bezh, ha pouezusuc'h c'hoazh ar feur "
"kempredañ\n"
"a-led, da lavaret eo ar feur ma vez diskwelet linennoù skubañ.\n"
"\n"
"HOLLBOUEZHUS eo deoc'h na spisaat ur seurt skramm gant ur feur kempredañ\n"
"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastañ ho skramm\n"
" M'hoc'h eus douetañs, dibabit ur c'hefluniadur fur."

#: Xconfig/monitor.pm:144
#, c-format
msgid "Horizontal refresh rate"
msgstr "Feur freskaat a-led"

#: Xconfig/monitor.pm:145
#, c-format
msgid "Vertical refresh rate"
msgstr "Feur freskaat a-serzh"

#: Xconfig/resolution_and_depth.pm:10
#, c-format
msgid "256 colors (8 bits)"
msgstr "256 liv (8 bit)"

#: Xconfig/resolution_and_depth.pm:11
#, c-format
msgid "32 thousand colors (15 bits)"
msgstr "32 mil liv (15 bit)"

#: Xconfig/resolution_and_depth.pm:12
#, c-format
msgid "65 thousand colors (16 bits)"
msgstr "65 mil liv (16 bit)"

#: Xconfig/resolution_and_depth.pm:13
#, c-format
msgid "16 million colors (24 bits)"
msgstr "16 milion a livioù (24 bit)"

#: Xconfig/resolution_and_depth.pm:127
#, c-format
msgid "Resolutions"
msgstr "Spisterioù"

#: Xconfig/resolution_and_depth.pm:308 diskdrake/hd_gtk.pm:336
#: install_steps_gtk.pm:284 mouse.pm:168 services.pm:162
#: standalone/drakbackup:1583 standalone/drakperm:250
#, c-format
msgid "Other"
msgstr "All"

#: Xconfig/resolution_and_depth.pm:357
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Dibabit ar spister ha donder al livioù"

#: Xconfig/resolution_and_depth.pm:358
#, c-format
msgid "Graphics card: %s"
msgstr "Kartenn c'hrafek : %s"

#: Xconfig/resolution_and_depth.pm:372 interactive.pm:432
#: interactive/gtk.pm:807 interactive/http.pm:103 interactive/http.pm:156
#: interactive/newt.pm:321 interactive/newt.pm:424 interactive/stdio.pm:39
#: interactive/stdio.pm:142 interactive/stdio.pm:143 interactive/stdio.pm:172
#: standalone/drakTermServ:199 standalone/drakTermServ:517
#: standalone/drakbackup:1347 standalone/drakbackup:3961
#: standalone/drakbackup:4021 standalone/drakbackup:4065
#: standalone/drakconnect:158 standalone/drakconnect:848
#: standalone/drakconnect:935 standalone/drakconnect:1031
#: standalone/drakfont:574 standalone/drakfont:586 standalone/drakroam:392
#: standalone/draksplash:165 standalone/drakups:212 standalone/net_monitor:340
#: ugtk2.pm:409 ugtk2.pm:506 ugtk2.pm:908 ugtk2.pm:931
#, c-format
msgid "Ok"
msgstr "Mat eo"

#: Xconfig/resolution_and_depth.pm:372 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:480 install_steps_interactive.pm:422
#: install_steps_interactive.pm:831 interactive.pm:433 interactive/gtk.pm:811
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/newt.pm:428 interactive/stdio.pm:39 interactive/stdio.pm:142
#: interactive/stdio.pm:176 printer/printerdrake.pm:3676
#: standalone/drakautoinst:215 standalone/drakbackup:1347
#: standalone/drakbackup:3887 standalone/drakbackup:3891
#: standalone/drakbackup:3949 standalone/drakconnect:157
#: standalone/drakconnect:933 standalone/drakconnect:1030
#: standalone/drakfont:586 standalone/drakfont:664 standalone/drakfont:741
#: standalone/draksplash:165 standalone/drakups:219 standalone/logdrake:173
#: standalone/net_monitor:339 ugtk2.pm:403 ugtk2.pm:504 ugtk2.pm:513
#: ugtk2.pm:908
#, c-format
msgid "Cancel"
msgstr "Nullañ"

#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
#: standalone/drakbackup:3883 standalone/drakbug:104
#: standalone/drakconnect:153 standalone/drakconnect:236
#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
#: ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Skoazell"

#: Xconfig/test.pm:30
#, c-format
msgid "Test of the configuration"
msgstr "Amprouiñ ar c'hefluniadur"

#: Xconfig/test.pm:31
#, c-format
msgid "Do you want to test the configuration?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"

#: Xconfig/test.pm:31
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""

#: Xconfig/test.pm:69
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
"Degouezhet ez eus ar fazi :\n"
"%s\n"
"Klaskit kemmañ un dibarzh bennak"

#: Xconfig/test.pm:129
#, c-format
msgid "Leaving in %d seconds"
msgstr "Echu eo da %d eilenn"

#: Xconfig/test.pm:129
#, c-format
msgid "Is this the correct setting?"
msgstr "Ha reizh eo ar c'hefluniadur ?"

#: Xconfig/various.pm:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Reizhadur ar stokellaoueg : %s\n"

#: Xconfig/various.pm:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Seurt logodenn : %s\n"

#: Xconfig/various.pm:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Trobarzhell al logodenn : %s\n"

#: Xconfig/various.pm:33
#, c-format
msgid "Monitor: %s\n"
msgstr "Skramm : %s\n"

#: Xconfig/various.pm:34
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "KempredA-led ar skramm : %s\n"

#: Xconfig/various.pm:35
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "FreskA-serzh ar skramm : %s\n"

#: Xconfig/various.pm:37
#, c-format
msgid "Graphics card: %s\n"
msgstr "Kartenn c'hrafek : %s\n"

#: Xconfig/various.pm:38
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memor c'hrafek : %s ko\n"

#: Xconfig/various.pm:40
#, c-format
msgid "Color depth: %s\n"
msgstr "Donder liv : %s\n"

#: Xconfig/various.pm:41
#, c-format
msgid "Resolution: %s\n"
msgstr "Spister : %s\n"

#: Xconfig/various.pm:43
#, c-format
msgid "Xorg driver: %s\n"
msgstr "Sturier Xorg : %s\n"

#: Xconfig/various.pm:72
#, c-format
msgid "Graphical interface at startup"
msgstr "X pa loc'her"

#: Xconfig/various.pm:74
#, c-format
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(Xorg) upon booting.\n"
"Would you like Xorg to start when you reboot?"
msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
"Mennout a rit lañsañ X pa adloc'hit ?"

#: Xconfig/various.pm:87
#, c-format
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
"\n"
"For this you have to plug your graphic card to your TV before booting your "
"computer.\n"
"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
"Do you have this feature?"
msgstr ""

#: Xconfig/various.pm:99
#, c-format
msgid "What norm is your TV using?"
msgstr "Peseurt skinwel oc'h implij ?"

#: Xconfig/xfree.pm:646
#, c-format
msgid ""
"_:weird aspect ratio\n"
"other"
msgstr "hini all"

#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
#: standalone/service_harddrake:207
#, c-format
msgid "Please wait"
msgstr "Gortozit mar plij"

#: any.pm:142
#, c-format
msgid "Bootloader installation in progress"
msgstr "O staliañ ar c'harger loc'hañ"

#: any.pm:153
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""

#: any.pm:164
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Staliadur ar c'harger loc'hañ a zo sac'het. Degouezhet eo ar fazi a heul :"

#: any.pm:170
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""

#: any.pm:208
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""

#: any.pm:231 help.pm:739
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Rann gentañ ar bladenn (MBR)"

#: any.pm:232
#, c-format
msgid "First sector of the root partition"
msgstr "Rann gentañ ar parzhadur kentañ"

#: any.pm:234
#, c-format
msgid "On Floppy"
msgstr "War bladennig"

#: any.pm:236 help.pm:739 printer/printerdrake.pm:4061
#, c-format
msgid "Skip"
msgstr "Tremen e-biou"

#: any.pm:240
#, c-format
msgid "LILO/grub Installation"
msgstr "Staliadur LILO/grub"

#: any.pm:241
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"

#: any.pm:267 standalone/drakboot:261
#, c-format
msgid "Boot Style Configuration"
msgstr "Kefluniadur giz al loc'hañ"

#: any.pm:269 any.pm:301
#, c-format
msgid "Bootloader main options"
msgstr "Dibarzhoù pennañ ar c'harger loc'hañ"

#: any.pm:273
#, c-format
msgid "Give the ram size in MB"
msgstr "Roit ment ar memor vev e Mo"

#: any.pm:275
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Didalvout eo « Strishaat dibarzhoù al linenn urzhiañ » hep tremenger"

#: any.pm:276 any.pm:609 authentication.pm:181
#, c-format
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"

#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1284
#, c-format
msgid "Please try again"
msgstr "Klaskit adarre mar plij"

#: any.pm:281 any.pm:304
#, c-format
msgid "Bootloader to use"
msgstr "C'harger loc'hañ da implijout"

#: any.pm:283 any.pm:306
#, c-format
msgid "Boot device"
msgstr "Trobarzhell loc'hañ"

#: any.pm:285
#, c-format
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"

#: any.pm:286
#, c-format
msgid "Enable ACPI"
msgstr "Bevaat ACPI"

#: any.pm:288
#, c-format
msgid "Force no APIC"
msgstr "Bevaatet APIC ebet"

#: any.pm:290
#, c-format
msgid "Force No Local APIC"
msgstr "Bevaatet APIC lec'hel ebet"

#: any.pm:292 any.pm:643 authentication.pm:186 diskdrake/smbnfs_gtk.pm:179
#: network/netconnect.pm:564 printer/printerdrake.pm:1663
#: printer/printerdrake.pm:1784 standalone/drakbackup:1627
#: standalone/drakbackup:3490 standalone/drakups:299
#, c-format
msgid "Password"
msgstr "Tremenger"

#: any.pm:293 any.pm:644 authentication.pm:187
#, c-format
msgid "Password (again)"
msgstr "Tremenger (adarre)"

#: any.pm:294
#, c-format
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoù al linenn urzhiañ"

#: any.pm:294
#, c-format
msgid "restrict"
msgstr "strishaat"

#: any.pm:296
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Skarañ /tmp bep ma loc'her"

#: any.pm:297
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Spisait ment ar memor bev diouzh ret (kavet %d Mo)"

#: any.pm:305
#, c-format
msgid "Init Message"
msgstr ""

#: any.pm:307
#, c-format
msgid "Open Firmware Delay"
msgstr ""

#: any.pm:308
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""

#: any.pm:309
#, c-format
msgid "Enable CD Boot?"
msgstr ""

#: any.pm:310
#, c-format
msgid "Enable OF Boot?"
msgstr ""

#: any.pm:311
#, c-format
msgid "Default OS?"
msgstr "RK dre ziouer ?"

#: any.pm:364
#, c-format
msgid "Image"
msgstr "Skeudenn"

#: any.pm:365 any.pm:375
#, c-format
msgid "Root"
msgstr "Gwrizienn"

#: any.pm:366 any.pm:388
#, c-format
msgid "Append"
msgstr "Ouzhpennañ en diwezh"

#: any.pm:368 standalone/drakboot:263 standalone/drakboot:267
#, c-format
msgid "Video mode"
msgstr "Mod video"

#: any.pm:370
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:371
#, c-format
msgid "Network profile"
msgstr "Profil rouedad"

#: any.pm:380 any.pm:385 any.pm:387
#, c-format
msgid "Label"
msgstr "Skridennad"

#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
#: standalone/drakfloppy:90 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Dre ziouer"

#: any.pm:389
#, c-format
msgid "Initrd-size"
msgstr "Ment an Initrd"

#: any.pm:391
#, c-format
msgid "NoVideo"
msgstr "N'eo ket video"

#: any.pm:402
#, c-format
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoù goullo"

#: any.pm:403
#, c-format
msgid "You must specify a kernel image"
msgstr "Ret eo deoc'h kaout ur skeudenn kalon"

#: any.pm:403
#, c-format
msgid "You must specify a root partition"
msgstr "Ret eo deoc'h kaout ur parzhadur gwrizienn"

#: any.pm:404
#, c-format
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"

#: any.pm:418
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ ?"

#: any.pm:419
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:419
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Reizhiadoù all (SunOS ...)"

#: any.pm:420
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Reizhiadoù (MacOS ...)"

#: any.pm:420
#, c-format
msgid "Other OS (Windows...)"
msgstr "Reizhiadoù (Windows ...)"

#: any.pm:448
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."

#: any.pm:595
#, c-format
msgid "access to X programs"
msgstr ""

#: any.pm:596
#, c-format
msgid "access to rpm tools"
msgstr ""

#: any.pm:597
#, c-format
msgid "allow \"su\""
msgstr "Aotreañ « su »"

#: any.pm:598
#, c-format
msgid "access to administrative files"
msgstr ""

#: any.pm:599
#, c-format
msgid "access to network tools"
msgstr ""

#: any.pm:600
#, c-format
msgid "access to compilation tools"
msgstr ""

#: any.pm:605
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"

#: any.pm:610
#, c-format
msgid "This password is too simple"
msgstr "Re eeun eo an tremeger"

#: any.pm:611
#, c-format
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"

#: any.pm:612
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"An anv arveriad a zle bezañ ennañ lizherennoù munut, sifroù, `-' ha `_' "
"hepken"

#: any.pm:613
#, c-format
msgid "The user name is too long"
msgstr "Re hir eo an anv arveriad-se"

#: any.pm:614
#, c-format
msgid "This user name has already been added"
msgstr "En implij eo an anv arveriad-se endeo"

#: any.pm:615 any.pm:646
#, c-format
msgid "User ID"
msgstr "ID an arveriad"

#: any.pm:616 any.pm:647
#, c-format
msgid "Group ID"
msgstr "ID ar strollad"

#: any.pm:619
#, c-format
msgid "%s must be a number"
msgstr ""

#: any.pm:620
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""

#: any.pm:625
#, c-format
msgid "Add user"
msgstr "Ouzhpennañ un arveriad"

#: any.pm:626
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"Skrivit un arveriad\n"
"%s"

#: any.pm:629 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:530
#: interactive/http.pm:151 printer/printerdrake.pm:197
#: printer/printerdrake.pm:382 printer/printerdrake.pm:4853
#: standalone/drakbackup:2703 standalone/scannerdrake:668
#: standalone/scannerdrake:818
#, c-format
msgid "Done"
msgstr "Graet"

#: any.pm:630 help.pm:51
#, c-format
msgid "Accept user"
msgstr "Aotren an arveriad"

#: any.pm:641
#, c-format
msgid "Real name"
msgstr "Anv gwirion"

#: any.pm:642 standalone/drakbackup:1622
#, c-format
msgid "Login name"
msgstr "Anv ereañ"

#: any.pm:645
#, c-format
msgid "Shell"
msgstr "Shell"

#: any.pm:649
#, c-format
msgid "Icon"
msgstr "Arlun"

#: any.pm:696 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Emereañ"

#: any.pm:697
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek gant un arveriad a "
"c'hellañ."

#: any.pm:698
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Mennout a rit implijout an arc'hwel-mañ ?"

#: any.pm:699
#, c-format
msgid "Choose the default user:"
msgstr "Dibabit an arveriad dre ziouer :"

#: any.pm:700
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dibabit ar merour prenestrer da seveniñ :"

#: any.pm:712 any.pm:779
#, c-format
msgid "Please choose a language to use."
msgstr "Dibabit ar yezh da implijout, mar plij."

#: any.pm:713 any.pm:780
#, c-format
msgid "Language choice"
msgstr "Dibab ho yezh"

#: any.pm:740
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"

#: any.pm:759 any.pm:788 help.pm:647
#, c-format
msgid "Use Unicode by default"
msgstr "Implijit Unicode dre ziouer"

#: any.pm:760 help.pm:647
#, c-format
msgid "All languages"
msgstr "An holl yezhoù"

#: any.pm:835 help.pm:566 help.pm:855 install_steps_interactive.pm:952
#, c-format
msgid "Country / Region"
msgstr "Bro / Rannvro"

#: any.pm:836
#, c-format
msgid "Please choose your country."
msgstr "Dibabit hor bro, mar plij."

#: any.pm:838
#, c-format
msgid "Here is the full list of available countries"
msgstr "Setu eo listenn leun ar broioù holl"

#: any.pm:839
#, c-format
msgid "Other Countries"
msgstr "Broioù all"

#: any.pm:839 help.pm:51 help.pm:409 help.pm:431 help.pm:647 help.pm:722
#: interactive.pm:393
#, c-format
msgid "Advanced"
msgstr "Barek"

#: any.pm:847
#, c-format
msgid "Input method:"
msgstr "Hentenn enkas :"

#: any.pm:848 install_any.pm:418 network/netconnect.pm:154
#: network/netconnect.pm:305 network/netconnect.pm:310
#: network/netconnect.pm:1168 printer/printerdrake.pm:105
#: printer/printerdrake.pm:2199
#, c-format
msgid "None"
msgstr "Hini ebet"

#: any.pm:963
#, c-format
msgid "No sharing"
msgstr "N'eo ket lodañ"

#: any.pm:963
#, c-format
msgid "Allow all users"
msgstr "Aotreiñ an holl dud"

#: any.pm:967
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""

#: any.pm:979
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""

#: any.pm:982
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""

#: any.pm:990
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""

#: any.pm:1015
#, c-format
msgid "Launch userdrake"
msgstr "Lañsañ userdrake"

#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
msgid "Close"
msgstr "Serriñ"

#: any.pm:1017
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""

#: authentication.pm:23
#, c-format
msgid "Local file"
msgstr "Restr lec'hel"

#: authentication.pm:24
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:25
#, c-format
msgid "NIS"
msgstr "NIS"

#: authentication.pm:26
#, c-format
msgid "Smart Card"
msgstr ""

#: authentication.pm:27 authentication.pm:152
#, c-format
msgid "Windows Domain"
msgstr "Domani Windows"

#: authentication.pm:28
#, c-format
msgid "Active Directory with SFU"
msgstr "Active Directory gant SFU"

#: authentication.pm:29
#, c-format
msgid "Active Directory with Winbind"
msgstr "Active Directory gant Winbind"

#: authentication.pm:55
#, c-format
msgid "Local file:"
msgstr "Restr lec'hel :"

#: authentication.pm:55
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""

#: authentication.pm:56
#, c-format
msgid "LDAP:"
msgstr "LDAP :"

#: authentication.pm:56
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""

#: authentication.pm:57
#, c-format
msgid "NIS:"
msgstr "NIS :"

#: authentication.pm:57
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""

#: authentication.pm:58
#, c-format
msgid "Windows Domain:"
msgstr "Domani Windows :"

#: authentication.pm:58
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""

#: authentication.pm:59
#, c-format
msgid "Active Directory with SFU:"
msgstr "Active Directory gant SFU :"

#: authentication.pm:59 authentication.pm:60
#, c-format
msgid ""
"Kerberos is a secure system for providing network authentication services."
msgstr ""

#: authentication.pm:60
#, c-format
msgid "Active Directory with Winbind:"
msgstr "Active Directory gant Winbind :"

#: authentication.pm:85
#, c-format
msgid "Authentication LDAP"
msgstr "Dilesadur LDAP"

#: authentication.pm:86
#, c-format
msgid "LDAP Base dn"
msgstr ""

#: authentication.pm:87 share/compssUsers.pl:102
#, c-format
msgid "LDAP Server"
msgstr "Servijer LDAP"

#: authentication.pm:100 fsedit.pm:23
#, c-format
msgid "simple"
msgstr "eeun"

#: authentication.pm:101
#, c-format
msgid "TLS"
msgstr "TLS"

#: authentication.pm:102
#, c-format
msgid "SSL"
msgstr "SSL"

#: authentication.pm:103
#, c-format
msgid "security layout (SASL/Kerberos)"
msgstr "reizhadur ar surantez (SASL/Kerberos)"

#: authentication.pm:110 authentication.pm:148
#, c-format
msgid "Authentication Active Directory"
msgstr ""

#: authentication.pm:111 authentication.pm:150 diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Domain"
msgstr "Domani"

#: authentication.pm:113 diskdrake/dav.pm:63 help.pm:146
#: printer/printerdrake.pm:141 share/compssUsers.pl:82
#: standalone/drakTermServ:269
#, c-format
msgid "Server"
msgstr "Servijer"

#: authentication.pm:114
#, c-format
msgid "LDAP users database"
msgstr "Stlennvon an arveriaded LDAP"

#: authentication.pm:115
#, c-format
msgid "Use Anonymous BIND "
msgstr ""

#: authentication.pm:116
#, c-format
msgid "LDAP user allowed to browse the Active Directory"
msgstr ""

#: authentication.pm:117
#, c-format
msgid "Password for user"
msgstr "Tremenger evit an arveriad"

#: authentication.pm:118
#, c-format
msgid "Encryption"
msgstr "Enrinegadur"

#: authentication.pm:129
#, c-format
msgid "Authentication NIS"
msgstr "Dilesadur NIS"

#: authentication.pm:130
#, c-format
msgid "NIS Domain"
msgstr "Domani NIS"

#: authentication.pm:131
#, c-format
msgid "NIS Server"
msgstr "Servijer NIS"

#: authentication.pm:136
#, c-format
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add and reboot the server.\n"
"You will also need the username/password of a Domain Admin to join the "
"machine to the Windows(TM) domain.\n"
"If networking is not yet enabled, Drakx will attempt to join the domain "
"after the network setup step.\n"
"Should this setup fail for some reason and domain authentication is not "
"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
"Domain, and Admin Username/Password, after system boot.\n"
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""

#: authentication.pm:148
#, c-format
msgid "Authentication Windows Domain"
msgstr "Dilesadur Domani Windows"

#: authentication.pm:153
#, c-format
msgid "Domain Admin User Name"
msgstr "Anv merour ar domani"

#: authentication.pm:154
#, c-format
msgid "Domain Admin Password"
msgstr ""

#: authentication.pm:155
#, c-format
msgid "Use Idmap for store UID/SID "
msgstr "Implij LDAP evit enrollañ UID/SID"

#: authentication.pm:156
#, c-format
msgid "Default Idmap "
msgstr "Idmap dre ziouer"

#: authentication.pm:170
#, c-format
msgid "Set administrator (root) password and network authentication methods"
msgstr ""

#: authentication.pm:171
#, c-format
msgid "Set administrator (root) password"
msgstr "Termeniñ tremenger ar merour (root)"

#: authentication.pm:172 standalone/drakvpn:1111
#, c-format
msgid "Authentication method"
msgstr "Hentenn dilesadur"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:177 help.pm:722
#, c-format
msgid "No password"
msgstr "Tremenger ebet"

#: authentication.pm:183
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"

#: authentication.pm:188 network/netconnect.pm:310 network/netconnect.pm:565
#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
#, c-format
msgid "Authentication"
msgstr "Dilesadur"

#: authentication.pm:307
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "N'hellañ ket implijout ar skignañ hep domani NIS"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:753
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Degemer mat en dibaber reizhiad oberiañ !\n"
"\n"
"Dibabit an dibaber reizhiad pe\n"
"gortozit \n"
"\n"

#: bootloader.pm:853
#, c-format
msgid "LILO with graphical menu"
msgstr "LILO gant meuziad c'hrafek"

#: bootloader.pm:854
#, c-format
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"

#: bootloader.pm:855
#, c-format
msgid "Grub"
msgstr "Grub"

#: bootloader.pm:856
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:931
#, c-format
msgid "not enough room in /boot"
msgstr "re bihan eo /boot"

#: bootloader.pm:1403
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Ne mennit ket staliañ ar c'harger loc'hañ war ur parzhadur %s\n"

#: bootloader.pm:1437
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""

#: bootloader.pm:1450
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""

#: bootloader.pm:1451
#, c-format
msgid "Re-install Boot Loader"
msgstr "Staliañ ar c'harger loc'hañ c'hoazh"

#: common.pm:130
#, c-format
msgid "KB"
msgstr "Ko"

#: common.pm:130
#, c-format
msgid "MB"
msgstr "Mo"

#: common.pm:130
#, c-format
msgid "GB"
msgstr "Go"

#: common.pm:138
#, c-format
msgid "TB"
msgstr "To"

#: common.pm:146
#, c-format
msgid "%d minutes"
msgstr "%d munutennoù"

#: common.pm:148
#, c-format
msgid "1 minute"
msgstr "1 munutenn"

#: common.pm:150
#, c-format
msgid "%d seconds"
msgstr "%d eilenn"

#: common.pm:252
#, c-format
msgid "kdesu missing"
msgstr "kdesu mank"

#: common.pm:255
#, c-format
msgid "consolehelper missing"
msgstr "consolehelper mank"

#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
#, c-format
msgid "Austria"
msgstr "Aostria"

#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
#, c-format
msgid "Australia"
msgstr "Australi"

#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
#: network/adsl_consts.pm:123 network/netconnect.pm:44
#, c-format
msgid "Belgium"
msgstr "Beljik"

#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
#: network/adsl_consts.pm:161
#, c-format
msgid "Brazil"
msgstr "Brazil"

#: crypto.pm:17 crypto.pm:51 lang.pm:230
#, c-format
msgid "Canada"
msgstr "Kanada"

#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
#, c-format
msgid "Switzerland"
msgstr "Suis"

#: crypto.pm:19 lang.pm:242
#, c-format
msgid "Costa Rica"
msgstr "Kosta Rika"

#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
#, c-format
msgid "Czech Republic"
msgstr "Republik Tchek"

#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
#: network/adsl_consts.pm:508
#, c-format
msgid "Germany"
msgstr "Alamagn"

#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
#, c-format
msgid "Denmark"
msgstr "Danmark"

#: crypto.pm:23 crypto.pm:54 lang.pm:256
#, c-format
msgid "Estonia"
msgstr "Estoni"

#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
#, c-format
msgid "Spain"
msgstr "Spagn"

#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
#, c-format
msgid "Finland"
msgstr "Finland"

#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
#: network/netconnect.pm:41
#, c-format
msgid "France"
msgstr "Gall"

#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
#, c-format
msgid "Greece"
msgstr "Gres"

#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
#, c-format
msgid "Hungary"
msgstr "Hongri"

#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
#: standalone/drakxtv:47
#, c-format
msgid "Ireland"
msgstr "Iwerzhon"

#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
#, c-format
msgid "Israel"
msgstr "Israel"

#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
#, c-format
msgid "Italy"
msgstr "Itali"

#: crypto.pm:32 crypto.pm:63 lang.pm:303
#, c-format
msgid "Japan"
msgstr "Japon"

#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
#: network/adsl_consts.pm:647 network/netconnect.pm:42
#, c-format
msgid "Netherlands"
msgstr "Izelvroioù"

#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
#, c-format
msgid "Norway"
msgstr "Norvej"

#: crypto.pm:35 crypto.pm:65 lang.pm:357
#, c-format
msgid "New Zealand"
msgstr "Zeland Nevez"

#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
#: network/adsl_consts.pm:704
#, c-format
msgid "Poland"
msgstr "Pologn"

#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
#, c-format
msgid "Portugal"
msgstr "Portugal"

#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
#, c-format
msgid "Russia"
msgstr "Rusi"

#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
#, c-format
msgid "Sweden"
msgstr "Sweden"

#: crypto.pm:40 crypto.pm:70 lang.pm:387
#, c-format
msgid "Slovakia"
msgstr "Slovaki"

#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
#, c-format
msgid "Thailand"
msgstr "Tailhland"

#: crypto.pm:42 crypto.pm:75 lang.pm:411
#, c-format
msgid "Taiwan"
msgstr "Taeihlwan"

#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
#, c-format
msgid "South Africa"
msgstr "Sua-Africa"

#: crypto.pm:77 crypto.pm:107 lang.pm:416 network/netconnect.pm:45
#, c-format
msgid "United States"
msgstr "Amerika"

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Nevez"

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:454 diskdrake/smbnfs_gtk.pm:74
#, c-format
msgid "Unmount"
msgstr "Divarc'hañ"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:451 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Mount"
msgstr "Marc'hañ"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:446
#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:689
#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
#, c-format
msgid "Mount point"
msgstr "Poent marc'hañ"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Skrivit URL ar servijer WebDAV mar plij"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Ezhom en deus an URL da gregiñ gant http:// pe https://"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "Servijer : "

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
#: diskdrake/interactive.pm:1177 diskdrake/interactive.pm:1252
#, c-format
msgid "Mount point: "
msgstr "Poent marc'hañ : "

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1259
#, c-format
msgid "Options: %s"
msgstr "Dibarzhoù : %s"

#: diskdrake/hd_gtk.pm:92
#, c-format
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoù da gentañ mar plij"

#: diskdrake/hd_gtk.pm:95
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"M'emaoc'h e soñj implijout aboot, taolit evezh leuskel un egor dieub (2048 "
"rann\n"
"a zo a-walc'h) e deroù ar bladenn"

#: diskdrake/hd_gtk.pm:152 help.pm:530
#, c-format
msgid "Wizard"
msgstr "Skoazeller"

#: diskdrake/hd_gtk.pm:185
#, c-format
msgid "Choose action"
msgstr "Dibabit un obererezh"

#: diskdrake/hd_gtk.pm:189
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Unan barzhadur Microsoft Dos/Windows bras hoc'h eus.\n"
"Aliañ a ran ouzoc'h adventañ ar parzhadur-se\n"
"(klikit warni, da c'houde klikit ouzh \"Adventañ\")"

#: diskdrake/hd_gtk.pm:191
#, c-format
msgid "Please click on a partition"
msgstr "Klikit ouzh ur parzhadur mar plij"

#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:482
#: standalone/drakbackup:2938 standalone/drakbackup:2998
#, c-format
msgid "Details"
msgstr "Munudoù"

#: diskdrake/hd_gtk.pm:251
#, c-format
msgid "No hard drives found"
msgstr "N'eo ket pladenn ebet"

#: diskdrake/hd_gtk.pm:335
#, c-format
msgid "Ext2"
msgstr "Ext2"

#: diskdrake/hd_gtk.pm:335
#, c-format
msgid "Journalised FS"
msgstr "RR gant ur levr-bourzh"

#: diskdrake/hd_gtk.pm:335
#, c-format
msgid "Swap"
msgstr "Disloañ"

#: diskdrake/hd_gtk.pm:335
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:335
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:335
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1192
#, c-format
msgid "Empty"
msgstr "Goullo"

#: diskdrake/hd_gtk.pm:340
#, c-format
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoù restroù :"

#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
#, c-format
msgid "Use ``%s'' instead"
msgstr "Grit kentoc'h gant « %s »"

#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:470
#, c-format
msgid "Create"
msgstr "Krouiñ"

#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:623
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#: standalone/harddrake2:108 standalone/harddrake2:117
#, c-format
msgid "Type"
msgstr "Seurt"

#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:455
#: standalone/drakperm:123 standalone/printerdrake:235
#, c-format
msgid "Delete"
msgstr "Dilemel"

#: diskdrake/hd_gtk.pm:365
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Implijit « Divarc'hañ » da gentañ"

#: diskdrake/interactive.pm:194
#, c-format
msgid "Choose another partition"
msgstr "Dibabit ur parzhadur all"

#: diskdrake/interactive.pm:194
#, c-format
msgid "Choose a partition"
msgstr "Dibabit ur parzhadur"

#: diskdrake/interactive.pm:223
#, c-format
msgid "Exit"
msgstr "Kuitaat"

#: diskdrake/interactive.pm:256 help.pm:530
#, c-format
msgid "Undo"
msgstr "Dizober"

#: diskdrake/interactive.pm:256
#, c-format
msgid "Toggle to normal mode"
msgstr "Tremen er mod boas"

#: diskdrake/interactive.pm:256
#, c-format
msgid "Toggle to expert mode"
msgstr "Tremen er mod mailh"

#: diskdrake/interactive.pm:275
#, c-format
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"

#: diskdrake/interactive.pm:278
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""

#: diskdrake/interactive.pm:285
#, c-format
msgid "Quit without saving"
msgstr "Kuitaat hep enrollañ"

#: diskdrake/interactive.pm:285
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"

#: diskdrake/interactive.pm:290
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mennout a rit skrivañ kemmoù /etc/fstab"

#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"

#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
msgstr "Skarañ an holl"

#: diskdrake/interactive.pm:311 help.pm:530
#, c-format
msgid "Auto allocate"
msgstr "Ac'hubiñ ent emgefreek"

#: diskdrake/interactive.pm:312 help.pm:530 help.pm:566 help.pm:606
#: help.pm:855 install_steps_interactive.pm:121
#, c-format
msgid "More"
msgstr "Mui"

#: diskdrake/interactive.pm:317
#, c-format
msgid "Hard drive information"
msgstr "Titouroù ar bladenn"

#: diskdrake/interactive.pm:349
#, c-format
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioù kentañ renk"

#: diskdrake/interactive.pm:350
#, c-format
msgid "I can not add any more partitions"
msgstr "N'hellan ouzpennañ parzhadur ebet ken"

#: diskdrake/interactive.pm:351
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Evit kaout muioc'h a barzhadurioù, lamit unan evit ma c'hellot krouiñ ur "
"parzhadur astennet mar plij"

#: diskdrake/interactive.pm:360
#, c-format
msgid "No supermount"
msgstr "N'eus Supermount ebet"

#: diskdrake/interactive.pm:361
#, c-format
msgid "Supermount"
msgstr "Supermount"

#: diskdrake/interactive.pm:362
#, c-format
msgid "Supermount except for CDROM drives"
msgstr "Supermount evit CDROMoù hepken"

#: diskdrake/interactive.pm:368 help.pm:530
#, c-format
msgid "Save partition table"
msgstr "Skrivañ an daolenn barzhañ"

#: diskdrake/interactive.pm:369 help.pm:530
#, c-format
msgid "Restore partition table"
msgstr "Adaozañ ar daolenn barzhañ"

#: diskdrake/interactive.pm:370 help.pm:530
#, c-format
msgid "Rescue partition table"
msgstr "Taolenn barzhañ saveteerezh"

#: diskdrake/interactive.pm:372 help.pm:530
#, c-format
msgid "Reload partition table"
msgstr "Adkargañ ar daolenn barzhañ"

#: diskdrake/interactive.pm:374
#, c-format
msgid "Removable media automounting"
msgstr "Emvarc'hañ ar skoroù lem/laka"

#: diskdrake/interactive.pm:387 diskdrake/interactive.pm:413
#, c-format
msgid "Select file"
msgstr "Dibabit ar restr"

#: diskdrake/interactive.pm:399
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"N'eo ket heñvel ment an daolenn barzhañ gwarezet\n"
"Kenderc'hel memestra ?"

#: diskdrake/interactive.pm:428
#, c-format
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhañ"

#: diskdrake/interactive.pm:434
#, c-format
msgid "Detailed information"
msgstr "Titouroù gant munudoù"

#: diskdrake/interactive.pm:449 diskdrake/interactive.pm:760
#, c-format
msgid "Resize"
msgstr "Adventañ"

#: diskdrake/interactive.pm:450
#, c-format
msgid "Format"
msgstr "Furmadiñ"

#: diskdrake/interactive.pm:452
#, c-format
msgid "Add to RAID"
msgstr "Ouzhpennañ da RAID"

#: diskdrake/interactive.pm:453
#, c-format
msgid "Add to LVM"
msgstr "Ouzhpennañ da LVM"

#: diskdrake/interactive.pm:456
#, c-format
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"

#: diskdrake/interactive.pm:457
#, c-format
msgid "Remove from LVM"
msgstr "Lemel diwar LVM"

#: diskdrake/interactive.pm:458
#, c-format
msgid "Modify RAID"
msgstr "Kemmañ RAID"

#: diskdrake/interactive.pm:459
#, c-format
msgid "Use for loopback"
msgstr "Implij da saveteiñ"

#: diskdrake/interactive.pm:514
#, c-format
msgid "Create a new partition"
msgstr "Krouiñ ur parzhadur nevez"

#: diskdrake/interactive.pm:517
#, c-format
msgid "Start sector: "
msgstr "Rann kregiñ : "

#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:915
#, c-format
msgid "Size in MB: "
msgstr "Ment e Mo : "

#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:916
#, c-format
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroù : "

#: diskdrake/interactive.pm:525
#, c-format
msgid "Preference: "
msgstr "Dibarzh : "

#: diskdrake/interactive.pm:528
#, c-format
msgid "Logical volume name "
msgstr "Anv al levrenn poellek "

#: diskdrake/interactive.pm:558
#, c-format
msgid ""
"You can not create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""

#: diskdrake/interactive.pm:588
#, c-format
msgid "Remove the loopback file?"
msgstr "Lemel ar restr loopback ?"

#: diskdrake/interactive.pm:607
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmañ seurt ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"

#: diskdrake/interactive.pm:619
#, c-format
msgid "Change partition type"
msgstr "Kemmañ seurt ar parzhadur"

#: diskdrake/interactive.pm:620 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Pe seurt reizhiad restroù a vennit ?"

#: diskdrake/interactive.pm:628
#, c-format
msgid "Switching from ext2 to ext3"
msgstr ""

#: diskdrake/interactive.pm:657
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Pelec'h e mennit marc'hañ ar restr saveteiñ %s ?"

#: diskdrake/interactive.pm:658
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'hañ an drobarzhell %s ?"

#: diskdrake/interactive.pm:663
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"N'hellan ket dizober ar poent marc'hañ dre m'eo implijet ar parzhadur-se\n"
"evit saveteiñ. Lamit ar saveteiñ da gentañ"

#: diskdrake/interactive.pm:688
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Pelec'h e mennit marc'hañ an %s ?"

#: diskdrake/interactive.pm:712 diskdrake/interactive.pm:791
#: install_interactive.pm:156 install_interactive.pm:188
#, c-format
msgid "Resizing"
msgstr "Oc'h adventañ"

#: diskdrake/interactive.pm:712
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "O jediñ bevennoù ar reizhiad restroù FAT"

#: diskdrake/interactive.pm:748
#, c-format
msgid "This partition is not resizeable"
msgstr "N'hellan ket adventañ ar parzhadur-se"

#: diskdrake/interactive.pm:753
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziñ holl roadoù ar parzhadur-se"

#: diskdrake/interactive.pm:755
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"

#: diskdrake/interactive.pm:760
#, c-format
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"

#: diskdrake/interactive.pm:761
#, c-format
msgid "New size in MB: "
msgstr "Ment nevez e Mo : "

#: diskdrake/interactive.pm:802 install_interactive.pm:196
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""

#: diskdrake/interactive.pm:840
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennañ"

#: diskdrake/interactive.pm:842 diskdrake/interactive.pm:859
#, c-format
msgid "new"
msgstr "nevez"

#: diskdrake/interactive.pm:857
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Dibabit da be LVM ouzhpennañ"

#: diskdrake/interactive.pm:863
#, c-format
msgid "LVM name?"
msgstr "Anv LVM ?"

#: diskdrake/interactive.pm:900
#, c-format
msgid "This partition can not be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-mañ evit saveteiñ"

#: diskdrake/interactive.pm:913
#, c-format
msgid "Loopback"
msgstr "Saveteiñ"

#: diskdrake/interactive.pm:914
#, c-format
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiñ : "

#: diskdrake/interactive.pm:919
#, c-format
msgid "Give a file name"
msgstr "Roit ur anv restr"

#: diskdrake/interactive.pm:922
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiñ all endeo, dibabit unan all"

#: diskdrake/interactive.pm:923
#, c-format
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"

#: diskdrake/interactive.pm:946
#, c-format
msgid "Mount options"
msgstr "Dibarzhoù marc'hañ"

#: diskdrake/interactive.pm:953
#, c-format
msgid "Various"
msgstr "A bep sort"

#: diskdrake/interactive.pm:1017
#, c-format
msgid "device"
msgstr "trobarzhell"

#: diskdrake/interactive.pm:1018
#, c-format
msgid "level"
msgstr "live"

#: diskdrake/interactive.pm:1019
#, c-format
msgid "chunk size in KiB"
msgstr "ment diaoz (KiO)"

#: diskdrake/interactive.pm:1036
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-mañ."

#: diskdrake/interactive.pm:1051
#, c-format
msgid "What type of partitioning?"
msgstr "Peseurt eo ar parzhadur ?"

#: diskdrake/interactive.pm:1089
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'hañ a-raok ma talvezo ar c'hemm"

#: diskdrake/interactive.pm:1098
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezañ skrivet war bladenn eo taolenn barzhañ an ardivink %s !"

#: diskdrake/interactive.pm:1107
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiñ ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"

#: diskdrake/interactive.pm:1123
#, c-format
msgid "Move files to the new partition"
msgstr "Dilec'hiañ retroù er parzhadur nevez"

#: diskdrake/interactive.pm:1123
#, c-format
msgid "Hide files"
msgstr "Kuzhat ar restroù"

#: diskdrake/interactive.pm:1124
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""

#: diskdrake/interactive.pm:1135
#, c-format
msgid "Moving files to the new partition"
msgstr "O tilec'hiañ retroù er parzhadur nevez"

#: diskdrake/interactive.pm:1139
#, c-format
msgid "Copying %s"
msgstr "Adskrivañ %s"

#: diskdrake/interactive.pm:1143
#, c-format
msgid "Removing %s"
msgstr "Lemel %s"

#: diskdrake/interactive.pm:1157
#, c-format
msgid "partition %s is now known as %s"
msgstr "ar parzhadur %s 'zo %s bremañ"

#: diskdrake/interactive.pm:1158
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Kemmet eo niverennoù ar parzhadurioù : "

#: diskdrake/interactive.pm:1178 diskdrake/interactive.pm:1237
#, c-format
msgid "Device: "
msgstr "Trobarzhell : "

#: diskdrake/interactive.pm:1179
#, c-format
msgid "Devfs name: "
msgstr "Anv DevFS : "

#: diskdrake/interactive.pm:1180
#, c-format
msgid "Volume label: "
msgstr "Anv al levrenn : "

#: diskdrake/interactive.pm:1181
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"

#: diskdrake/interactive.pm:1185 diskdrake/interactive.pm:1194
#: diskdrake/interactive.pm:1255
#, c-format
msgid "Type: "
msgstr "Seurt : "

#: diskdrake/interactive.pm:1189 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Anv : "

#: diskdrake/interactive.pm:1196
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiñ : rann %s\n"

#: diskdrake/interactive.pm:1197
#, c-format
msgid "Size: %s"
msgstr "Ment : %s"

#: diskdrake/interactive.pm:1199
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"

#: diskdrake/interactive.pm:1201
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Kranenn %d da %d\n"

#: diskdrake/interactive.pm:1202
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""

#: diskdrake/interactive.pm:1203
#, c-format
msgid "Formatted\n"
msgstr "Furmadet\n"

#: diskdrake/interactive.pm:1204
#, c-format
msgid "Not formatted\n"
msgstr "N'eo ket furmadet\n"

#: diskdrake/interactive.pm:1205
#, c-format
msgid "Mounted\n"
msgstr "Marc'het\n"

#: diskdrake/interactive.pm:1206
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1208
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Restr(où) saveteiñ :\n"
"   %s\n"

#: diskdrake/interactive.pm:1209
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Parzhadur loc'het dre ziouer\n"
"    (evit loc'hañ MS-DOS, ket evit lilo)\n"

#: diskdrake/interactive.pm:1211
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"

#: diskdrake/interactive.pm:1212
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Ment diaoz %d KiO\n"

#: diskdrake/interactive.pm:1213
#, c-format
msgid "RAID-disks %s\n"
msgstr "Pladennoù RAID %s\n"

#: diskdrake/interactive.pm:1215
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiñ : %s"

#: diskdrake/interactive.pm:1218
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""

#: diskdrake/interactive.pm:1221
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""

#: diskdrake/interactive.pm:1238
#, c-format
msgid "Read-only"
msgstr "Lenn-hepken"

#: diskdrake/interactive.pm:1239
#, c-format
msgid "Size: %s\n"
msgstr "Ment : %s\n"

#: diskdrake/interactive.pm:1240
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"

#: diskdrake/interactive.pm:1241
#, c-format
msgid "Info: "
msgstr "Titouroù : "

#: diskdrake/interactive.pm:1242
#, c-format
msgid "LVM-disks %s\n"
msgstr "Pladennoù LVM %s\n"

#: diskdrake/interactive.pm:1243
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhañ : %s\n"

#: diskdrake/interactive.pm:1244
#, c-format
msgid "on channel %d id %d\n"
msgstr "war kanol %d Nn %d\n"

#: diskdrake/interactive.pm:1279
#, c-format
msgid "Filesystem encryption key"
msgstr "Alc'hwez enrinegadur ar reizhiad restroù"

#: diskdrake/interactive.pm:1280
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Dibab hoc'h alc'hwez enrinegadur ar reizhiad restroù"

#: diskdrake/interactive.pm:1283
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Re eeun eo an alc'hwez enrinegadur-se (%d arouezenn a zo ret d'an nebeutañ)"

#: diskdrake/interactive.pm:1284
#, c-format
msgid "The encryption keys do not match"
msgstr "An alc'hwezoù enrinegadur ne glot ket"

#: diskdrake/interactive.pm:1287 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Alc'hwez enrinegadur"

#: diskdrake/interactive.pm:1288
#, c-format
msgid "Encryption key (again)"
msgstr "Alc'hwez enrinegadur (adarre)"

#: diskdrake/interactive.pm:1289 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
msgstr "Algoritm enrinegadur"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Kemmañ seurt"

#: diskdrake/smbnfs_gtk.pm:162
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
"N'hellan ket ereañ gant an anv arveriad %s (n'eo ket mat an tremenger ?)"

#: diskdrake/smbnfs_gtk.pm:166 diskdrake/smbnfs_gtk.pm:175
#, c-format
msgid "Domain Authentication Required"
msgstr ""

#: diskdrake/smbnfs_gtk.pm:167
#, c-format
msgid "Which username"
msgstr "Peseurt anv"

#: diskdrake/smbnfs_gtk.pm:167
#, c-format
msgid "Another one"
msgstr "Unan all"

#: diskdrake/smbnfs_gtk.pm:176
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""

#: diskdrake/smbnfs_gtk.pm:178 standalone/drakbackup:3489
#, c-format
msgid "Username"
msgstr "Anv arveriad"

#: diskdrake/smbnfs_gtk.pm:204
#, c-format
msgid "Search servers"
msgstr "Klask servijerioù"

#: diskdrake/smbnfs_gtk.pm:209
#, c-format
msgid "Search new servers"
msgstr "Klask servijerioù nevez"

#: do_pkgs.pm:16 do_pkgs.pm:31
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ar pakad %s a zo war-nes bezañ staliet. Mennout a rit staliañ ?"

#: do_pkgs.pm:21 do_pkgs.pm:36
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""

#: do_pkgs.pm:182
#, c-format
msgid "Installing packages..."
msgstr "O staliañ pakadoù ..."

#: do_pkgs.pm:227
#, c-format
msgid "Removing packages..."
msgstr "Lemel pakadoù ..."

#: fs.pm:519
#, c-format
msgid "Mounting partition %s"
msgstr "O zivarc'hañ ar parzhadur %s"

#: fs.pm:520
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "sac'het eo mac'hañ ar barzhadur %s er renkell %s"

#: fs.pm:525 fs.pm:542
#, c-format
msgid "Checking %s"
msgstr "O wiriañ %s"

#: fs.pm:558 partition_table.pm:385
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'hañ %s : %s"

#: fs.pm:590
#, c-format
msgid "Enabling swap partition %s"
msgstr "Bevañ ar barzhadur disloañ %s"

#: fs/format.pm:57 fs/format.pm:64
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiñ ar parzhadur %s"

#: fs/format.pm:61
#, c-format
msgid "Creating and formatting file %s"
msgstr "O krouiñ hag o furmadiñ ar restr saveteiñ %s"

#: fs/format.pm:114
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiñ %s er seurt %s"

#: fs/format.pm:119 fs/format.pm:121
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiñ er seurt %s eus %s a zo sac'het"

#: fs/loopback.pm:30
#, c-format
msgid "Circular mounts %s\n"
msgstr "Marc'hañ kelc'hiek %s\n"

#: fs/mount_options.pm:113
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""

#: fs/mount_options.pm:116
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""

#: fs/mount_options.pm:119
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""

#: fs/mount_options.pm:121
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""

#: fs/mount_options.pm:125
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""

#: fs/mount_options.pm:129
#, c-format
msgid "Mount the file system read-only."
msgstr "Mountañ ar reizhiad restroù en el lenn-hepken."

#: fs/mount_options.pm:131
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr ""

#: fs/mount_options.pm:135
#, c-format
msgid ""
"Allow an ordinary user to mount the file system. The\n"
"name of the mounting user is written to mtab so that he can unmount the "
"file\n"
"system again. This option implies the options noexec, nosuid, and nodev\n"
"(unless overridden by subsequent options, as in the option line\n"
"user,exec,dev,suid )."
msgstr ""

#: fs/mount_options.pm:143
#, c-format
msgid "Give write access to ordinary users"
msgstr ""

#: fs/mount_options.pm:145
#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""

#: fs/type.pm:372
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "N'hellit ket implij JFS evit ar parzhadurioù bihanioc'h evit 16Mo"

#: fs/type.pm:373
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "N'hellit ket implij ReiserFS evit ar parzhadurioù bihanioc'h evit 32Mo"

#: fsedit.pm:27
#, c-format
msgid "with /usr"
msgstr "gant /usr"

#: fsedit.pm:32
#, c-format
msgid "server"
msgstr "servijer"

#: fsedit.pm:210
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"N'hellañ ket lenn ar taolenn barzhañ an drobarzhell %s, re vrein eo "
"evidon :\n"
"(\n"
"Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioù siek (Kollet e vo "
"HOLL ROADOÙ ar bladenn-se).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(%s eo ar fazi)\n"
"\n"

#: fsedit.pm:381
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Poentoù marc'hañ a rank kregiñ gant /"

#: fsedit.pm:382
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""

#: fsedit.pm:383
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'hañ %s endeo\n"

#: fsedit.pm:385
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""

#: fsedit.pm:388
#, c-format
msgid "You can not use a LVM Logical Volume for mount point %s"
msgstr "Ne mennit ket implij ul levrenn poellek evit ar poent marc'hañ %s"

#: fsedit.pm:390
#, c-format
msgid ""
"You've selected a LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""

#: fsedit.pm:393
#, c-format
msgid ""
"You may not be able to install lilo (since lilo does not handle a LV on "
"multiple PVs)"
msgstr ""

#: fsedit.pm:396 fsedit.pm:398
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""

#: fsedit.pm:400 fsedit.pm:402
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""

#: fsedit.pm:404
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""

#: fsedit.pm:465
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""

#: fsedit.pm:467
#, c-format
msgid "Nothing to do"
msgstr "Netra d'ober"

#: harddrake/data.pm:62 install_any.pm:1656
#, c-format
msgid "Floppy"
msgstr "Pladennig"

#: harddrake/data.pm:72
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:88 install_any.pm:1657
#, c-format
msgid "Hard Disk"
msgstr "Pladenn"

#: harddrake/data.pm:97 install_any.pm:1658
#, c-format
msgid "CDROM"
msgstr "CDROM"

#: harddrake/data.pm:107
#, c-format
msgid "CD/DVD burners"
msgstr "engraverioù CD/DVD"

#: harddrake/data.pm:117
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:127 standalone/drakbackup:2036
#, c-format
msgid "Tape"
msgstr "Bandenn"

#: harddrake/data.pm:136
#, c-format
msgid "Videocard"
msgstr "Kartenn video"

#: harddrake/data.pm:146
#, c-format
msgid "DVB card"
msgstr "Kartenn DVB"

#: harddrake/data.pm:154
#, c-format
msgid "Tvcard"
msgstr "Kartenn skinwel"

#: harddrake/data.pm:163
#, c-format
msgid "Other MultiMedia devices"
msgstr "Trobarzhelloù liesvedia all"

#: harddrake/data.pm:172
#, c-format
msgid "Soundcard"
msgstr "Kartenn son"

#: harddrake/data.pm:185
#, c-format
msgid "Webcam"
msgstr "Webkam"

#: harddrake/data.pm:199
#, c-format
msgid "Processors"
msgstr "Kewerierioù"

#: harddrake/data.pm:209
#, c-format
msgid "ISDN adapters"
msgstr "Kartennoù ISDN"

#: harddrake/data.pm:220
#, c-format
msgid "USB sound devices"
msgstr "Trobarzhelloù kwelet USB"

#: harddrake/data.pm:229
#, c-format
msgid "Radio cards"
msgstr "Kartennoù radio"

#: harddrake/data.pm:238
#, c-format
msgid "ATM network cards"
msgstr "Kartennoù rouedad ATM"

#: harddrake/data.pm:247
#, c-format
msgid "WAN network cards"
msgstr "Kartennoù rouedad WAN"

#: harddrake/data.pm:256
#, c-format
msgid "Bluetooth devices"
msgstr "Trobarzhelloù Bluetooth"

#: harddrake/data.pm:265
#, c-format
msgid "Ethernetcard"
msgstr "Kartenn rouedad"

#: harddrake/data.pm:282 network/netconnect.pm:479
#, c-format
msgid "Modem"
msgstr "Modem"

#: harddrake/data.pm:292
#, c-format
msgid "ADSL adapters"
msgstr "Kartennoù ADSL"

#: harddrake/data.pm:306
#, c-format
msgid "Memory"
msgstr "Memor"

#: harddrake/data.pm:315
#, c-format
msgid "AGP controllers"
msgstr "Kartennoù AGP"

#: harddrake/data.pm:324 help.pm:186 help.pm:855
#: install_steps_interactive.pm:984
#, c-format
msgid "Printer"
msgstr "Moullerez"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:338
#, c-format
msgid "Game port controllers"
msgstr ""

#: harddrake/data.pm:347
#, c-format
msgid "Joystick"
msgstr "Lanker-c'hoari"

#: harddrake/data.pm:357
#, c-format
msgid "SATA controllers"
msgstr "Kartennoù SATA"

#: harddrake/data.pm:366
#, c-format
msgid "RAID controllers"
msgstr "Kartennoù RAID"

#: harddrake/data.pm:375
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Kartennoù (E)IDE/ATA"

#: harddrake/data.pm:384
#, c-format
msgid "Firewire controllers"
msgstr "Kartennoù Firewire"

#: harddrake/data.pm:393
#, c-format
msgid "PCMCIA controllers"
msgstr "Kartennoù PCMCIA"

#: harddrake/data.pm:402
#, c-format
msgid "SCSI controllers"
msgstr "Kartennoù SCSI"

#: harddrake/data.pm:411
#, c-format
msgid "USB controllers"
msgstr "Kartennoù USB"

#: harddrake/data.pm:420
#, c-format
msgid "USB ports"
msgstr "Porzhioù USB"

#: harddrake/data.pm:429
#, c-format
msgid "SMBus controllers"
msgstr "Kartennoù SMBus"

#: harddrake/data.pm:438
#, c-format
msgid "Bridges and system controllers"
msgstr "Pontoù ha kontrolleroù ar reizhiad"

#: harddrake/data.pm:447 help.pm:855 install_steps_interactive.pm:117
#: install_steps_interactive.pm:944 standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
msgstr "Stokellaoueg"

#: harddrake/data.pm:460
#, c-format
msgid "Tablet and touchscreen"
msgstr ""

#: harddrake/data.pm:469 help.pm:855 install_steps_interactive.pm:977
#, c-format
msgid "Mouse"
msgstr "Logodenn"

#: harddrake/data.pm:483
#, c-format
msgid "UPS"
msgstr "UPS"

#: harddrake/data.pm:492
#, c-format
msgid "Scanner"
msgstr "Eiltreser"

#: harddrake/data.pm:502 standalone/harddrake2:441
#, c-format
msgid "Unknown/Others"
msgstr "Anavez/All"

#: harddrake/data.pm:530
#, c-format
msgid "cpu # "
msgstr "kewerier #"

#: harddrake/sound.pm:190 standalone/drakconnect:162
#: standalone/drakconnect:637
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Gortozit mar plij, o lakaat ar c'hefluniadur"

#: harddrake/sound.pm:226
#, c-format
msgid "No alternative driver"
msgstr "N'eus sturier all ebet"

#: harddrake/sound.pm:227
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"N'eus sturier all (OSS pe ALSA) evit ho kartenn gwelet (%s). Implij eo ar "
"sturier « %s » ganti."

#: harddrake/sound.pm:233
#, c-format
msgid "Sound configuration"
msgstr "Kefluniadur gwelet"

#: harddrake/sound.pm:235
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Amañ e c'hellit dibab ur sturier all (OSS pe ALSA) evit ho kartenn kwelet (%"
"s)."

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:240
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Bremañ implij a ra ar sturier %s « %s » ho gartenn son (ar sturier a-ziouer "
"a zo « %s » evit)"

#: harddrake/sound.pm:242
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""

#: harddrake/sound.pm:256 harddrake/sound.pm:341 standalone/drakups:146
#, c-format
msgid "Driver:"
msgstr "Sturier :"

#: harddrake/sound.pm:261
#, c-format
msgid "Trouble shooting"
msgstr ""

#: harddrake/sound.pm:269 keyboard.pm:391 lang.pm:1078
#: network/ndiswrapper.pm:95 network/netconnect.pm:458
#: printer/printerdrake.pm:1206 printer/printerdrake.pm:2230
#: printer/printerdrake.pm:2316 printer/printerdrake.pm:2362
#: printer/printerdrake.pm:2429 printer/printerdrake.pm:2464
#: printer/printerdrake.pm:2773 printer/printerdrake.pm:2780
#: printer/printerdrake.pm:3740 printer/printerdrake.pm:4069
#: printer/printerdrake.pm:4189 printer/printerdrake.pm:5310
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
#: standalone/drakclock:224 standalone/drakconnect:969
#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
#: standalone/scannerdrake:51 standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Ho evezh"

#: harddrake/sound.pm:269
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""

#: harddrake/sound.pm:277
#, c-format
msgid "No open source driver"
msgstr "N'eo ket ur mollad dieub"

#: harddrake/sound.pm:278
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""

#: harddrake/sound.pm:281
#, c-format
msgid "No known driver"
msgstr "Mollad anavez"

#: harddrake/sound.pm:282
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "N'eus sturier ebet evit ho kartenn gwelet (%s)"

#: harddrake/sound.pm:286
#, c-format
msgid "Unknown driver"
msgstr "Mollad anavez"

#: harddrake/sound.pm:287
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Fazi : n'eo ket rollet ar sturier « %s » evit ho kartenn gwelet"

#: harddrake/sound.pm:301
#, c-format
msgid "Sound trouble shooting"
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:304
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""

#: harddrake/sound.pm:330
#, c-format
msgid "Let me pick any driver"
msgstr "Choazh ur sturier"

#: harddrake/sound.pm:333
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Choazh ur sturier dre ziouer"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:336
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""

#: harddrake/v4l.pm:12 standalone/net_applet:73 standalone/net_applet:74
#: standalone/net_applet:76
#, c-format
msgid "Auto-detect"
msgstr "Dinoiñ dre ardivink"

#: harddrake/v4l.pm:85 harddrake/v4l.pm:263 harddrake/v4l.pm:296
#, c-format
msgid "Unknown|Generic"
msgstr "Anavez|Rummel"

#: harddrake/v4l.pm:118
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Anavez|CPH05X (bt878) [gwerzherioù niverus]"

#: harddrake/v4l.pm:119
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Anavez|CPH06X (bt878) [gwerzherioù niverus]"

#: harddrake/v4l.pm:392
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""

#: harddrake/v4l.pm:395
#, c-format
msgid "Card model:"
msgstr "Gobari ar gartenn :"

#: harddrake/v4l.pm:396
#, c-format
msgid "Tuner type:"
msgstr "Seurt an tuner :"

#: harddrake/v4l.pm:397
#, c-format
msgid "Number of capture buffers:"
msgstr ""

#: harddrake/v4l.pm:397
#, c-format
msgid "number of capture buffers for mmap'ed capture"
msgstr ""

#: harddrake/v4l.pm:399
#, c-format
msgid "PLL setting:"
msgstr "Kefluniadur ar PLL :"

#: harddrake/v4l.pm:400
#, c-format
msgid "Radio support:"
msgstr ""

#: harddrake/v4l.pm:400
#, c-format
msgid "enable radio support"
msgstr ""

#: help.pm:11
#, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandriva Linux distribution. If you agree with all the\n"
"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
"button will reboot your computer."
msgstr ""

#: help.pm:14 install_steps_gtk.pm:552 install_steps_interactive.pm:91
#: install_steps_interactive.pm:735 standalone/drakautoinst:214
#, c-format
msgid "Accept"
msgstr "Plijout a ra din"

#: help.pm:17
#, c-format
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
"system administrator, the users you add at this point will not be "
"authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
"mistake could mean that your system will not work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
"lose some information, but you will not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
"you type in this field and copy it to the \"%s\" one, which is the name\n"
"this user will enter to log onto the system. If you like, you may override\n"
"the default and change the user name. The next step is to enter a password.\n"
"From a security point of view, a non-privileged (regular) user password is\n"
"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
"by making it blank or too simple: after all, your files could be the ones\n"
"at risk.\n"
"\n"
"Once you click on \"%s\", you can add other users. Add a user for each one\n"
"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
"finished adding users.\n"
"\n"
"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
"that user (bash by default).\n"
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
"you're interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""

#: help.pm:51 printer/printerdrake.pm:1662 printer/printerdrake.pm:1783
#, c-format
msgid "User name"
msgstr "Anv arveriad"

#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:233
#: install_steps_gtk.pm:694 interactive.pm:432 interactive/newt.pm:321
#: network/thirdparty.pm:323 printer/printerdrake.pm:3678
#: standalone/drakTermServ:382 standalone/drakbackup:3940
#: standalone/drakbackup:4034 standalone/drakbackup:4051
#: standalone/drakbackup:4069 ugtk2.pm:506
#, c-format
msgid "Next"
msgstr "A heul"

#: help.pm:51
#, c-format
msgid "Do you want to use this feature?"
msgstr "Mennout a rit implijout an arc'hwel-mañ ?"

#: help.pm:54
#, c-format
msgid ""
"Listed here are the existing Linux partitions detected on your hard drive.\n"
"You can keep the choices made by the wizard, since they are good for most\n"
"common installations. If you make any changes, you must at least define a\n"
"root partition (\"/\"). Do not choose too small a partition or you will not\n"
"be able to install enough software. If you want to store your data on a\n"
"separate partition, you will also need to create a \"/home\" partition\n"
"(only possible if you have more than one Linux partition available).\n"
"\n"
"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""

#: help.pm:85
#, c-format
msgid ""
"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
"selected package is located on another CD-ROM, DrakX will eject the current\n"
"CD and ask you to insert the required one. If you do not have the requested\n"
"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
"installed."
msgstr ""

#: help.pm:92
#, c-format
msgid ""
"It's now time to specify which programs you wish to install on your system.\n"
"There are thousands of packages available for Mandriva Linux, and to make "
"it\n"
"simpler to manage, they have been placed into groups of similar\n"
"applications.\n"
"\n"
"Mandriva Linux sorts package groups in four categories. You can mix and\n"
"match applications from the various categories, so a ``Workstation''\n"
"installation can still have applications from the ``Server'' category\n"
"installed.\n"
"\n"
" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
"more of the groups in the workstation category.\n"
"\n"
" * \"%s\": if you plan on using your machine for programming, select the\n"
"appropriate groups from that category. The special \"LSB\" group will\n"
"configure your system so that it complies as much as possible with the\n"
"Linux Standard Base specifications.\n"
"\n"
"   Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
"of the system. However, if you do not select the \"LSB\" group you will\n"
"still have a system which is nearly 100%% LSB-compliant.\n"
"\n"
" * \"%s\": if your machine is intended to be a server, select which of the\n"
"more common services you wish to install on your machine.\n"
"\n"
" * \"%s\": this is where you will choose your preferred graphical\n"
"environment. At least one must be selected if you want to have a graphical\n"
"interface available.\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
"text about that group.\n"
"\n"
"You can check the \"%s\" box, which is useful if you're familiar with the\n"
"packages being offered or if you want to have total control over what will\n"
"be installed.\n"
"\n"
"If you start the installation in \"%s\" mode, you can deselect all groups\n"
"and prevent the installation of any new packages. This is useful for\n"
"repairing or updating an existing system.\n"
"\n"
"If you deselect all groups when performing a regular installation (as\n"
"opposed to an upgrade), a dialog will pop up suggesting different options\n"
"for a minimal installation:\n"
"\n"
" * \"%s\": install the minimum number of packages possible to have a\n"
"working graphical desktop.\n"
"\n"
" * \"%s\": installs the base system plus basic utilities and their\n"
"documentation. This installation is suitable for setting up a server.\n"
"\n"
" * \"%s\": will install the absolute minimum number of packages necessary\n"
"to get a working Linux system. With this installation you will only have a\n"
"command-line interface. The total size of this installation is about 65\n"
"megabytes."
msgstr ""

#: help.pm:146 share/compssUsers.pl:24
#, c-format
msgid "Workstation"
msgstr "Arsav al labour"

#: help.pm:146 share/compssUsers.pl:65 share/compssUsers.pl:167
#: share/compssUsers.pl:169
#, c-format
msgid "Development"
msgstr "Diorren"

#: help.pm:146 share/compssUsers.pl:145
#, c-format
msgid "Graphical Environment"
msgstr "Endeo grafikel"

#: help.pm:146 install_steps_gtk.pm:231 install_steps_interactive.pm:642
#, c-format
msgid "Individual package selection"
msgstr "Diuz pakadoù unan hag unan"

#: help.pm:146 help.pm:588
#, c-format
msgid "Upgrade"
msgstr "Bremanaat"

#: help.pm:146 install_steps_interactive.pm:600
#, c-format
msgid "With X"
msgstr "Gant X"

#: help.pm:146
#, c-format
msgid "With basic documentation"
msgstr "Gant teuliadur bihan"

#: help.pm:146
#, c-format
msgid "Truly minimal install"
msgstr "Staliadur bihan gwir"

#: help.pm:149
#, c-format
msgid ""
"If you choose to install packages individually, the installer will present\n"
"a tree containing all packages classified by groups and subgroups. While\n"
"browsing the tree, you can select entire groups, subgroups, or individual\n"
"packages.\n"
"\n"
"Whenever you select a package on the tree, a description will appear on the\n"
"right to let you know the purpose of that package.\n"
"\n"
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you'll be asked to confirm that you really want those servers to be\n"
"installed. By default Mandriva Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that\n"
"security holes were discovered after this version of Mandriva Linux was\n"
"finalized. If you do not know what a particular service is supposed to do "
"or\n"
"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
"the listed services and they will be started automatically at boot time. !!\n"
"\n"
"The \"%s\" option is used to disable the warning dialog which appears\n"
"whenever the installer automatically selects a package to resolve a\n"
"dependency issue. Some packages depend on others and the installation of\n"
"one particular package may require the installation of another package. The\n"
"installer can determine which packages are required to satisfy a dependency\n"
"to successfully complete the installation.\n"
"\n"
"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
"package list created during a previous installation. This is useful if you\n"
"have a number of machines that you wish to configure identically. Clicking\n"
"on this icon will ask you to insert the floppy disk created at the end of\n"
"another installation. See the second tip of the last step on how to create\n"
"such a floppy."
msgstr ""

#: help.pm:180 help.pm:285 help.pm:313 help.pm:444 install_any.pm:895
#: interactive.pm:157 modules/interactive.pm:71 standalone/drakbackup:2503
#: standalone/draksec:54 standalone/harddrake2:308 standalone/net_applet:295
#: ugtk2.pm:907 wizards.pm:156
#, c-format
msgid "No"
msgstr "N'eo ket"

#: help.pm:180 help.pm:285 help.pm:444 install_any.pm:895 interactive.pm:157
#: modules/interactive.pm:71 printer/printerdrake.pm:743
#: standalone/drakbackup:2503 standalone/draksec:55 standalone/harddrake2:307
#: standalone/net_applet:299 ugtk2.pm:907 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ya"

#: help.pm:180
#, c-format
msgid "Automatic dependencies"
msgstr ""

#: help.pm:183
#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
"information on how to set up a new printer. The interface presented in our\n"
"manual is similar to the one used during installation."
msgstr ""

#: help.pm:186 help.pm:566 help.pm:855 install_steps_gtk.pm:607
#: standalone/drakbackup:2327 standalone/drakbackup:2331
#: standalone/drakbackup:2335 standalone/drakbackup:2339
#, c-format
msgid "Configure"
msgstr "Kefluniañ"

#: help.pm:189
#, fuzzy, c-format
msgid ""
"This dialog is used to select which services you wish to start at boot\n"
"time.\n"
"\n"
"DrakX will list all services available on the current installation. Review\n"
"each one of them carefully and uncheck those which are not needed at boot\n"
"time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
"selected. However, if you're not sure whether a service is useful or not,\n"
"it is safer to leave the default behavior.\n"
"\n"
"!! At this stage, be very careful if you intend to use your machine as a\n"
"server: you probably do not want to start any services which you do not "
"need.\n"
"Please remember that some services can be dangerous if they're enabled on a\n"
"server. In general, select only those services you really need. !!"
msgstr ""
"Bremañ e c'hellit diuz pe servijoù a vennit e vije lañset pa loc'her.\n"
"Pa zeu ho logodenn war un draez, ul lagadenn skoazell a zeuio war wel hag\n"
"a zisplego pal ar servij-se.\n"
"\n"
"Bezit aketuz-kenañ el lankad-mañ ma vennit implijout ho ardivink evel ur\n"
"servijer : mennout a rit emichañs chom hep loc'hañ kement servij n'ho peus "
"ket\n"
"c'hoant."

#: help.pm:206
#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
"motherboard is set to local time, you may deactivate this by unselecting\n"
"\"%s\", which will let GNU/Linux know that the system clock and the\n"
"hardware clock are in the same time zone. This is useful when the machine\n"
"also hosts another operating system.\n"
"\n"
"The \"%s\" option will automatically regulate the system clock by\n"
"connecting to a remote time server on the Internet. For this feature to\n"
"work, you must have a working Internet connection. We recommend that you\n"
"choose a time server located near you. This option actually installs a time\n"
"server which can be used by other machines on your local network as well."
msgstr ""

#: help.pm:217 install_steps_interactive.pm:879
#, c-format
msgid "Hardware clock set to GMT"
msgstr "War GMT eo an eurier periantel"

#: help.pm:217
#, c-format
msgid "Automatic time synchronization"
msgstr ""

#: help.pm:220
#, c-format
msgid ""
"Graphic Card\n"
"\n"
"   The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If this is not correct, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
"   In the situation where different servers are available for your card,\n"
"with or without 3D acceleration, you're asked to choose the server which\n"
"best suits your needs."
msgstr ""

#: help.pm:231
#, c-format
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
"\n"
"You'll see a list of different parameters to change to get an optimal\n"
"graphical display.\n"
"\n"
"Graphic Card\n"
"\n"
"   The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If this is not correct, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
"   In the situation where different servers are available for your card,\n"
"with or without 3D acceleration, you're asked to choose the server which\n"
"best suits your needs.\n"
"\n"
"\n"
"\n"
"Monitor\n"
"\n"
"   Normally the installer will automatically detect and configure the\n"
"monitor connected to your machine. If it is not correct, you can choose\n"
"from this list the monitor which is connected to your computer.\n"
"\n"
"\n"
"\n"
"Resolution\n"
"\n"
"   Here you can choose the resolutions and color depths available for your\n"
"graphics hardware. Choose the one which best suits your needs (you will be\n"
"able to make changes after the installation). A sample of the chosen\n"
"configuration is shown in the monitor picture.\n"
"\n"
"\n"
"\n"
"Test\n"
"\n"
"   Depending on your hardware, this entry might not appear.\n"
"\n"
"   The system will try to open a graphical screen at the desired\n"
"resolution. If you see the test message during the test and answer \"%s\",\n"
"then DrakX will proceed to the next step. If you do not see it, then it\n"
"means that some part of the auto-detected configuration was incorrect and\n"
"the test will automatically end after 12 seconds and return you to the\n"
"menu. Change settings until you get a correct graphical display.\n"
"\n"
"\n"
"\n"
"Options\n"
"\n"
"   This steps allows you to choose whether you want your machine to\n"
"automatically switch to a graphical interface at boot. Obviously, you may\n"
"want to check \"%s\" if your machine is to act as a server, or if you were\n"
"not successful in getting the display configured."
msgstr ""

#: help.pm:288
#, c-format
msgid ""
"Monitor\n"
"\n"
"   Normally the installer will automatically detect and configure the\n"
"monitor connected to your machine. If it is not correct, you can choose\n"
"from this list the monitor which is connected to your computer."
msgstr ""

#: help.pm:295
#, c-format
msgid ""
"Resolution\n"
"\n"
"   Here you can choose the resolutions and color depths available for your\n"
"graphics hardware. Choose the one which best suits your needs (you will be\n"
"able to make changes after the installation). A sample of the chosen\n"
"configuration is shown in the monitor picture."
msgstr ""

#: help.pm:303
#, c-format
msgid ""
"In the situation where different servers are available for your card, with\n"
"or without 3D acceleration, you're asked to choose the server which best\n"
"suits your needs."
msgstr ""

#: help.pm:308
#, c-format
msgid ""
"Options\n"
"\n"
"   This steps allows you to choose whether you want your machine to\n"
"automatically switch to a graphical interface at boot. Obviously, you may\n"
"want to check \"%s\" if your machine is to act as a server, or if you were\n"
"not successful in getting the display configured."
msgstr ""

#: help.pm:316
#, c-format
msgid ""
"You now need to decide where you want to install the Mandriva Linux\n"
"operating system on your hard drive. If your hard drive is empty or if an\n"
"existing operating system is using all the available space you will have to\n"
"partition the drive. Basically, partitioning a hard drive means to\n"
"logically divide it to create the space needed to install your new\n"
"Mandriva Linux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to data losses, partitioning can be intimidating and stressful\n"
"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
"simplifies this process. Before continuing with this step, read through the\n"
"rest of this section and above all, take your time.\n"
"\n"
"Depending on the configuration of your hard drive, several options are\n"
"available:\n"
"\n"
" * \"%s\". This option will perform an automatic partitioning of your blank\n"
"drive(s). If you use this option there will be no further prompts.\n"
"\n"
" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
"your hard drive. If you want to use them, choose this option. You will then\n"
"be asked to choose the mount points associated with each of the partitions.\n"
"The legacy mount points are selected by default, and for the most part it's\n"
"a good idea to keep them.\n"
"\n"
" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
"all the space available on it, you will have to create free space for\n"
"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
"data, provided you've previously defragmented the Windows partition.\n"
"Backing up your data is strongly recommended. Using this option is\n"
"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
"the same computer.\n"
"\n"
"   Before choosing this option, please understand that after this\n"
"procedure, the size of your Microsoft Windows partition will be smaller\n"
"than when you started. You'll have less free space under Microsoft Windows\n"
"to store your data or to install new software.\n"
"\n"
" * \"%s\". If you want to delete all data and all partitions present on\n"
"your hard drive and replace them with your new Mandriva Linux system, "
"choose\n"
"this option. Be careful, because you will not be able to undo this "
"operation\n"
"after you confirm.\n"
"\n"
"   !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"%s\". This option appears when the hard drive is entirely taken by\n"
"Microsoft Windows. Choosing this option will simply erase everything on the\n"
"drive and begin fresh, partitioning everything from scratch.\n"
"\n"
"   !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"%s\". Choose this option if you want to manually partition your hard\n"
"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
"easily lose all your data. That's why this option is really only\n"
"recommended if you have done something like this before and have some\n"
"experience. For more instructions on how to use the DiskDrake utility,\n"
"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""

#: help.pm:374 install_interactive.pm:95
#, c-format
msgid "Use free space"
msgstr "Implij an egor dieub"

#: help.pm:374
#, c-format
msgid "Use existing partition"
msgstr "Impliji parzhadur o vezañ"

#: help.pm:374 install_interactive.pm:137
#, c-format
msgid "Use the free space on the Windows partition"
msgstr ""

#: help.pm:374 install_interactive.pm:213
#, c-format
msgid "Erase entire disk"
msgstr "Chetan an holl planedenn"

#: help.pm:374
#, c-format
msgid "Remove Windows"
msgstr "Chetan Windows"

#: help.pm:374 install_interactive.pm:228
#, c-format
msgid "Custom disk partitioning"
msgstr "Parzhaduroù diouzoc'h"

#: help.pm:377
#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
"to remove the installation media (CD-ROM or floppy). The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"boot-loader menu, giving you the choice of which operating system to start.\n"
"\n"
"The \"%s\" button shows two more buttons to:\n"
"\n"
" * \"%s\": enables you to create an installation floppy disk which will\n"
"automatically perform a whole installation without the help of an operator,\n"
"similar to the installation you've just configured.\n"
"\n"
"   Note that two different options are available after clicking on that\n"
"button:\n"
"\n"
"    * \"%s\". This is a partially automated installation. The partitioning\n"
"step is the only interactive procedure.\n"
"\n"
"    * \"%s\". Fully automated installation: the hard disk is completely\n"
"rewritten, all data is lost.\n"
"\n"
"   This feature is very handy when installing on a number of similar\n"
"machines. See the Auto install section on our web site for more\n"
"information.\n"
"\n"
" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
"To use this selection with another installation, insert the floppy and\n"
"start the installation. At the prompt, press the [F1] key, type >>linux\n"
"defcfg=\"floppy\"<< and press the [Enter] key.\n"
"\n"
"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
"/dev/fd0\"."
msgstr ""

#: help.pm:409
#, c-format
msgid "Generate auto-install floppy"
msgstr "Krouiñ ur bladennig staliañ emgefreek"

#: help.pm:409 install_steps_interactive.pm:1330
#, c-format
msgid "Replay"
msgstr "Adseniñ"

#: help.pm:409 install_steps_interactive.pm:1330
#, c-format
msgid "Automated"
msgstr "Emgefreek"

#: help.pm:409 install_steps_interactive.pm:1333
#, c-format
msgid "Save packages selection"
msgstr "Enrollañ diuzadenn an pakadoù"

#: help.pm:412
#, c-format
msgid ""
"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
"reformat some of them and erase any data they contain. To do so, please\n"
"select those partitions as well.\n"
"\n"
"Please note that it's not necessary to reformat all pre-existing\n"
"partitions. You must reformat the partitions containing the operating\n"
"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
"reformat\n"
"partitions containing data that you wish to keep (typically \"/home\").\n"
"\n"
"Please be careful when selecting partitions. After the formatting is\n"
"completed, all data on the selected partitions will be deleted and you\n"
"will not be able to recover it.\n"
"\n"
"Click on \"%s\" when you're ready to format the partitions.\n"
"\n"
"Click on \"%s\" if you want to choose another partition for your new\n"
"Mandriva Linux operating system installation.\n"
"\n"
"Click on \"%s\" if you wish to select partitions which will be checked for\n"
"bad blocks on the disk."
msgstr ""

#: help.pm:431 install_steps_gtk.pm:388 interactive.pm:433
#: interactive/newt.pm:318 printer/printerdrake.pm:3676
#: standalone/drakTermServ:361 standalone/drakbackup:3900
#: standalone/drakbackup:3939 standalone/drakbackup:4050
#: standalone/drakbackup:4065 ugtk2.pm:504
#, c-format
msgid "Previous"
msgstr "Diaraog"

#: help.pm:434
#, c-format
msgid ""
"By the time you install Mandriva Linux, it's likely that some packages will\n"
"have been updated since the initial release. Bugs may have been fixed,\n"
"security issues resolved. To allow you to benefit from these updates,\n"
"you're now able to download them from the Internet. Check \"%s\" if you\n"
"have a working Internet connection, or \"%s\" if you prefer to install\n"
"updated packages later.\n"
"\n"
"Choosing \"%s\" will display a list of web locations from which updates can\n"
"be retrieved. You should choose one near to you. A package-selection tree\n"
"will appear: review the selection, and press \"%s\" to retrieve and install\n"
"the selected package(s), or \"%s\" to abort."
msgstr ""

#: help.pm:444 help.pm:588 install_steps_gtk.pm:387
#: install_steps_interactive.pm:155 standalone/drakbackup:4097
#, c-format
msgid "Install"
msgstr "Staliañ"

#: help.pm:447
#, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level you desire\n"
"for your machine. As a rule of thumb, the security level should be set\n"
"higher if the machine is to contain crucial data, or if it's to be directly\n"
"exposed to the Internet. The trade-off that a higher security level is\n"
"generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option. You'll be able\n"
"to change it later with the draksec tool, which is part of Mandriva Linux\n"
"Control Center.\n"
"\n"
"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
"security. Security messages will be sent to that address."
msgstr ""

#: help.pm:458
#, c-format
msgid "Security Administrator"
msgstr "Melestradur an surentez"

#: help.pm:461
#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandriva Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
"To create partitions, you must first select a hard drive. You can select\n"
"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
"\n"
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"%s\": this option deletes all partitions on the selected hard drive\n"
"\n"
" * \"%s\": this option enables you to automatically create ext3 and swap\n"
"partitions in the free space of your hard drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
"\n"
" * \"%s\": saves the partition table to a floppy. Useful for later\n"
"partition-table recovery if necessary. It is strongly recommended that you\n"
"perform this step.\n"
"\n"
" * \"%s\": allows you to restore a previously saved partition table from a\n"
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
"using this option. Please be careful and remember that it does not always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
"originally on the hard drive.\n"
"\n"
" * \"%s\": un-checking this option will force users to manually mount and\n"
"unmount removable media such as floppies and CD-ROMs.\n"
"\n"
" * \"%s\": use this option if you wish to use a wizard to partition your\n"
"hard drive. This is recommended if you do not have a good understanding of\n"
"partitioning.\n"
"\n"
" * \"%s\": use this option to cancel your changes.\n"
"\n"
" * \"%s\": allows additional actions on partitions (type, options, format)\n"
"and gives more information about the hard drive.\n"
"\n"
" * \"%s\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
"When defining the size of a partition, you can finely set the partition\n"
"size by using the Arrow keys of your keyboard.\n"
"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
" * Ctrl-m to set the mount point\n"
"\n"
"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""

#: help.pm:530
#, c-format
msgid "Removable media auto-mounting"
msgstr "Emvarc'hañ ar skoroù lem/laka"

#: help.pm:530
#, c-format
msgid "Toggle between normal/expert mode"
msgstr "Tremen er mod boas/mailh"

#: help.pm:533
#, c-format
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one which you want to resize in order to install your new\n"
"Mandriva Linux operating system.\n"
"\n"
"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
"\"Capacity\".\n"
"\n"
"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc.\n"
"\n"
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""

#: help.pm:564
#, c-format
msgid ""
"\"%s\": check the current country selection. If you're not in this country,\n"
"click on the \"%s\" button and choose another. If your country is not in "
"the\n"
"list shown, click on the \"%s\" button to get the complete country list."
msgstr ""

#: help.pm:569
#, c-format
msgid ""
"This step is activated only if an existing GNU/Linux partition has been\n"
"found on your machine.\n"
"\n"
"DrakX now needs to know if you want to perform a new installation or an\n"
"upgrade of an existing Mandriva Linux system:\n"
"\n"
" * \"%s\". For the most part, this completely wipes out the old system.\n"
"However, depending on your partitioning scheme, you can prevent some of\n"
"your existing data (notably \"home\" directories) from being over-written.\n"
"If you wish to change how your hard drives are partitioned, or to change\n"
"the file system, you should use this option.\n"
"\n"
" * \"%s\". This installation class allows you to update the packages\n"
"currently installed on your Mandriva Linux system. Your current "
"partitioning\n"
"scheme and user data will not be altered. Most of the other configuration\n"
"steps remain available and are similar to a standard installation.\n"
"\n"
"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
"to Mandriva Linux version \"8.1\" is not recommended."
msgstr ""

#: help.pm:591
#, c-format
msgid ""
"Depending on the language you chose (), DrakX will automatically select a\n"
"particular type of keyboard configuration. Check that the selection suits\n"
"you or choose another keyboard layout.\n"
"\n"
"Also, you may not have a keyboard which corresponds exactly to your\n"
"language: for example, if you are an English-speaking Swiss native, you may\n"
"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
"you may find yourself in the same situation where your native language and\n"
"country-set keyboard do not match. In either case, this installation step\n"
"will allow you to select an appropriate keyboard from a list.\n"
"\n"
"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
"\n"
"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
"dialog will allow you to choose the key binding which will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""

#: help.pm:609
#, c-format
msgid ""
"The first step is to choose your preferred language.\n"
"\n"
"Your choice of preferred language will affect the installer, the\n"
"documentation, and the system in general. First select the region you're\n"
"located in, then the language you speak.\n"
"\n"
"Clicking on the \"%s\" button will allow you to select other languages to\n"
"be installed on your workstation, thereby installing the language-specific\n"
"files for system documentation and applications. For example, if Spanish\n"
"users are to use your machine, select English as the default language in\n"
"the tree view and \"%s\" in the Advanced section.\n"
"\n"
"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
"cover all existing languages. However full support for it in GNU/Linux is\n"
"still under development. For that reason, Mandriva Linux's use of UTF-8 "
"will\n"
"depend on the user's choices:\n"
"\n"
" * If you choose a language with a strong legacy encoding (latin1\n"
"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
"iso-8859-2 languages), the legacy encoding will be used by default;\n"
"\n"
" * Other languages will use unicode by default;\n"
"\n"
" * If two or more languages are required, and those languages are not using\n"
"the same encoding, then unicode will be used for the whole system;\n"
"\n"
" * Finally, unicode can also be forced for use throughout the system at a\n"
"user's request by selecting the \"%s\" option independently of which\n"
"languages were been chosen.\n"
"\n"
"Note that you're not limited to choosing a single additional language. You\n"
"may choose several, or even install them all by selecting the \"%s\" box.\n"
"Selecting support for a language means translations, fonts, spell checkers,\n"
"etc. will also be installed for that language.\n"
"\n"
"To switch between the various languages installed on your system, you can\n"
"launch the \"localedrake\" command as \"root\" to change the language used\n"
"by the entire system. Running the command as a regular user will only\n"
"change the language settings for that particular user."
msgstr ""

#: help.pm:647
#, c-format
msgid "Espanol"
msgstr "Spagnoleg"

#: help.pm:650
#, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
"configure it for third-button emulation. The third-button mouse button of a\n"
"two-button mouse can be obtained by simultaneously clicking the left and\n"
"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
"a PS/2, serial or USB interface.\n"
"\n"
"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
"mouse. DrakX will then configure your mouse so that you can simulate the\n"
"wheel with it: to do so, press the middle button and move your mouse\n"
"pointer up and down.\n"
"\n"
"If for some reason you wish to specify a different type of mouse, select it\n"
"from the list provided.\n"
"\n"
"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
"will work with nearly all mice.\n"
"\n"
"If you choose a mouse other than the default one, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct and that the mouse is working correctly. If the mouse is not\n"
"working well, press the space bar or [Return] key to cancel the test and\n"
"you will be returned to the mouse list.\n"
"\n"
"Occasionally wheel mice are not detected automatically, so you will need to\n"
"select your mouse from a list. Be sure to select the one corresponding to\n"
"the port that your mouse is attached to. After selecting a mouse and\n"
"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
"Test the buttons and check that the mouse pointer moves on-screen as you\n"
"move your mouse about."
msgstr ""

#: help.pm:681
#, c-format
msgid "with Wheel emulation"
msgstr "gant kendarvanerezh ar rodell"

#: help.pm:681
#, c-format
msgid "Universal | Any PS/2 & USB mice"
msgstr "Hollvedel | Ul logodenn bennak (PS/2 pe USB)"

#: help.pm:684
#, c-format
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
"Dibabit ar porzh a zere mar plij. Da skouer, porzh « COM1 » dindan MS\n"
"Windows a vez anvet « ttyS0 » gant Linux."

#: help.pm:688
#, c-format
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you must enter the \"root\" password. \"Root\" is the system\n"
"administrator and is the only user authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That's why you must choose a password which is difficult to\n"
"guess: DrakX will tell you if the password you chose is too simple. As you\n"
"can see, you're not forced to enter a password, but we strongly advise\n"
"against this. GNU/Linux is just as prone to operator error as any other\n"
"operating system. Since \"root\" can overcome all limitations and\n"
"unintentionally erase all data on partitions by carelessly accessing the\n"
"partitions themselves, it is important that it be difficult to become\n"
"\"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
"characters long. Never write down the \"root\" password -- it makes it far\n"
"too easy to compromise your system.\n"
"\n"
"One caveat: do not make the password too long or too complicated because "
"you\n"
"must be able to remember it!\n"
"\n"
"The password will not be displayed on screen as you type it. To reduce the\n"
"chance of a blind typing error you'll need to enter the password twice. If\n"
"you do happen to make the same typing error twice, you'll have to use this\n"
"``incorrect'' password the first time you'll try to connect as \"root\".\n"
"\n"
"If you want an authentication server to control access to your computer,\n"
"click on the \"%s\" button.\n"
"\n"
"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
"services, select the appropriate one for \"%s\". If you do not know which\n"
"one to use, you should ask your network administrator.\n"
"\n"
"If you happen to have problems with remembering passwords, or if your\n"
"computer will never be connected to the Internet and you absolutely trust\n"
"everybody who uses your computer, you can choose to have \"%s\"."
msgstr ""

#: help.pm:722
#, c-format
msgid "authentication"
msgstr "dilesadur"

#: help.pm:725
#, c-format
msgid ""
"A boot loader is a little program which is started by the computer at boot\n"
"time. It's responsible for starting up the whole system. Normally, the boot\n"
"loader installation is totally automated. DrakX will analyze the disk boot\n"
"sector and act according to what it finds there:\n"
"\n"
" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
"OS installed on your machine.\n"
"\n"
" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
"\n"
"If DrakX can not determine where to place the boot sector, it'll ask you\n"
"where it should place it. Generally, the \"%s\" is the safest place.\n"
"Choosing \"%s\" will not install any boot loader. Use this option only if "
"you\n"
"know what you're doing."
msgstr ""

#: help.pm:742
#, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other\n"
"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
"the printing systems is best suited to particular types of configuration.\n"
"\n"
" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
"will handle only very simple network cases and is somewhat slow when used\n"
"within networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
"choice for printing to your local printer or to one halfway around the\n"
"planet. It's simple to configure and can act as a server or a client for\n"
"the ancient \"lpd\" printing system, so it's compatible with older\n"
"operating systems which may still need print services. While quite\n"
"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
"\"%s\" includes graphical front-ends for printing or choosing printer\n"
"options and for managing the printer.\n"
"\n"
"If you make a choice now, and later find that you do not like your printing\n"
"system you may change it by running PrinterDrake from the Mandriva Linux\n"
"Control Center and clicking on the \"%s\" button."
msgstr ""

#: help.pm:765
#, c-format
msgid "pdq"
msgstr "pdq"

#: help.pm:765 printer/cups.pm:115 printer/data.pm:122
#, c-format
msgid "CUPS"
msgstr "CUPS"

#: help.pm:765
#, c-format
msgid "Expert"
msgstr "Mod mailh"

#: help.pm:768
#, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
"your hard drives. If so, you'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
"hardware for the card-specific options which are needed to initialize the\n"
"adapter. Most of the time, DrakX will get through this step without any\n"
"issues.\n"
"\n"
"If DrakX is not able to probe for the options to automatically determine\n"
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""

#: help.pm:786
#, c-format
msgid ""
"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
"here. If you notice the sound card is not the one actually present on your\n"
"system, you can click on the button and choose a different driver."
msgstr ""

#: help.pm:788 help.pm:855 install_steps_interactive.pm:1011
#: install_steps_interactive.pm:1028
#, c-format
msgid "Sound card"
msgstr "Kartenn gwelet"

#: help.pm:791
#, c-format
msgid ""
"As a review, DrakX will present a summary of information it has gathered\n"
"about your system. Depending on the hardware installed on your machine, you\n"
"may have some or all of the following entries. Each entry is made up of the\n"
"hardware item to be configured, followed by a quick summary of the current\n"
"configuration. Click on the corresponding \"%s\" button to make the change.\n"
"\n"
" * \"%s\": check the current keyboard map configuration and change it if\n"
"necessary.\n"
"\n"
" * \"%s\": check the current country selection. If you're not in this\n"
"country, click on the \"%s\" button and choose another. If your country\n"
"is not in the list shown, click on the \"%s\" button to get the complete\n"
"country list.\n"
"\n"
" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
"you have chosen. You can click on the \"%s\" button here if this is not\n"
"correct.\n"
"\n"
" * \"%s\": verify the current mouse configuration and click on the button\n"
"to change it if necessary.\n"
"\n"
" * \"%s\": clicking on the \"%s\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to set up a new printer. The interface\n"
"presented in our manual is similar to the one used during installation.\n"
"\n"
" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
"here. If you notice the sound card is not the one actually present on your\n"
"system, you can click on the button and choose a different driver.\n"
"\n"
" * \"%s\": if you have a TV card, this is where information about its\n"
"configuration will be displayed. If you have a TV card and it is not\n"
"detected, click on \"%s\" to try to configure it manually.\n"
"\n"
" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
"the card if you feel the configuration is wrong.\n"
"\n"
" * \"%s\": by default, DrakX configures your graphical interface in\n"
"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
"\"%s\" to reconfigure your graphical interface.\n"
"\n"
" * \"%s\": if you wish to configure your Internet or local network access,\n"
"you can do so now. Refer to the printed documentation or use the\n"
"Mandriva Linux Control Center after the installation has finished to "
"benefit\n"
"from full in-line help.\n"
"\n"
" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
"you're installing on is to be located behind a proxy server.\n"
"\n"
" * \"%s\": this entry allows you to redefine the security level as set in a\n"
"previous step ().\n"
"\n"
" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
"the corresponding section of the ``Starter Guide'' for details about\n"
"firewall settings.\n"
"\n"
" * \"%s\": if you wish to change your bootloader configuration, click this\n"
"button. This should be reserved to advanced users. Refer to the printed\n"
"documentation or the in-line help about bootloader configuration in the\n"
"Mandriva Linux Control Center.\n"
"\n"
" * \"%s\": through this entry you can fine tune which services will be run\n"
"on your machine. If you plan to use this machine as a server it's a good\n"
"idea to review this setup."
msgstr ""

#: help.pm:855 install_steps_interactive.pm:970 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "Takad-eur"

#: help.pm:855 install_steps_interactive.pm:1044
#, c-format
msgid "TV card"
msgstr "Kartenn pellwel"

#: help.pm:855
#, c-format
msgid "ISDN card"
msgstr "Kartenn ISDN"

#: help.pm:855
#, c-format
msgid "Graphical Interface"
msgstr "Ketal Kevregañ"

#: help.pm:855 install_any.pm:1679 install_steps_interactive.pm:1062
#: standalone/drakbackup:2021
#, c-format
msgid "Network"
msgstr "Rouedad"

#: help.pm:855 install_steps_interactive.pm:1074
#, c-format
msgid "Proxies"
msgstr "Proksioù"

#: help.pm:855 install_steps_interactive.pm:1085
#, c-format
msgid "Security Level"
msgstr "Live an surentez"

#: help.pm:855 install_steps_interactive.pm:1099
#, c-format
msgid "Firewall"
msgstr "Moger tan"

#: help.pm:855 install_steps_interactive.pm:1115
#, c-format
msgid "Bootloader"
msgstr "C'harger loc'hañ"

#: help.pm:855 install_steps_interactive.pm:1128 services.pm:193
#, c-format
msgid "Services"
msgstr "Servijerioù"

#: help.pm:858
#, c-format
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
"and will not be recoverable!"
msgstr ""

#: help.pm:863
#, c-format
msgid ""
"Click on \"%s\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
"to recover any data and partitions present on this hard drive, including\n"
"any Windows data.\n"
"\n"
"Click on \"%s\" to quit this operation without losing data and partitions\n"
"present on this hard drive."
msgstr ""

#: help.pm:869
#, c-format
msgid "Next ->"
msgstr "A heul ->"

#: help.pm:869
#, c-format
msgid "<- Previous"
msgstr "<- Diaraog"

#: install2.pm:115
#, c-format
msgid ""
"Can not access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""

#: install2.pm:169
#, c-format
msgid "You must also format %s"
msgstr "Ret eo deoc'h furmadiñ %s ivez"

#: install_any.pm:402
#, c-format
msgid "Do you have further supplementary media?"
msgstr "Hag ur vedia all hoc'h eus ?"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_any.pm:405
#, fuzzy, c-format
msgid ""
"The following media have been found and will be used during install: %s.\n"
"\n"
"\n"
"Do you have a supplementary installation media to configure?"
msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"

#: install_any.pm:418 printer/printerdrake.pm:3022
#: printer/printerdrake.pm:3029 standalone/scannerdrake:182
#: standalone/scannerdrake:190 standalone/scannerdrake:241
#: standalone/scannerdrake:248
#, c-format
msgid "CD-ROM"
msgstr "CD-ROM"

#: install_any.pm:418
#, c-format
msgid "Network (HTTP)"
msgstr "Rouedad (HTTP)"

#: install_any.pm:418
#, c-format
msgid "Network (FTP)"
msgstr "Rouedad (FTP)"

#: install_any.pm:418
#, c-format
msgid "Network (NFS)"
msgstr "Rouedad (NFS)"

#: install_any.pm:448
#, c-format
msgid "Insert the CD 1 again"
msgstr "Enlakaat ar CD1 adarre"

#: install_any.pm:473 standalone/drakbackup:112
#, c-format
msgid "No device found"
msgstr "N'eo ket trobarzhell ebet !"

#: install_any.pm:478
#, c-format
msgid "Insert the CD"
msgstr "Enlakkat ar CD"

#: install_any.pm:483
#, c-format
msgid "Unable to mount CD-ROM"
msgstr "N'hellan ket marc'hañ< ar CD-ROM"

#: install_any.pm:515 install_any.pm:534
#, c-format
msgid "URL of the mirror?"
msgstr "URL ar melezour"

#: install_any.pm:520
#, c-format
msgid "NFS setup"
msgstr "Kefluniadur NFS"

#: install_any.pm:520
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Roit anv ostiz ha renkell ho media NFS"

#: install_any.pm:521
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""

#: install_any.pm:521
#, c-format
msgid "Directory"
msgstr "Renkell"

#: install_any.pm:569
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
"Ne m'eus ket kavout ur roll pakadoù e-barzh ar melezour-mañ.  Kit da wiriañ "
"al lec'hiadur-mañ zo mad."

#: install_any.pm:732
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done."
msgstr ""
"Kemmit ho Cd-Rom !\n"
"\n"
"Lakait el lenner ar Cd-Rom warnañ an diketenn « %s » mar plij ha gwaskit Mat "
"eo da c'houde."

#: install_any.pm:745
#, c-format
msgid "Copying in progress"
msgstr "Emaon oc'h eilañ"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_any.pm:886
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They do not have any known security\n"
"issues, but some new ones could be found. In that case, you must make sure\n"
"to upgrade as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_any.pm:909
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
"\n"
"Do you really want to remove these packages?\n"
msgstr ""

#: install_any.pm:1345 partition_table.pm:597
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"

#: install_any.pm:1576
#, c-format
msgid "The following disk(s) were renamed:"
msgstr "Adenvelet e oa ar bladenn/pladennoù-mañ :"

#: install_any.pm:1578
#, c-format
msgid "%s (previously named as %s)"
msgstr "%s (a vez graet %s dioutañ diaraok)"

#: install_any.pm:1616
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"C'hoarvezet ez eus ur fazi - n'eus bet kavet trobarzhell reizh ebet a-benn "
"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en ho "
"ardivinkaj mar plij "

#: install_any.pm:1660
#, c-format
msgid "HTTP"
msgstr "HTTP"

#: install_any.pm:1660
#, c-format
msgid "FTP"
msgstr "FTP"

#: install_any.pm:1660
#, c-format
msgid "NFS"
msgstr "NFS"

#: install_any.pm:1683
#, c-format
msgid "Please choose a media"
msgstr "Dibabit ur vedia, mar plij"

#: install_any.pm:1699
#, c-format
msgid "File already exists. Overwrite it?"
msgstr "Ar restr a zo endeo. Rasklañ anezhañ ?"

#: install_any.pm:1703
#, c-format
msgid "Permission denied"
msgstr "Aotre nac'het"

#: install_any.pm:1752
#, c-format
msgid "Bad NFS name"
msgstr ""

#: install_any.pm:1773
#, c-format
msgid "Bad media %s"
msgstr "N'eo ket mat ar vedia %s"

#: install_any.pm:1820
#, c-format
msgid "Can not make screenshots before partitioning"
msgstr "N'hellan ket sevel skrammpakeroù a-raok parzhañ"

#: install_any.pm:1827
#, fuzzy, c-format
msgid "Screenshots will be available after install in %s"
msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"

#: install_gtk.pm:136
#, c-format
msgid "System installation"
msgstr "Staliadur ar reizhiad"

#: install_gtk.pm:139
#, c-format
msgid "System configuration"
msgstr "Kefluniañ ar reizhiad"

#: install_interactive.pm:22
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""

#: install_interactive.pm:62
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Ret eo deoc'h kaout ur parzhadur gwrizienn.\n"
"Evit se, krouit ur parzhadur (pe glikit ouzh unan a zo c'hoazh).\n"
"Da c'houde dibabit an ober « Poent marc'hañ » ha lakait anezhañ da `/'"

#: install_interactive.pm:67
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"N'hoc'h eus ket a barzhadur disloañ\n"
"\n"
"Kenderc'hel evelato ?"

#: install_interactive.pm:70 install_steps.pm:218
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ret eo deoc'h kaout ur parzhadur FAT marc'het war /boot/efi"

#: install_interactive.pm:97
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr ""

#: install_interactive.pm:105
#, c-format
msgid "Use existing partitions"
msgstr "Impliji parzhadurioù o vezañ"

#: install_interactive.pm:107
#, c-format
msgid "There is no existing partition to use"
msgstr "N'eus parzhadur da implij ebet"

#: install_interactive.pm:114
#, c-format
msgid "Use the Windows partition for loopback"
msgstr "Implij ar barzhadur Windows evit al loopback"

#: install_interactive.pm:117
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"

#: install_interactive.pm:119
#, c-format
msgid "Choose the sizes"
msgstr "Dibabit ar mentoù"

#: install_interactive.pm:120
#, c-format
msgid "Root partition size in MB: "
msgstr "Ment ar parzhadur gwrizienn e Mo : "

#: install_interactive.pm:121
#, c-format
msgid "Swap partition size in MB: "
msgstr "Ment ar parzhadur disloañ e Mo : "

#: install_interactive.pm:130
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""

#: install_interactive.pm:139
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Pe seurt parzhadur a vennit da adventañ ?"

#: install_interactive.pm:153
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""

#: install_interactive.pm:156
#, c-format
msgid "Computing the size of the Windows partition"
msgstr "Emaon o jediñ ment ar barzhadur Windows"

#: install_interactive.pm:163
#, c-format
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
"installation."
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_interactive.pm:166
#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful: this\n"
"operation is dangerous. If you have not already done so, you\n"
"first need to exit the installation, run \"chkdsk c:\" from a\n"
"Command Prompt under Windows (beware, running graphical program\n"
"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
"Command Prompt!), optionally run defrag, then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"HO EVEZH !\n"
"\n"
"Ezhomm en deus DrakX adventañ ho parzhadur Windows bremañ. Bezit war "
"evezh :\n"
"arvarus eo an obererezh-se. Ma n'hoc'h eus ket graet c'hoazh, gwelloc'h e\n"
"vije deoc'h seveniñ da gentañ scandisk (ha diouzh ret seveniñ defrag) war "
"ar\n"
"parzhadur-se, ha gwareziñ ho roadoù. Pa vezit sur, gwaskit « Mat eo »"

#: install_interactive.pm:178
#, fuzzy, c-format
msgid "Which size do you want to keep for Windows on"
msgstr "Da beseurt rann e mennit dilec'hiañ ?"

#: install_interactive.pm:179
#, c-format
msgid "partition %s"
msgstr "parzhadur %s"

#: install_interactive.pm:188
#, c-format
msgid "Resizing Windows partition"
msgstr "Oc'h adventañ ar parzhadur Windows"

#: install_interactive.pm:193
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Adventañ FAT zo sac'het : %s"

#: install_interactive.pm:208
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""

#: install_interactive.pm:213
#, c-format
msgid "Remove Windows(TM)"
msgstr "Chetan Windows(TM)"

#: install_interactive.pm:215
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""

#: install_interactive.pm:219
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Ar parzhadurioù HOLL o vezañ hag e vo kollet holl roadoù war ar bladenn %s"

#: install_interactive.pm:232
#, c-format
msgid "Use fdisk"
msgstr "Implijit fdisk"

#: install_interactive.pm:235
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Gallout a rit bremañ parzhañ ho pladenn galet %s.\n"
"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"

#: install_interactive.pm:271
#, c-format
msgid "I can not find any room for installing"
msgstr "N'hellan ket kavout plas da staliañ"

#: install_interactive.pm:275
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""

#: install_interactive.pm:281
#, c-format
msgid "Partitioning failed: %s"
msgstr "Parzhañ a zo sac'het : %s"

#: install_interactive.pm:288
#, c-format
msgid "Bringing up the network"
msgstr "O lañsañ ar rouedad"

#: install_interactive.pm:293
#, c-format
msgid "Bringing down the network"
msgstr "O tizenaouiñ ar rouedad"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:10
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
"be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if Mandriva S.A. has been advised of the possibility or "
"occurrence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
"no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandriva Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
"as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A.  \n"
msgstr ""

#: install_messages.pm:90
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:98
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""

#: install_messages.pm:131
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
"Gourc'hemennoù, peurc'hraet eo ar staliadur.\n"
"Lamit ar bladenn loc'hañ ha gwaskit enkas evit adloc'hañ.\n"
"\n"
"\n"
"Evit titouroù war palastroù hegerz evit stumm-mañ Mandriva Linux,\n"
"sellit ouzh ar Errata war : \n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Titouroù war gefluniañ ho reizhiad a zo hegerz e rannbennad Goude\n"
"Staliañ Sturier ofisiel an Arveriad Mandriva Linux."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
msgid "http://www.mandrivalinux.com/en/errata.php3"
msgstr "http://www.mandrivalinux.com/en/errata.php3"

#: install_steps.pm:253
#, c-format
msgid "Duplicate mount point %s"
msgstr "Poent marc'hañ doubl %s"

#: install_steps.pm:469
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
"\"\n"
msgstr ""

#: install_steps_auto_install.pm:75 install_steps_stdio.pm:27
#, c-format
msgid "Entering step `%s'\n"
msgstr "O kregiñ gant al lankad `%s'\n"

#: install_steps_gtk.pm:177
#, c-format
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandriva Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""

#: install_steps_gtk.pm:224 install_steps_interactive.pm:624
#, c-format
msgid "Package Group Selection"
msgstr "Diuzadenn strollad pakadoù"

#: install_steps_gtk.pm:250 install_steps_interactive.pm:567
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ment hollek : %d / %d Mo"

#: install_steps_gtk.pm:295
#, c-format
msgid "Bad package"
msgstr "Pakad siek"

#: install_steps_gtk.pm:297
#, c-format
msgid "Version: "
msgstr "Stumm : "

#: install_steps_gtk.pm:298
#, c-format
msgid "Size: "
msgstr "Ment : "

#: install_steps_gtk.pm:298
#, c-format
msgid "%d KB\n"
msgstr "%d Ko\n"

#: install_steps_gtk.pm:299
#, c-format
msgid "Importance: "
msgstr "Talvoudegezh : "

#: install_steps_gtk.pm:332
#, c-format
msgid "You can not select/unselect this package"
msgstr "N'hellit ket diuz/andiuz ar pakad-mañ"

#: install_steps_gtk.pm:336
#, c-format
msgid "due to missing %s"
msgstr "peogwir %s zo manket"

#: install_steps_gtk.pm:337
#, c-format
msgid "due to unsatisfied %s"
msgstr "peogwir %s zo manket"

#: install_steps_gtk.pm:338
#, c-format
msgid "trying to promote %s"
msgstr ""

#: install_steps_gtk.pm:339
#, c-format
msgid "in order to keep %s"
msgstr ""

#: install_steps_gtk.pm:344
#, c-format
msgid ""
"You can not select this package as there is not enough space left to install "
"it"
msgstr ""
"N'hellit ket dibab ar pakad-mañ peogwir n'eus ket a-walc'h a egor evit "
"staliañ anezhañ"

#: install_steps_gtk.pm:347
#, c-format
msgid "The following packages are going to be installed"
msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet"

#: install_steps_gtk.pm:348
#, c-format
msgid "The following packages are going to be removed"
msgstr "Ar pakadoù a-heul a zo war-nes bezañ lamet"

#: install_steps_gtk.pm:372
#, c-format
msgid "This is a mandatory package, it can not be unselected"
msgstr "Hemañ a zo ur pakad ret, n'hell ket bezañ andiuzet"

#: install_steps_gtk.pm:374
#, c-format
msgid "You can not unselect this package. It is already installed"
msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"

#: install_steps_gtk.pm:377
#, c-format
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Bremanaet e tle bezañ ar pabak-mañ\n"
"Ha sur oc'h e mennit e ziuzañ ?"

#: install_steps_gtk.pm:380
#, c-format
msgid "You can not unselect this package. It must be upgraded"
msgstr "N'hellit ket andiuz ar pakad-mañ. Ret eo dezhañ bezañ bremanaet"

#: install_steps_gtk.pm:385
#, c-format
msgid "Show automatically selected packages"
msgstr ""

#: install_steps_gtk.pm:390
#, c-format
msgid "Load/Save selection"
msgstr "Kargañ/Enrollañ an dibab"

#: install_steps_gtk.pm:391
#, c-format
msgid "Updating package selection"
msgstr "Emaon o bremañaat diuzadenn ar pakadoù"

#: install_steps_gtk.pm:396
#, c-format
msgid "Minimal install"
msgstr "Staliadur bihan"

#: install_steps_gtk.pm:410 install_steps_interactive.pm:483
#, c-format
msgid "Choose the packages you want to install"
msgstr "Dibabit ar pakadoù a vennit staliañ"

#: install_steps_gtk.pm:426 install_steps_interactive.pm:710
#, c-format
msgid "Installing"
msgstr "O staliañ"

#: install_steps_gtk.pm:433
#, c-format
msgid "Estimating"
msgstr "O vrasjediñ"

#: install_steps_gtk.pm:482
#, c-format
msgid "No details"
msgstr "Munudoù ebet"

#: install_steps_gtk.pm:490
#, c-format
msgid "Time remaining "
msgstr "Amzer a chom"

#: install_steps_gtk.pm:497
#, c-format
msgid "Please wait, preparing installation..."
msgstr "Gortozit mar plij, o prientiñ ar staliadur"

#: install_steps_gtk.pm:512
#, c-format
msgid "%d packages"
msgstr "%d pakad"

#: install_steps_gtk.pm:517
#, c-format
msgid "Installing package %s"
msgstr "O staliañ ar pakad %s"

#: install_steps_gtk.pm:552 install_steps_interactive.pm:91
#: install_steps_interactive.pm:735
#, c-format
msgid "Refuse"
msgstr "Ne blij ket din"

#: install_steps_gtk.pm:556 install_steps_interactive.pm:739
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done.\n"
"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
"Kemmit ho Cd-Rom !\n"
"\n"
"Lakait el lenner ar Cd-Rom warnañ an diketenn « %s » mar plij ha gwaskit Mat "
"eo da c'houde.\n"
"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."

#: install_steps_gtk.pm:571 install_steps_interactive.pm:750
#, c-format
msgid "There was an error ordering packages:"
msgstr "Ur fazi a zo bet en ur rummañ pakadoù :"

#: install_steps_gtk.pm:571 install_steps_gtk.pm:575
#: install_steps_interactive.pm:750 install_steps_interactive.pm:754
#, c-format
msgid "Go on anyway?"
msgstr "Kenderc'hel evelato ?"

#: install_steps_gtk.pm:575 install_steps_interactive.pm:754
#, c-format
msgid "There was an error installing packages:"
msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"

#: install_steps_gtk.pm:617 install_steps_interactive.pm:926
#: install_steps_interactive.pm:1075
#, c-format
msgid "not configured"
msgstr "n'eo ket kefluniet"

#: install_steps_gtk.pm:680
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""

#: install_steps_gtk.pm:689
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard drive "
"before installation.\n"
"It will then continue from the hard drive and the packages will remain "
"available once the system is fully installed."
msgstr ""

#: install_steps_gtk.pm:691
#, c-format
msgid "Copy whole CDs"
msgstr ""

#: install_steps_interactive.pm:84
#, c-format
msgid "License agreement"
msgstr "Emglev an aotre"

#: install_steps_interactive.pm:88
#, c-format
msgid "Release Notes"
msgstr ""

#: install_steps_interactive.pm:118
#, c-format
msgid "Please choose your keyboard layout."
msgstr "Dibabit reizhadur ho stokellaoueg mar plij."

#: install_steps_interactive.pm:120
#, c-format
msgid "Here is the full list of available keyboards"
msgstr "Setu eo listenn leun ar stokellaoueg da gaout"

#: install_steps_interactive.pm:150
#, c-format
msgid "Install/Upgrade"
msgstr "Staliañ/Bremanaat"

#: install_steps_interactive.pm:151
#, c-format
msgid "Is this an install or an upgrade?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"

#: install_steps_interactive.pm:157
#, c-format
msgid "Upgrade %s"
msgstr "Bremanaat %s"

#: install_steps_interactive.pm:168
#, c-format
msgid "Encryption key for %s"
msgstr "Alc'hwez enrinegadur evit %s"

#: install_steps_interactive.pm:185
#, c-format
msgid "Please choose your type of mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."

#: install_steps_interactive.pm:194 standalone/mousedrake:46
#, c-format
msgid "Mouse Port"
msgstr "Porzh al logodenn"

#: install_steps_interactive.pm:195 standalone/mousedrake:47
#, c-format
msgid "Please choose which serial port your mouse is connected to."
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."

#: install_steps_interactive.pm:205
#, c-format
msgid "Buttons emulation"
msgstr "Kendarvanerezh ar nozelenn"

#: install_steps_interactive.pm:207
#, c-format
msgid "Button 2 Emulation"
msgstr "Kendarvanerezh ar nozelenn 2"

#: install_steps_interactive.pm:208
#, c-format
msgid "Button 3 Emulation"
msgstr "Kendarvanerezh ar nozelenn 3"

#: install_steps_interactive.pm:229
#, c-format
msgid "PCMCIA"
msgstr "PCMCIA"

#: install_steps_interactive.pm:229
#, c-format
msgid "Configuring PCMCIA cards..."
msgstr "O kefluniañ kartennoù PCMCIA ..."

#: install_steps_interactive.pm:236
#, c-format
msgid "IDE"
msgstr "IDE"

#: install_steps_interactive.pm:236
#, c-format
msgid "Configuring IDE"
msgstr "Kefluniañ IDE"

#: install_steps_interactive.pm:256
#, c-format
msgid "No partition available"
msgstr "Parzhadur hegerz ebet"

#: install_steps_interactive.pm:259
#, c-format
msgid "Scanning partitions to find mount points"
msgstr ""

#: install_steps_interactive.pm:266
#, c-format
msgid "Choose the mount points"
msgstr "Dibabit at poentoù marc'hañ"

#: install_steps_interactive.pm:312
#, c-format
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""

#: install_steps_interactive.pm:317
#, c-format
msgid ""
"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
"to boot your system, you'll need to create the bootstrap partition in "
"DiskDrake"
msgstr ""

#: install_steps_interactive.pm:353
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Dibabit ar parzhadur a vennit furmadiñ"

#: install_steps_interactive.pm:355
#, c-format
msgid "Check bad blocks?"
msgstr "Gwiriañ ar bloc'hoù siek ?"

#: install_steps_interactive.pm:383
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""

#: install_steps_interactive.pm:386
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"N'eus ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"

#: install_steps_interactive.pm:393
#, c-format
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Emaon o klask ar pakadoù hegerz hag adsevel ar stlennvon rpm ..."

#: install_steps_interactive.pm:394 install_steps_interactive.pm:452
#, c-format
msgid "Looking for available packages..."
msgstr "Emaon o klask ar pakadoù hegerz ..."

#: install_steps_interactive.pm:397
#, c-format
msgid "Looking at packages already installed..."
msgstr "Emaon o kavout pakadoù a zo staliet eo ..."

#: install_steps_interactive.pm:401
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Emaon o kavout pakadoù da vremanaat ..."

#: install_steps_interactive.pm:421 install_steps_interactive.pm:830
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"

#: install_steps_interactive.pm:461
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
"Ho reizhiad n'eus ket wa-walc'h a egor evit staliañ pe vremanaat (%d > %d)"

#: install_steps_interactive.pm:495
#, c-format
msgid ""
"Please choose load or save package selection.\n"
"The format is the same as auto_install generated files."
msgstr ""

#: install_steps_interactive.pm:497
#, c-format
msgid "Load"
msgstr "Kargañ"

#: install_steps_interactive.pm:497 standalone/drakbackup:3918
#: standalone/drakbackup:3991 standalone/drakroam:210 standalone/logdrake:172
#, c-format
msgid "Save"
msgstr "Enrollañ"

#: install_steps_interactive.pm:505
#, c-format
msgid "Bad file"
msgstr "N'eo ket mat ar restr"

#: install_steps_interactive.pm:581
#, c-format
msgid "Selected size is larger than available space"
msgstr ""

#: install_steps_interactive.pm:596
#, c-format
msgid "Type of install"
msgstr "Seurt ar staliadur"

#: install_steps_interactive.pm:597
#, c-format
msgid ""
"You have not selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""

#: install_steps_interactive.pm:601
#, c-format
msgid "With basic documentation (recommended!)"
msgstr "Gant un teuliadur bihan (kuzuliet !)"

#: install_steps_interactive.pm:602
#, c-format
msgid "Truly minimal install (especially no urpmi)"
msgstr "Staliadur bihan gwir (n'eus urpmi ebet)"

#: install_steps_interactive.pm:641 standalone/drakxtv:52
#, c-format
msgid "All"
msgstr "An holl"

#: install_steps_interactive.pm:680
#, c-format
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
"M'hoc'h eus an holl CDoù er roll a-is, gwaskit Mat eo.\n"
"Ma n'hoc'h eus hini eus ar CDoù-se, gwaskit Nullañ.\n"
"Ma fazi deoc'h lod eus ar CDoù, andibabit anezho ha gwaskit Mat eo."

#: install_steps_interactive.pm:685
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom skridennet \"%s\""

#: install_steps_interactive.pm:710
#, c-format
msgid "Preparing installation"
msgstr "O prientiñ ar staliadur"

#: install_steps_interactive.pm:719
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
"O staliañ ar pakad %s\n"
"%d%%"

#: install_steps_interactive.pm:768
#, c-format
msgid "Post-install configuration"
msgstr "Kefluniadur goude staliañ"

#: install_steps_interactive.pm:775
#, c-format
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""

#: install_steps_interactive.pm:804
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been updated after the distribution was released. They may\n"
"contain security or bug fixes.\n"
"\n"
"To download these packages, you will need to have a working Internet \n"
"connection.\n"
"\n"
"Do you want to install the updates?"
msgstr ""

#: install_steps_interactive.pm:825
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
msgstr ""
"O taremprediñ al lec'hienn Mandriva Linux evit kaout roll ar pakadoù "
"hegerz ..."

#: install_steps_interactive.pm:844
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz ..."

#: install_steps_interactive.pm:848
#, c-format
msgid "Unable to contact mirror %s"
msgstr "Ne m'eus ket daremprediñ ar melezour %s"

#: install_steps_interactive.pm:848
#, c-format
msgid "Would you like to try again?"
msgstr "Mennout a rit klask adarre ?"

#: install_steps_interactive.pm:875 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"

#: install_steps_interactive.pm:880
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""

#: install_steps_interactive.pm:888
#, c-format
msgid "NTP Server"
msgstr "Servijer NTP"

#: install_steps_interactive.pm:930 steps.pm:30
#, c-format
msgid "Summary"
msgstr "Evit diverriñ"

#: install_steps_interactive.pm:943 install_steps_interactive.pm:951
#: install_steps_interactive.pm:969 install_steps_interactive.pm:976
#: install_steps_interactive.pm:1127 services.pm:133
#: standalone/drakbackup:1573
#, c-format
msgid "System"
msgstr "Reizhiad"

#: install_steps_interactive.pm:983 install_steps_interactive.pm:1010
#: install_steps_interactive.pm:1027 install_steps_interactive.pm:1043
#: install_steps_interactive.pm:1054
#, c-format
msgid "Hardware"
msgstr "Periantel"

#: install_steps_interactive.pm:989 install_steps_interactive.pm:998
#, c-format
msgid "Remote CUPS server"
msgstr "Servijer CUPS a-bell"

#: install_steps_interactive.pm:989
#, c-format
msgid "No printer"
msgstr "Moullerez ebet"

#: install_steps_interactive.pm:1031
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Hag ur gartenn gwelet ISA hoc'h eus ?"

#: install_steps_interactive.pm:1033
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""

#: install_steps_interactive.pm:1035
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"N'eus kartenn gwelet kavet ebet. Kargañ « harddrake » goude ar staliadur"

#: install_steps_interactive.pm:1055
#, c-format
msgid "Graphical interface"
msgstr "Ketal kevregañ"

#: install_steps_interactive.pm:1061 install_steps_interactive.pm:1073
#, c-format
msgid "Network & Internet"
msgstr "Rouedad hag Internet"

#: install_steps_interactive.pm:1075
#, c-format
msgid "configured"
msgstr "kefluniet"

#: install_steps_interactive.pm:1084 install_steps_interactive.pm:1098
#: steps.pm:20
#, c-format
msgid "Security"
msgstr "Diogelroez"

#: install_steps_interactive.pm:1103
#, c-format
msgid "activated"
msgstr "bevaatet"

#: install_steps_interactive.pm:1103
#, c-format
msgid "disabled"
msgstr "diweredekaet"

#: install_steps_interactive.pm:1114
#, c-format
msgid "Boot"
msgstr "Lañsañ"

#. -PO: example: lilo-graphic on /dev/hda1
#: install_steps_interactive.pm:1118
#, c-format
msgid "%s on %s"
msgstr "%s war %s"

#: install_steps_interactive.pm:1132 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr ""

#: install_steps_interactive.pm:1142
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "N'eo ket kefluniet X. Ha fellout a ra deoc'h da vat ober an dra-mañ ?"

#: install_steps_interactive.pm:1223
#, c-format
msgid "Preparing bootloader..."
msgstr "O prientiñ ar c'harger loc'hañ ..."

#: install_steps_interactive.pm:1233
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
"will not work for you. The install will continue, but you'll need to use "
"BootX or some other means to boot your machine. The kernel argument for the "
"root fs is: root=%s"
msgstr ""

#: install_steps_interactive.pm:1239
#, c-format
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot ?"

#: install_steps_interactive.pm:1242
#, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"Fazi en ur staliañ aboot,\n"
"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"

#: install_steps_interactive.pm:1259
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""

#: install_steps_interactive.pm:1288 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"

#: install_steps_interactive.pm:1293
#, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "Lakait ur bladennig all evit sturieroù el lenner"

#: install_steps_interactive.pm:1295
#, c-format
msgid "Creating auto install floppy..."
msgstr "O krouiñ ur bladennig staliañ emgefreek ..."

#: install_steps_interactive.pm:1307
#, c-format
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
"Lankadoù 'zo n'int ket peurc'hraet.\n"
"\n"
"Mennout a rit kuitaat da vat bremañ ?"

#: install_steps_interactive.pm:1323
#, c-format
msgid "Generate auto install floppy"
msgstr "Krouiñ ur bladennig staliañ emgefreek"

#: install_steps_interactive.pm:1325
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
"(this is meant for installing on another box).\n"
"\n"
"You may prefer to replay the installation.\n"
msgstr ""

#: install_steps_newt.pm:20
#, c-format
msgid "Mandriva Linux Installation %s"
msgstr "Staliadur Mandriva Linux %s"

#. -PO: This string must fit in a 80-char wide text screen
#: install_steps_newt.pm:34
#, c-format
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr ""
"  <Tab>/<Alt-Tab> etre elfennoù | <Esaouenn> a ziuz | <F12> skramm a heul "

#: interactive.pm:192
#, c-format
msgid "Choose a file"
msgstr "Dibabit ur restr"

#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
#: standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Ouzhpennañ"

#: interactive.pm:317 interactive/gtk.pm:505
#, c-format
msgid "Modify"
msgstr "Kemmañ"

#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
#: standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Dilemel"

#: interactive.pm:394
#, c-format
msgid "Basic"
msgstr "Diazez"

#: interactive.pm:432 interactive/newt.pm:321 ugtk2.pm:506
#, c-format
msgid "Finish"
msgstr "Disoc'h"

#: interactive/newt.pm:92
#, c-format
msgid "Do"
msgstr "Ober"

#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
msgid "Bad choice, try again\n"
msgstr "Dibab fall, klaskit adarre\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:149
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ho tibab ? (%s dre ziouer)"

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ho tibab ? (0/1, « %s » dre ziouer)"

#: interactive/stdio.pm:94
#, c-format
msgid "Button `%s': %s"
msgstr "Nozel « %s » : %s"

#: interactive/stdio.pm:95
#, c-format
msgid "Do you want to click on this button?"
msgstr "Mennout a rit klikit ouzh an nozel-se ?"

#: interactive/stdio.pm:104
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ho tibab ? (« %s » %s dre ziouer) "

#: interactive/stdio.pm:104
#, c-format
msgid " enter `void' for void entry"
msgstr ""

#: interactive/stdio.pm:122
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""

#: interactive/stdio.pm:125
#, fuzzy, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr "Ho tibab ?"

#: interactive/stdio.pm:138
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Ho evezh, kemmet e oa ur skridennad :\n"
"%s"

#: interactive/stdio.pm:145
#, c-format
msgid "Re-submit"
msgstr "Adkas"

#: keyboard.pm:171 keyboard.pm:205
#, c-format
msgid ""
"_: keyboard\n"
"Czech (QWERTZ)"
msgstr "Tchek (QWERTZ)"

#: keyboard.pm:172 keyboard.pm:207
#, c-format
msgid ""
"_: keyboard\n"
"German"
msgstr "Alamanek"

#: keyboard.pm:173
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak"
msgstr "Dvorak"

#: keyboard.pm:174 keyboard.pm:224
#, c-format
msgid ""
"_: keyboard\n"
"Spanish"
msgstr "Spagnolek"

#: keyboard.pm:175 keyboard.pm:225
#, c-format
msgid ""
"_: keyboard\n"
"Finnish"
msgstr "Finnek"

#: keyboard.pm:176 keyboard.pm:228
#, c-format
msgid ""
"_: keyboard\n"
"French"
msgstr "Gallek"

#: keyboard.pm:177 keyboard.pm:272
#, c-format
msgid ""
"_: keyboard\n"
"Norwegian"
msgstr "Norvegek"

#: keyboard.pm:178
#, c-format
msgid ""
"_: keyboard\n"
"Polish"
msgstr "Polonek"

#: keyboard.pm:179 keyboard.pm:284
#, c-format
msgid ""
"_: keyboard\n"
"Russian"
msgstr "Rusiek"

#: keyboard.pm:181 keyboard.pm:290
#, c-format
msgid ""
"_: keyboard\n"
"Swedish"
msgstr "Svedek"

#: keyboard.pm:182 keyboard.pm:320
#, c-format
msgid "UK keyboard"
msgstr "Stokellaoueg RU"

#: keyboard.pm:183 keyboard.pm:323
#, c-format
msgid "US keyboard"
msgstr "Stokellaoueg SUA"

#: keyboard.pm:185
#, c-format
msgid ""
"_: keyboard\n"
"Albanian"
msgstr "Albaniek"

#: keyboard.pm:186
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (old)"
msgstr "Armeniek (kozh)"

#: keyboard.pm:187
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (typewriter)"
msgstr "Armeniek (skriverez)"

#: keyboard.pm:188
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (phonetic)"
msgstr "Armeniek (soniadel)"

#: keyboard.pm:189
#, c-format
msgid ""
"_: keyboard\n"
"Arabic"
msgstr "Arabek"

#: keyboard.pm:190
#, c-format
msgid ""
"_: keyboard\n"
"Azerbaidjani (latin)"
msgstr "Azerbaidjanek (latin)"

#: keyboard.pm:191
#, c-format
msgid ""
"_: keyboard\n"
"Belgian"
msgstr "Belgianek"

#: keyboard.pm:192
#, c-format
msgid ""
"_: keyboard\n"
"Bengali (Inscript-layout)"
msgstr "Bengalek (reizhadur Inscript)"

#: keyboard.pm:193
#, c-format
msgid ""
"_: keyboard\n"
"Bengali (Probhat)"
msgstr "Bengalek (reizhadur Probhat)"

#: keyboard.pm:194
#, c-format
msgid ""
"_: keyboard\n"
"Bulgarian (phonetic)"
msgstr "Bulgariek (soniadel)"

#: keyboard.pm:195
#, c-format
msgid ""
"_: keyboard\n"
"Bulgarian (BDS)"
msgstr "Bulgarek (BDS)"

#: keyboard.pm:196
#, c-format
msgid ""
"_: keyboard\n"
"Brazilian (ABNT-2)"
msgstr "Brasilek (ABNT-2)"

#: keyboard.pm:197
#, c-format
msgid ""
"_: keyboard\n"
"Bosnian"
msgstr "Bosniek"

#: keyboard.pm:198
#, c-format
msgid ""
"_: keyboard\n"
"Belarusian"
msgstr "Belarusiek"

#: keyboard.pm:200
#, c-format
msgid ""
"_: keyboard\n"
"Swiss (German layout)"
msgstr "Suis (reizhadur alaman)"

#: keyboard.pm:202
#, c-format
msgid ""
"_: keyboard\n"
"Swiss (French layout)"
msgstr "Suis (reizhadur gall)"

#: keyboard.pm:204
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Cherokee syllabics"
msgstr "Arabek"

#: keyboard.pm:206
#, c-format
msgid ""
"_: keyboard\n"
"Czech (QWERTY)"
msgstr "Tchek (QWERTY)"

#: keyboard.pm:208
#, c-format
msgid ""
"_: keyboard\n"
"German (no dead keys)"
msgstr "Alaman (stokell marv ebet)"

#: keyboard.pm:209
#, c-format
msgid ""
"_: keyboard\n"
"Devanagari"
msgstr "Devanagariek"

#: keyboard.pm:210
#, c-format
msgid ""
"_: keyboard\n"
"Danish"
msgstr "Danek"

#: keyboard.pm:211
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (US)"
msgstr "Dvorak (US)"

#: keyboard.pm:213
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Esperanto)"
msgstr "Dvorak (Esperanto)"

#: keyboard.pm:215
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (French)"
msgstr "Dvorak (Gallek)"

#: keyboard.pm:217
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (UK)"
msgstr "Dvorak (RU)"

#: keyboard.pm:218
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Norwegian)"
msgstr "Dvorak (Norvegek)"

#: keyboard.pm:220
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Polish)"
msgstr "Dvorak (Polonek)"

#: keyboard.pm:221
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Swedish)"
msgstr "Dvorak (Svedek)"

#: keyboard.pm:222
#, c-format
msgid ""
"_: keyboard\n"
"Dzongkha/Tibetan"
msgstr "Dzongka/Tibetek"

#: keyboard.pm:223
#, c-format
msgid ""
"_: keyboard\n"
"Estonian"
msgstr "Estoniek"

#: keyboard.pm:227
#, c-format
msgid ""
"_: keyboard\n"
"Faroese"
msgstr "Faroesek"

#: keyboard.pm:229
#, c-format
msgid ""
"_: keyboard\n"
"Georgian (\"Russian\" layout)"
msgstr "Jorjiek (reizhadur \"Rusiek\")"

#: keyboard.pm:230
#, c-format
msgid ""
"_: keyboard\n"
"Georgian (\"Latin\" layout)"
msgstr "Jorjiek (reizhadur \"Latin\")"

#: keyboard.pm:231
#, c-format
msgid ""
"_: keyboard\n"
"Greek"
msgstr "Gresianek"

#: keyboard.pm:232
#, c-format
msgid ""
"_: keyboard\n"
"Greek (polytonic)"
msgstr "Gresianek"

#: keyboard.pm:233
#, c-format
msgid ""
"_: keyboard\n"
"Gujarati"
msgstr "Gujartiek"

#: keyboard.pm:234
#, c-format
msgid ""
"_: keyboard\n"
"Gurmukhi"
msgstr "Gurmukek"

#: keyboard.pm:235
#, c-format
msgid ""
"_: keyboard\n"
"Croatian"
msgstr "Kroatek"

#: keyboard.pm:236
#, c-format
msgid ""
"_: keyboard\n"
"Hungarian"
msgstr "Hungarek"

#: keyboard.pm:237
#, c-format
msgid ""
"_: keyboard\n"
"Irish"
msgstr "Iwerzhonek"

#: keyboard.pm:238
#, c-format
msgid ""
"_: keyboard\n"
"Israeli"
msgstr "Israelian"

#: keyboard.pm:239
#, c-format
msgid ""
"_: keyboard\n"
"Israeli (phonetic)"
msgstr "Israelian (soniadel)"

#: keyboard.pm:240
#, c-format
msgid ""
"_: keyboard\n"
"Iranian"
msgstr "Iraniek"

#: keyboard.pm:241
#, c-format
msgid ""
"_: keyboard\n"
"Icelandic"
msgstr "Islandek"

#: keyboard.pm:242
#, c-format
msgid ""
"_: keyboard\n"
"Italian"
msgstr "Italianek"

#: keyboard.pm:243
#, c-format
msgid ""
"_: keyboard\n"
"Inuktitut"
msgstr "Inuktitut"

#: keyboard.pm:248
#, c-format
msgid ""
"_: keyboard\n"
"Japanese 106 keys"
msgstr "Japonek (106 stokell)"

#: keyboard.pm:249
#, c-format
msgid ""
"_: keyboard\n"
"Kannada"
msgstr "Kanadian"

#: keyboard.pm:252
#, c-format
msgid ""
"_: keyboard\n"
"Korean"
msgstr "Stokellaoueg korean"

#: keyboard.pm:254
#, c-format
msgid ""
"_: keyboard\n"
"Kurdish (arabic script)"
msgstr "Kurdek"

#: keyboard.pm:255
#, c-format
msgid ""
"_: keyboard\n"
"Kyrgyz"
msgstr "Kirgizek"

#: keyboard.pm:256
#, c-format
msgid ""
"_: keyboard\n"
"Latin American"
msgstr "Amerikan Latin"

#: keyboard.pm:258
#, c-format
msgid ""
"_: keyboard\n"
"Laotian"
msgstr "Laosiek"

#: keyboard.pm:259
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian AZERTY (old)"
msgstr "Lituaniek AZERTY (kozh)"

#: keyboard.pm:261
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian AZERTY (new)"
msgstr "Lituaniek AZERTY (nevez)"

#: keyboard.pm:262
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian \"number row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroù\""

#: keyboard.pm:263
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniek QUERTY \"soniadel\""

#: keyboard.pm:264
#, c-format
msgid ""
"_: keyboard\n"
"Latvian"
msgstr "Letonek"

#: keyboard.pm:265
#, c-format
msgid ""
"_: keyboard\n"
"Malayalam"
msgstr "Malayalamek"

#: keyboard.pm:266
#, c-format
msgid ""
"_: keyboard\n"
"Macedonian"
msgstr "Makedoniek"

#: keyboard.pm:267
#, c-format
msgid ""
"_: keyboard\n"
"Myanmar (Burmese)"
msgstr ""

#: keyboard.pm:268
#, c-format
msgid ""
"_: keyboard\n"
"Mongolian (cyrillic)"
msgstr "Mongoliek (lizherenneg ar ruseg)"

#: keyboard.pm:269
#, c-format
msgid ""
"_: keyboard\n"
"Maltese (UK)"
msgstr "Maltek (RU)"

#: keyboard.pm:270
#, c-format
msgid ""
"_: keyboard\n"
"Maltese (US)"
msgstr "Maltek (SUA)"

#: keyboard.pm:271
#, c-format
msgid ""
"_: keyboard\n"
"Dutch"
msgstr "Hollandek"

#: keyboard.pm:273
#, c-format
msgid ""
"_: keyboard\n"
"Oriya"
msgstr "Oriyaek"

#: keyboard.pm:274
#, c-format
msgid ""
"_: keyboard\n"
"Polish (qwerty layout)"
msgstr "Polonek (reizhadur qwerty)"

#: keyboard.pm:275
#, c-format
msgid ""
"_: keyboard\n"
"Polish (qwertz layout)"
msgstr "Polonek (reizhadur qwerty)"

#: keyboard.pm:277
#, c-format
msgid ""
"_: keyboard\n"
"Pashto"
msgstr "Pashtouek"

#: keyboard.pm:278
#, c-format
msgid ""
"_: keyboard\n"
"Portuguese"
msgstr "Portugalek"

#: keyboard.pm:280
#, c-format
msgid ""
"_: keyboard\n"
"Canadian (Quebec)"
msgstr "Kanadian (Kebek)"

#: keyboard.pm:282
#, c-format
msgid ""
"_: keyboard\n"
"Romanian (qwertz)"
msgstr "Romaniek (Yawertz)"

#: keyboard.pm:283
#, c-format
msgid ""
"_: keyboard\n"
"Romanian (qwerty)"
msgstr "Romaniek (qwerty)"

#: keyboard.pm:285
#, c-format
msgid ""
"_: keyboard\n"
"Russian (phonetic)"
msgstr "Russianek (soniadel)"

#: keyboard.pm:286
#, c-format
msgid ""
"_: keyboard\n"
"Saami (norwegian)"
msgstr "Sami (norvegek)"

#: keyboard.pm:287
#, c-format
msgid ""
"_: keyboard\n"
"Saami (swedish/finnish)"
msgstr "Samiek (svedek/finnek)"

#: keyboard.pm:289
#, c-format
msgid ""
"_: keyboard\n"
"Sindhi"
msgstr "Sindiek"

#: keyboard.pm:291
#, c-format
msgid ""
"_: keyboard\n"
"Slovenian"
msgstr "Slovek"

#: keyboard.pm:293
#, c-format
msgid ""
"_: keyboard\n"
"Sinhala"
msgstr ""

#: keyboard.pm:294
#, c-format
msgid ""
"_: keyboard\n"
"Slovakian (QWERTZ)"
msgstr "Slovakek (QWERTZ)"

#: keyboard.pm:295
#, c-format
msgid ""
"_: keyboard\n"
"Slovakian (QWERTY)"
msgstr "Slovakek (QWERTY)"

#: keyboard.pm:297
#, c-format
msgid ""
"_: keyboard\n"
"Serbian (cyrillic)"
msgstr "Serbiek (lizherenneg ar ruseg)"

#: keyboard.pm:298
#, c-format
msgid ""
"_: keyboard\n"
"Syriac"
msgstr "Siriak"

#: keyboard.pm:299
#, c-format
msgid ""
"_: keyboard\n"
"Syriac (phonetic)"
msgstr "Siriak (soniadel)"

#: keyboard.pm:300
#, c-format
msgid ""
"_: keyboard\n"
"Telugu"
msgstr "Telegu"

#: keyboard.pm:302
#, c-format
msgid ""
"_: keyboard\n"
"Tamil (ISCII-layout)"
msgstr "Tamoul (reizhadur ISCII)"

#: keyboard.pm:303
#, c-format
msgid ""
"_: keyboard\n"
"Tamil (Typewriter-layout)"
msgstr "Tamoul (reizhadur ar skriverez)"

#: keyboard.pm:304
#, c-format
msgid ""
"_: keyboard\n"
"Thai (Kedmanee)"
msgstr "Tailh (Kedmanee)"

#: keyboard.pm:305
#, c-format
msgid ""
"_: keyboard\n"
"Thai (TIS-820)"
msgstr "Tailh (TIS-820)"

#: keyboard.pm:307
#, c-format
msgid ""
"_: keyboard\n"
"Thai (Pattachote)"
msgstr "Tailh (Pattachote)"

#: keyboard.pm:310
#, c-format
msgid ""
"_: keyboard\n"
"Tifinagh (moroccan layout) (+latin/arabic)"
msgstr "Tifinagek (reizhadur marokek) (+latin/arabek)"

#: keyboard.pm:311
#, c-format
msgid ""
"_: keyboard\n"
"Tifinagh (phonetic) (+latin/arabic)"
msgstr "Tifinagek (reizhadur soniadel) (+latin/arabek)"

#: keyboard.pm:313
#, c-format
msgid ""
"_: keyboard\n"
"Tajik"
msgstr "Tadjik"

#: keyboard.pm:315
#, c-format
msgid ""
"_: keyboard\n"
"Turkmen"
msgstr "Turkmenek"

#: keyboard.pm:316
#, c-format
msgid ""
"_: keyboard\n"
"Turkish (traditional \"F\" model)"
msgstr "Turkek (hengounel doare \"F\")"

#: keyboard.pm:317
#, c-format
msgid ""
"_: keyboard\n"
"Turkish (modern \"Q\" model)"
msgstr "Turkek (arnevez doare \"Q\")"

#: keyboard.pm:319
#, c-format
msgid ""
"_: keyboard\n"
"Ukrainian"
msgstr "Ukrainiek"

#: keyboard.pm:322
#, c-format
msgid ""
"_: keyboard\n"
"Urdu keyboard"
msgstr "Stokellaoueg urduek"

#: keyboard.pm:324
#, c-format
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"

#: keyboard.pm:325
#, c-format
msgid ""
"_: keyboard\n"
"Uzbek (cyrillic)"
msgstr "Ouzbek (lizherenneg ar ruseg)"

#: keyboard.pm:327
#, c-format
msgid ""
"_: keyboard\n"
"Vietnamese \"numeric row\" QWERTY"
msgstr "Yezh ar Viet-Nam QUERTY \"linenn sifroù\""

#: keyboard.pm:328
#, c-format
msgid ""
"_: keyboard\n"
"Yugoslavian (latin)"
msgstr "Yougoslaviek (latin)"

#: keyboard.pm:335
#, c-format
msgid "Right Alt key"
msgstr "Stokell Alft a-zehoù"

#: keyboard.pm:336
#, c-format
msgid "Both Shift keys simultaneously"
msgstr ""

#: keyboard.pm:337
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr ""

#: keyboard.pm:338
#, c-format
msgid "CapsLock key"
msgstr ""

#: keyboard.pm:339
#, c-format
msgid "Shift and CapsLock keys simultaneously"
msgstr ""

#: keyboard.pm:340
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr ""

#: keyboard.pm:341
#, c-format
msgid "Alt and Shift keys simultaneously"
msgstr ""

#: keyboard.pm:342
#, c-format
msgid "\"Menu\" key"
msgstr "Touchenn ar meuziad"

#: keyboard.pm:343
#, c-format
msgid "Left \"Windows\" key"
msgstr "Stokell « Prenestr » a-gleiz"

#: keyboard.pm:344
#, c-format
msgid "Right \"Windows\" key"
msgstr "Stokell « Prenestr » a-zehoù"

#: keyboard.pm:345
#, c-format
msgid "Both Control keys simultaneously"
msgstr ""

#: keyboard.pm:346
#, c-format
msgid "Both Alt keys simultaneously"
msgstr ""

#: keyboard.pm:347
#, c-format
msgid "Left Shift key"
msgstr "Stokell Shift a-gleiz"

#: keyboard.pm:348
#, c-format
msgid "Right Shift key"
msgstr "Stokell Shift a-zehoù"

#: keyboard.pm:349
#, c-format
msgid "Left Alt key"
msgstr "Stokell Left a-zehoù"

#: keyboard.pm:350
#, c-format
msgid "Left Control key"
msgstr "Stokell Left a-gleiz"

#: keyboard.pm:351
#, c-format
msgid "Right Control key"
msgstr ""

#: keyboard.pm:387
#, c-format
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""

#: keyboard.pm:392
#, c-format
msgid ""
"This setting will be activated after the installation.\n"
"During installation, you will need to use the Right Control\n"
"key to switch between the different keyboard layouts."
msgstr ""

#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:178
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:195
#, c-format
msgid "Andorra"
msgstr "Andora"

#: lang.pm:196 network/adsl_consts.pm:943
#, c-format
msgid "United Arab Emirates"
msgstr "Stadoù-Unanet Arabeg"

#: lang.pm:197
#, c-format
msgid "Afghanistan"
msgstr "Afganistan"

#: lang.pm:198
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigwa ha Barbuda"

#: lang.pm:199
#, c-format
msgid "Anguilla"
msgstr "Angilla"

#: lang.pm:200
#, c-format
msgid "Albania"
msgstr "Albani"

#: lang.pm:201
#, c-format
msgid "Armenia"
msgstr "Armeni"

#: lang.pm:202
#, c-format
msgid "Netherlands Antilles"
msgstr "Antilh an Izelvroioù"

#: lang.pm:203
#, c-format
msgid "Angola"
msgstr "Angola"

#: lang.pm:204
#, c-format
msgid "Antarctica"
msgstr "Antartik"

#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
#, c-format
msgid "Argentina"
msgstr "Arc'hantin"

#: lang.pm:206
#, c-format
msgid "American Samoa"
msgstr "Samoa amerikanek"

#: lang.pm:209
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: lang.pm:210
#, c-format
msgid "Azerbaijan"
msgstr "Azerbeidjan"

#: lang.pm:211
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosni hag Herzigovi"

#: lang.pm:212
#, c-format
msgid "Barbados"
msgstr "Barbad"

#: lang.pm:213
#, c-format
msgid "Bangladesh"
msgstr "Bangladaech"

#: lang.pm:215
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
#, c-format
msgid "Bulgaria"
msgstr "Bulgari"

#: lang.pm:217
#, c-format
msgid "Bahrain"
msgstr "Barein"

#: lang.pm:218
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: lang.pm:219
#, c-format
msgid "Benin"
msgstr "Benin"

#: lang.pm:220
#, c-format
msgid "Bermuda"
msgstr "Bermud"

#: lang.pm:221
#, c-format
msgid "Brunei Darussalam"
msgstr ""

#: lang.pm:222
#, c-format
msgid "Bolivia"
msgstr "Bolivi"

#: lang.pm:224
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: lang.pm:225
#, c-format
msgid "Bhutan"
msgstr "Butañ"

#: lang.pm:226
#, c-format
msgid "Bouvet Island"
msgstr "Enez Bouvet"

#: lang.pm:227
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: lang.pm:228
#, c-format
msgid "Belarus"
msgstr "Belarusi"

#: lang.pm:229
#, c-format
msgid "Belize"
msgstr "Beliz"

#: lang.pm:231
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Inizi Koko (Keeling)"

#: lang.pm:232
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinshasa)"

#: lang.pm:233
#, c-format
msgid "Central African Republic"
msgstr "Republik centrafricaine"

#: lang.pm:234
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazzaville)"

#: lang.pm:236
#, c-format
msgid "Cote d'Ivoire"
msgstr "Aod an Olifant"

#: lang.pm:237
#, c-format
msgid "Cook Islands"
msgstr "Inizi Kook"

#: lang.pm:238
#, c-format
msgid "Chile"
msgstr "Chili"

#: lang.pm:239
#, c-format
msgid "Cameroon"
msgstr "Kameroun"

#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
#, c-format
msgid "China"
msgstr "Sina"

#: lang.pm:241
#, c-format
msgid "Colombia"
msgstr "Kolombi"

#: lang.pm:243
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbi & Montenegro"

#: lang.pm:244
#, c-format
msgid "Cuba"
msgstr "Kuba"

#: lang.pm:245
#, c-format
msgid "Cape Verde"
msgstr "Penn Verde"

#: lang.pm:246
#, c-format
msgid "Christmas Island"
msgstr "Inizi Nedeleg"

#: lang.pm:247
#, c-format
msgid "Cyprus"
msgstr "Chipr"

#: lang.pm:250
#, c-format
msgid "Djibouti"
msgstr "Djibouti"

#: lang.pm:252
#, c-format
msgid "Dominica"
msgstr "Dominik"

#: lang.pm:253
#, c-format
msgid "Dominican Republic"
msgstr "Republik Dominikan"

#: lang.pm:254 network/adsl_consts.pm:44
#, c-format
msgid "Algeria"
msgstr "Aljeri"

#: lang.pm:255
#, c-format
msgid "Ecuador"
msgstr "Kehider"

#: lang.pm:257
#, c-format
msgid "Egypt"
msgstr "Ejipt"

#: lang.pm:258
#, c-format
msgid "Western Sahara"
msgstr "Sahara occidental"

#: lang.pm:259
#, c-format
msgid "Eritrea"
msgstr "Eritre"

#: lang.pm:261
#, c-format
msgid "Ethiopia"
msgstr "Etiopi"

#: lang.pm:263
#, c-format
msgid "Fiji"
msgstr "Fidji"

#: lang.pm:264
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr ""

#: lang.pm:265
#, c-format
msgid "Micronesia"
msgstr "Mikronesi"

#: lang.pm:266
#, c-format
msgid "Faroe Islands"
msgstr "Enez Faroe"

#: lang.pm:268
#, c-format
msgid "Gabon"
msgstr "Gabon"

#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
#: network/netconnect.pm:46
#, c-format
msgid "United Kingdom"
msgstr "Rouantelezh Unanet"

#: lang.pm:270
#, c-format
msgid "Grenada"
msgstr "Grenad"

#: lang.pm:271
#, c-format
msgid "Georgia"
msgstr "Jeorji"

#: lang.pm:272
#, c-format
msgid "French Guiana"
msgstr "Gwiana gallek"

#: lang.pm:273
#, c-format
msgid "Ghana"
msgstr "Gwana"

#: lang.pm:274
#, c-format
msgid "Gibraltar"
msgstr "Jibraltar"

#: lang.pm:275
#, c-format
msgid "Greenland"
msgstr "Griñland"

#: lang.pm:276
#, c-format
msgid "Gambia"
msgstr "Gambi"

#: lang.pm:277
#, c-format
msgid "Guinea"
msgstr "Gine"

#: lang.pm:278
#, c-format
msgid "Guadeloupe"
msgstr "Gwadeloup"

#: lang.pm:279
#, c-format
msgid "Equatorial Guinea"
msgstr "Guine équatoriale"

#: lang.pm:281
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr ""

#: lang.pm:282
#, c-format
msgid "Guatemala"
msgstr "Gwatemala"

#: lang.pm:283
#, c-format
msgid "Guam"
msgstr "Gwam"

#: lang.pm:284
#, c-format
msgid "Guinea-Bissau"
msgstr "Gine-Biso"

#: lang.pm:285
#, c-format
msgid "Guyana"
msgstr "Gwiana"

#: lang.pm:286
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Sina (Hong Kong)"

#: lang.pm:287
#, c-format
msgid "Heard and McDonald Islands"
msgstr ""

#: lang.pm:288
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: lang.pm:289
#, c-format
msgid "Croatia"
msgstr "Kroati"

#: lang.pm:290
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: lang.pm:292
#, c-format
msgid "Indonesia"
msgstr "Indonezi"

#: lang.pm:295
#, c-format
msgid "India"
msgstr "Indez"

#: lang.pm:296
#, c-format
msgid "British Indian Ocean Territory"
msgstr ""

#: lang.pm:297
#, c-format
msgid "Iraq"
msgstr "Irak"

#: lang.pm:298
#, c-format
msgid "Iran"
msgstr "Iran"

#: lang.pm:299
#, c-format
msgid "Iceland"
msgstr "Bro ar Skorn"

#: lang.pm:301
#, c-format
msgid "Jamaica"
msgstr "Jamaik"

#: lang.pm:302
#, c-format
msgid "Jordan"
msgstr "Jordani"

#: lang.pm:304
#, c-format
msgid "Kenya"
msgstr "Kenya"

#: lang.pm:305
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgistan"

#: lang.pm:306
#, c-format
msgid "Cambodia"
msgstr "Kambodj"

#: lang.pm:307
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: lang.pm:308
#, c-format
msgid "Comoros"
msgstr "Komoros"

#: lang.pm:309
#, c-format
msgid "Saint Kitts and Nevis"
msgstr ""

#: lang.pm:310
#, c-format
msgid "Korea (North)"
msgstr "Kore (Norzh)"

#: lang.pm:311
#, c-format
msgid "Korea"
msgstr "Kore"

#: lang.pm:312
#, c-format
msgid "Kuwait"
msgstr "Kowaet"

#: lang.pm:313
#, c-format
msgid "Cayman Islands"
msgstr "Inizi Kaeman"

#: lang.pm:314
#, c-format
msgid "Kazakhstan"
msgstr "Kazakstan"

#: lang.pm:315
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:316
#, c-format
msgid "Lebanon"
msgstr "Liban"

#: lang.pm:317
#, c-format
msgid "Saint Lucia"
msgstr "Santez Luci"

#: lang.pm:318
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: lang.pm:319
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: lang.pm:320
#, c-format
msgid "Liberia"
msgstr "Liberia"

#: lang.pm:321
#, c-format
msgid "Lesotho"
msgstr "Lesoto"

#: lang.pm:322 network/adsl_consts.pm:600
#, c-format
msgid "Lithuania"
msgstr "Lituani"

#: lang.pm:323
#, c-format
msgid "Luxembourg"
msgstr "Luksembourg"

#: lang.pm:324
#, c-format
msgid "Latvia"
msgstr "Latvia"

#: lang.pm:325
#, c-format
msgid "Libya"
msgstr "Libi"

#: lang.pm:326 network/adsl_consts.pm:609
#, c-format
msgid "Morocco"
msgstr "Marok"

#: lang.pm:327
#, c-format
msgid "Monaco"
msgstr "Monako"

#: lang.pm:328
#, c-format
msgid "Moldova"
msgstr "Moldavi"

#: lang.pm:329
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"

#: lang.pm:330
#, c-format
msgid "Marshall Islands"
msgstr "Inizi Marshall"

#: lang.pm:331
#, c-format
msgid "Macedonia"
msgstr "Makedonia"

#: lang.pm:332
#, c-format
msgid "Mali"
msgstr "Mali"

#: lang.pm:333
#, c-format
msgid "Myanmar"
msgstr ""

#: lang.pm:334
#, c-format
msgid "Mongolia"
msgstr "Mongoli"

#: lang.pm:335
#, c-format
msgid "Northern Mariana Islands"
msgstr ""

#: lang.pm:336
#, c-format
msgid "Martinique"
msgstr "Martinik"

#: lang.pm:337
#, c-format
msgid "Mauritania"
msgstr "Maouritani"

#: lang.pm:338
#, c-format
msgid "Montserrat"
msgstr "Montserrat"

#: lang.pm:339
#, c-format
msgid "Malta"
msgstr "Malt"

#: lang.pm:340
#, c-format
msgid "Mauritius"
msgstr "Mauris"

#: lang.pm:341
#, c-format
msgid "Maldives"
msgstr "Inizi Maldiv"

#: lang.pm:342
#, c-format
msgid "Malawi"
msgstr "Malawi"

#: lang.pm:343
#, c-format
msgid "Mexico"
msgstr "Meksiko"

#: lang.pm:344
#, c-format
msgid "Malaysia"
msgstr "Malezia"

#: lang.pm:345
#, c-format
msgid "Mozambique"
msgstr "Mozambik"

#: lang.pm:346
#, c-format
msgid "Namibia"
msgstr "Namibi"

#: lang.pm:347
#, c-format
msgid "New Caledonia"
msgstr "Kaledoni-nevez"

#: lang.pm:348
#, c-format
msgid "Niger"
msgstr "Nijer"

#: lang.pm:349
#, c-format
msgid "Norfolk Island"
msgstr ""

#: lang.pm:350
#, c-format
msgid "Nigeria"
msgstr "Nijeria"

#: lang.pm:351
#, c-format
msgid "Nicaragua"
msgstr "Nikwaraga"

#: lang.pm:354
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: lang.pm:355
#, c-format
msgid "Nauru"
msgstr ""

#: lang.pm:356
#, c-format
msgid "Niue"
msgstr "Niue"

#: lang.pm:358
#, c-format
msgid "Oman"
msgstr "Oman"

#: lang.pm:359
#, c-format
msgid "Panama"
msgstr "Panama"

#: lang.pm:360
#, c-format
msgid "Peru"
msgstr "Peroù"

#: lang.pm:361
#, c-format
msgid "French Polynesia"
msgstr "Polinezi galleg"

#: lang.pm:362
#, c-format
msgid "Papua New Guinea"
msgstr "Papouazi Gine Nevez"

#: lang.pm:363
#, c-format
msgid "Philippines"
msgstr "Filipin"

#: lang.pm:364
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: lang.pm:366
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Sant Per ha Mikelon"

#: lang.pm:367
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang.pm:368
#, c-format
msgid "Puerto Rico"
msgstr "Porto Rico"

#: lang.pm:369
#, c-format
msgid "Palestine"
msgstr "Palestin"

#: lang.pm:371
#, c-format
msgid "Paraguay"
msgstr "Paragwae"

#: lang.pm:372
#, c-format
msgid "Palau"
msgstr "Palo"

#: lang.pm:373
#, c-format
msgid "Qatar"
msgstr "Kwatar"

#: lang.pm:374
#, c-format
msgid "Reunion"
msgstr "Enez ar Reunion"

#: lang.pm:375
#, c-format
msgid "Romania"
msgstr "Roumani"

#: lang.pm:377
#, c-format
msgid "Rwanda"
msgstr "Rwanda"

#: lang.pm:378
#, c-format
msgid "Saudi Arabia"
msgstr "Arabi Saudiet"

#: lang.pm:379
#, c-format
msgid "Solomon Islands"
msgstr "Inizi Salaun"

#: lang.pm:380
#, c-format
msgid "Seychelles"
msgstr "Sechell"

#: lang.pm:381
#, c-format
msgid "Sudan"
msgstr "Sondan"

#: lang.pm:383
#, c-format
msgid "Singapore"
msgstr "Singapour"

#: lang.pm:384
#, c-format
msgid "Saint Helena"
msgstr "Sant Lena"

#: lang.pm:385 network/adsl_consts.pm:747
#, c-format
msgid "Slovenia"
msgstr "Sloveni"

#: lang.pm:386
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr ""

#: lang.pm:388
#, c-format
msgid "Sierra Leone"
msgstr "Siera Leoñ"

#: lang.pm:389
#, c-format
msgid "San Marino"
msgstr "San Marino"

#: lang.pm:390 network/adsl_consts.pm:737
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: lang.pm:391
#, c-format
msgid "Somalia"
msgstr "Somali"

#: lang.pm:392
#, c-format
msgid "Suriname"
msgstr "Surinam"

#: lang.pm:393
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome ha Principe"

#: lang.pm:394
#, c-format
msgid "El Salvador"
msgstr "Ar Salvador"

#: lang.pm:395
#, c-format
msgid "Syria"
msgstr "Siri"

#: lang.pm:396
#, c-format
msgid "Swaziland"
msgstr "Swaziland"

#: lang.pm:397
#, c-format
msgid "Turks and Caicos Islands"
msgstr ""

#: lang.pm:398
#, c-format
msgid "Chad"
msgstr "Tchad"

#: lang.pm:399
#, c-format
msgid "French Southern Territories"
msgstr ""

#: lang.pm:400
#, c-format
msgid "Togo"
msgstr "Togo"

#: lang.pm:402
#, c-format
msgid "Tajikistan"
msgstr "Tadjikistan"

#: lang.pm:403
#, c-format
msgid "Tokelau"
msgstr "Tokelo"

#: lang.pm:404
#, c-format
msgid "East Timor"
msgstr "Timor reter"

#: lang.pm:405
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"

#: lang.pm:406 network/adsl_consts.pm:931
#, c-format
msgid "Tunisia"
msgstr "Tunizi"

#: lang.pm:407
#, c-format
msgid "Tonga"
msgstr "Inizi Tonga"

#: lang.pm:408
#, c-format
msgid "Turkey"
msgstr "Turki"

#: lang.pm:409
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad ha Tobago"

#: lang.pm:410
#, c-format
msgid "Tuvalu"
msgstr ""

#: lang.pm:412
#, c-format
msgid "Tanzania"
msgstr "Tanzani"

#: lang.pm:413
#, c-format
msgid "Ukraine"
msgstr "Ukren"

#: lang.pm:414
#, c-format
msgid "Uganda"
msgstr "Ouganda"

#: lang.pm:415
#, c-format
msgid "United States Minor Outlying Islands"
msgstr ""

#: lang.pm:417
#, c-format
msgid "Uruguay"
msgstr "Ourougwae"

#: lang.pm:418
#, c-format
msgid "Uzbekistan"
msgstr "Ouzbekistan"

#: lang.pm:419
#, c-format
msgid "Vatican"
msgstr "Vatikan"

#: lang.pm:420
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr ""

#: lang.pm:421
#, c-format
msgid "Venezuela"
msgstr "Venezuela"

#: lang.pm:422
#, c-format
msgid "Virgin Islands (British)"
msgstr ""

#: lang.pm:423
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Iniz Gwerc'hez"

#: lang.pm:424
#, c-format
msgid "Vietnam"
msgstr "Vietnam"

#: lang.pm:425
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"

#: lang.pm:426
#, c-format
msgid "Wallis and Futuna"
msgstr ""

#: lang.pm:427
#, c-format
msgid "Samoa"
msgstr "Inizi Samoe"

#: lang.pm:428
#, c-format
msgid "Yemen"
msgstr "Ihlemeñ"

#: lang.pm:429
#, c-format
msgid "Mayotte"
msgstr "Mayot"

#: lang.pm:431
#, c-format
msgid "Zambia"
msgstr "Zambi"

#: lang.pm:432
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"

#: lang.pm:1079
#, c-format
msgid "You should install the following packages: %s"
msgstr "Gwell e vefe koulz deoc'h staliañ ar pakadoù-mañ : %s"

#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
#: lang.pm:1082 standalone/scannerdrake:135
#, c-format
msgid ", "
msgstr ", "

#: lang.pm:1135
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"

#: lvm.pm:112
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Lemel al levrenn poellek da gentañ\n"

#: modules/interactive.pm:21 standalone/drakconnect:1028
#, c-format
msgid "Parameters"
msgstr "Arventennoù"

#: modules/interactive.pm:21 standalone/draksec:51
#, c-format
msgid "NONE"
msgstr "EBET"

#: modules/interactive.pm:22
#, c-format
msgid "Module configuration"
msgstr "Kefluniañ ar mollad"

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr ""

#: modules/interactive.pm:63
#, c-format
msgid "Found %s interfaces"
msgstr "Kavet etrefas %s"

#: modules/interactive.pm:64
#, c-format
msgid "Do you have another one?"
msgstr "Hag un all hoc'h eus ?"

#: modules/interactive.pm:65
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"

#: modules/interactive.pm:71
#, c-format
msgid "See hardware info"
msgstr "Gwelet titouroù periantel"

#: modules/interactive.pm:82
#, c-format
msgid "Installing driver for USB controller"
msgstr "O staliañ ur sturier evit ar kontroller USB"

#: modules/interactive.pm:83
#, c-format
msgid "Installing driver for firewire controller %s"
msgstr "O staliañ ur sturier evit ar kontroller firewire %s"

#: modules/interactive.pm:84
#, c-format
msgid "Installing driver for hard drive controller %s"
msgstr "O staliañ ur sturier evit kontroller ar pladennoù %s"

#: modules/interactive.pm:85
#, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "O staliañ ur sturier evit ar kontroller erthernet %s"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:96
#, c-format
msgid "Installing driver for %s card %s"
msgstr "O staliañ ur sturier evit kartenn %s %s"

#: modules/interactive.pm:99
#, c-format
msgid "(module %s)"
msgstr "(mollad %s)"

#: modules/interactive.pm:109
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""

#: modules/interactive.pm:115
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s.\n"
"Diouzh ar furmad « anv=talvoud anv2=talvoud2... » eo an dibaboù.\n"
"Da skouer, « io=0x300 irq=7 »"

#: modules/interactive.pm:117
#, c-format
msgid "Module options:"
msgstr "Dibarzhoù ar mollad :"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:130
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiñ ?"

#: modules/interactive.pm:139
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"E degouezhoù 'zo, ar sturier %s en deus ezhomm titouroù ouzhpenn evit mont\n"
"en-dro reizh, daoust ma da en-dro mat hepto peurvuiañ. Ha mennout a rit "
"spisaat\n"
"dibaboù ouzphenn evitañ, pe aotren d'ar sturier amprouiñ ho penvek evit\n"
"an titouroù en deus ezhomm ? A-wechoù, amprouiñ a c'hell sac'hañ un "
"urzhiataer,\n"
"hogen ne raio reuz ebet."

#: modules/interactive.pm:143
#, c-format
msgid "Autoprobe"
msgstr "Embrouiñ"

#: modules/interactive.pm:143
#, c-format
msgid "Specify options"
msgstr "Spisait dibarzhoù"

#: modules/interactive.pm:155
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Kargañ ar mollad %s a zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoù all ?"

#: modules/parameters.pm:49
#, c-format
msgid "a number"
msgstr "ur niverenn"

#: modules/parameters.pm:51
#, c-format
msgid "%d comma separated numbers"
msgstr ""

#: modules/parameters.pm:51
#, c-format
msgid "%d comma separated strings"
msgstr ""

#: modules/parameters.pm:53
#, c-format
msgid "comma separated numbers"
msgstr ""

#: modules/parameters.pm:53
#, c-format
msgid "comma separated strings"
msgstr ""

#: mouse.pm:25
#, c-format
msgid "Sun - Mouse"
msgstr "Logodenn Sun"

#: mouse.pm:31 security/level.pm:12
#, c-format
msgid "Standard"
msgstr "Skouer"

#: mouse.pm:32
#, c-format
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"

#: mouse.pm:33
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "Logodenn rummel PS2 rodellek"

#: mouse.pm:34
#, c-format
msgid "GlidePoint"
msgstr "GlidePoint"

#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
#: network/modem.pm:73 network/modem.pm:87 network/modem.pm:92
#: network/modem.pm:125 network/netconnect.pm:576 network/netconnect.pm:581
#: network/netconnect.pm:593 network/netconnect.pm:598
#: network/netconnect.pm:614 network/netconnect.pm:616
#, c-format
msgid "Automatic"
msgstr "Emgefreek"

#: mouse.pm:39 mouse.pm:73
#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Logodenn Kensington Thinking"

#: mouse.pm:40 mouse.pm:68
#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"

#: mouse.pm:41
#, c-format
msgid "Genius NetScroll"
msgstr "Genius NetScroll"

#: mouse.pm:42 mouse.pm:52
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"

#: mouse.pm:47 mouse.pm:79
#, c-format
msgid "1 button"
msgstr "1 nozelenn"

#: mouse.pm:48 mouse.pm:57
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Logodenn rummel 2 nozelenn"

#: mouse.pm:50 mouse.pm:59
#, c-format
msgid "Generic 3 Button Mouse with Wheel emulation"
msgstr "Logodenn rummel 3 nozelenn gant kendarvanerezh ar rodell"

#: mouse.pm:51
#, c-format
msgid "Wheel"
msgstr "Rodel"

#: mouse.pm:55
#, c-format
msgid "serial"
msgstr "a-steud"

#: mouse.pm:58
#, c-format
msgid "Generic 3 Button Mouse"
msgstr "Logodenn rummel 3 nozelenn"

#: mouse.pm:60
#, c-format
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"

#: mouse.pm:61
#, c-format
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan+/FirstMouse+"

#: mouse.pm:62
#, c-format
msgid "Logitech MouseMan with Wheel emulation"
msgstr "Logitech MouseMan gant kendarvanerezh ar rodell"

#: mouse.pm:63
#, c-format
msgid "Mouse Systems"
msgstr "Mouse Systems"

#: mouse.pm:65
#, c-format
msgid "Logitech CC Series"
msgstr "Logitech doare CC"

#: mouse.pm:66
#, c-format
msgid "Logitech CC Series with Wheel emulation"
msgstr "Logitech doare CC gant kendarvanerezh ar rodell"

#: mouse.pm:67
#, c-format
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"

#: mouse.pm:69
#, c-format
msgid "MM Series"
msgstr "Doare MM"

#: mouse.pm:70
#, c-format
msgid "MM HitTablet"
msgstr "MM HitTablet"

#: mouse.pm:71
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"

#: mouse.pm:72
#, c-format
msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
msgstr ""
"Logodenn Logitech (a-steud, seurt C7 kozh) gant kendarvanerezh ar rodell"

#: mouse.pm:74
#, c-format
msgid "Kensington Thinking Mouse with Wheel emulation"
msgstr "Logodenn Kensington Thinking gant kendarvanerezh ar rodell"

#: mouse.pm:77
#, c-format
msgid "busmouse"
msgstr "Logodenn bus"

#: mouse.pm:80
#, c-format
msgid "2 buttons"
msgstr "2 nozelenn"

#: mouse.pm:81
#, c-format
msgid "3 buttons"
msgstr "3 nozelenn"

#: mouse.pm:82
#, c-format
msgid "3 buttons with Wheel emulation"
msgstr "3 nozelenn gant kendarvanerezh ar rodell"

#: mouse.pm:86
#, c-format
msgid "Universal"
msgstr "Hollvedel"

#: mouse.pm:88
#, c-format
msgid "Any PS/2 & USB mice"
msgstr "Logodenn bennak (PS/2 pe USB)"

#: mouse.pm:89
#, c-format
msgid "Microsoft Xbox Controller S"
msgstr "Kontroller Microsoft Xbox S"

#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
#, c-format
msgid "none"
msgstr "hini ebet"

#: mouse.pm:95
#, c-format
msgid "No mouse"
msgstr "Logodenn ebet"

#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
#, c-format
msgid "Synaptics Touchpad"
msgstr "Tablezenn synaptics"

#: mouse.pm:561
#, c-format
msgid "Please test the mouse"
msgstr "Testan ak logodenn, mar plij"

#: mouse.pm:563
#, c-format
msgid "To activate the mouse,"
msgstr "Da bevaat al logodenn,"

#: mouse.pm:564
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "FIÑV HO RODELL !"

#: network/drakfirewall.pm:12 share/compssUsers.pl:85
#, c-format
msgid "Web Server"
msgstr "Servijer Web"

#: network/drakfirewall.pm:17
#, c-format
msgid "Domain Name Server"
msgstr "Servijer anvoù ar domani"

#: network/drakfirewall.pm:22
#, c-format
msgid "SSH server"
msgstr "Servijer SSH"

#: network/drakfirewall.pm:27
#, c-format
msgid "FTP server"
msgstr "Servijer FTP"

#: network/drakfirewall.pm:32
#, c-format
msgid "Mail Server"
msgstr "Servijer mailh"

#: network/drakfirewall.pm:37
#, c-format
msgid "POP and IMAP Server"
msgstr "Servijer POP ha LDAP"

#: network/drakfirewall.pm:42
#, c-format
msgid "Telnet server"
msgstr "Servijer telnet"

#: network/drakfirewall.pm:48
#, c-format
msgid "Windows Files Sharing (SMB)"
msgstr ""

#: network/drakfirewall.pm:54
#, c-format
msgid "CUPS server"
msgstr "Servijer CUPS"

#: network/drakfirewall.pm:60
#, c-format
msgid "Echo request (ping)"
msgstr ""

#: network/drakfirewall.pm:65
#, c-format
msgid "BitTorrent"
msgstr "BitTorrent"

#: network/drakfirewall.pm:158
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"This configures a personal firewall for this Mandriva Linux machine.\n"
"For a powerful and dedicated firewall solution, please look to the\n"
"specialized Mandriva Security Firewall distribution."
msgstr ""

#: network/drakfirewall.pm:164
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"Make sure you have configured your Network/Internet access with\n"
"drakconnect before going any further."
msgstr ""

#: network/drakfirewall.pm:181
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""

#: network/drakfirewall.pm:182
#, c-format
msgid ""
"You can enter miscellaneous ports. \n"
"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
"Have a look at /etc/services for information."
msgstr ""

#: network/drakfirewall.pm:188
#, c-format
msgid ""
"Invalid port given: %s.\n"
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535.\n"
"\n"
"You can also give a range of ports (eg: 24300:24350/udp)"
msgstr ""

#: network/drakfirewall.pm:198
#, c-format
msgid "Everything (no firewall)"
msgstr "Holl (moger tan ebet)"

#: network/drakfirewall.pm:200
#, c-format
msgid "Other ports"
msgstr "Porzhioù all"

#: network/isdn.pm:118 network/netconnect.pm:450 network/netconnect.pm:537
#: network/netconnect.pm:540 network/netconnect.pm:683
#: network/netconnect.pm:687
#, c-format
msgid "Unlisted - edit manually"
msgstr "N'eo ket er roll - aozañ anezhan gant an dorn"

#: network/isdn.pm:161 network/netconnect.pm:382
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: network/isdn.pm:161 network/netconnect.pm:382
#, c-format
msgid "I do not know"
msgstr "N'ouzhon ket"

#: network/isdn.pm:162 network/netconnect.pm:382
#, c-format
msgid "PCI"
msgstr "PCI"

#: network/isdn.pm:163 network/netconnect.pm:382
#, c-format
msgid "USB"
msgstr "USB"

#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
#: network/netconnect.pm:581 network/netconnect.pm:598
#: network/netconnect.pm:614
#, c-format
msgid "Manual"
msgstr "Diwar zorn"

#: network/ndiswrapper.pm:27
#, c-format
msgid "No device supporting the %s ndiswrapper driver is present!"
msgstr ""

#: network/ndiswrapper.pm:33
#, c-format
msgid "Please select the Windows driver (.inf file)"
msgstr "Dibabit ar sturier Windows (restr .inf) mar plij"

#: network/ndiswrapper.pm:42
#, c-format
msgid "Unable to install the %s ndiswrapper driver!"
msgstr "N'hellan ket staliañ ar sturier ndiswrapper %s !"

#: network/ndiswrapper.pm:89
#, c-format
msgid "Unable to load the ndiswrapper module!"
msgstr "N'hellan ket kargañ ar mollad ndiswrapper !"

#: network/ndiswrapper.pm:95
#, c-format
msgid ""
"The selected device has already been configured with the %s driver.\n"
"Do you really want to use a ndiswrapper driver?"
msgstr ""

#: network/ndiswrapper.pm:101
#, c-format
msgid "Unable to find the ndiswrapper interface!"
msgstr "Ne m'eus ket bet kavout an etrefas ndiswrapper !"

#: network/netconnect.pm:69 network/netconnect.pm:480
#: network/netconnect.pm:487
#, c-format
msgid "Manual choice"
msgstr "Dibab-dorn"

#: network/netconnect.pm:69
#, c-format
msgid "Internal ISDN card"
msgstr "Kartenn ISDN diabarzh"

#: network/netconnect.pm:80 printer/printerdrake.pm:1418 standalone/drakups:75
#, c-format
msgid "Manual configuration"
msgstr "Kefluniadur-dorn"

#: network/netconnect.pm:81
#, c-format
msgid "Automatic IP (BOOTP/DHCP)"
msgstr "IP emgefreek (BOOTP/DHCP)"

#: network/netconnect.pm:83
#, c-format
msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
msgstr "IP emgefreek (BOOTP/DHCP/Zeroconf)"

#: network/netconnect.pm:86
#, c-format
msgid "Protocol for the rest of the world"
msgstr "Komenad evit ar bed-all"

#: network/netconnect.pm:88 standalone/drakconnect:563
#, c-format
msgid "European protocol (EDSS1)"
msgstr "Komenad europat (EDSS1)"

#: network/netconnect.pm:89 standalone/drakconnect:564
#, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""

#: network/netconnect.pm:121 network/thirdparty.pm:185
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "Modem Alcatel speedtouch USB"

#: network/netconnect.pm:122
#, c-format
msgid "Sagem USB modem"
msgstr "Modem Sagem USB"

#: network/netconnect.pm:123
#, c-format
msgid "Bewan modem"
msgstr "Modem Bewan"

#: network/netconnect.pm:124
#, c-format
msgid "ECI Hi-Focus modem"
msgstr "Modem ECI Hi-Focus"

#: network/netconnect.pm:128
#, c-format
msgid "Dynamic Host Configuration Protocol (DHCP)"
msgstr ""

#: network/netconnect.pm:129
#, c-format
msgid "Manual TCP/IP configuration"
msgstr "Kefluniadur-dorn TCP/IP"

#: network/netconnect.pm:130
#, c-format
msgid "Point to Point Tunneling Protocol (PPTP)"
msgstr ""

#: network/netconnect.pm:131
#, c-format
msgid "PPP over Ethernet (PPPoE)"
msgstr "PPP war Ethernet (PPPoE)"

#: network/netconnect.pm:132
#, c-format
msgid "PPP over ATM (PPPoA)"
msgstr "PPP war ATM (PPPoA)"

#: network/netconnect.pm:133
#, c-format
msgid "DSL over CAPI"
msgstr "DSL a-us CAPI"

#: network/netconnect.pm:137
#, c-format
msgid "Bridged Ethernet LLC"
msgstr ""

#: network/netconnect.pm:138
#, c-format
msgid "Bridged Ethernet VC"
msgstr ""

#: network/netconnect.pm:139
#, c-format
msgid "Routed IP LLC"
msgstr ""

#: network/netconnect.pm:140
#, c-format
msgid "Routed IP VC"
msgstr ""

#: network/netconnect.pm:141
#, c-format
msgid "PPPoA LLC"
msgstr "PPPoA LLC"

#: network/netconnect.pm:142
#, c-format
msgid "PPPoA VC"
msgstr "PPPoA VC"

#: network/netconnect.pm:146 standalone/drakconnect:498
#, c-format
msgid "Script-based"
msgstr "Diazezet war ur skrid"

#: network/netconnect.pm:147 standalone/drakconnect:498
#, c-format
msgid "PAP"
msgstr "PAP"

#: network/netconnect.pm:148 standalone/drakconnect:498
#, c-format
msgid "Terminal-based"
msgstr "Diazezet war un dermenell"

#: network/netconnect.pm:149 standalone/drakconnect:498
#, c-format
msgid "CHAP"
msgstr "CHAP"

#: network/netconnect.pm:150 standalone/drakconnect:498
#, c-format
msgid "PAP/CHAP"
msgstr "PAP/CHAP"

#: network/netconnect.pm:155
#, c-format
msgid "Open WEP"
msgstr "WEP digor"

#: network/netconnect.pm:156
#, c-format
msgid "Restricted WEP"
msgstr "WEP serr"

#: network/netconnect.pm:157
#, c-format
msgid "WPA Pre-Shared Key"
msgstr ""

#: network/netconnect.pm:238 standalone/drakconnect:56
#, c-format
msgid "Network & Internet Configuration"
msgstr "Kefluniadur ar rouedad hag internet"

#: network/netconnect.pm:244
#, c-format
msgid "LAN connection"
msgstr "Kevreadenn gant ur rouedad takad lec'hel"

#: network/netconnect.pm:245 network/netconnect.pm:264
#, c-format
msgid "Wireless connection"
msgstr "Kevreadenn hep neud"

#: network/netconnect.pm:246
#, c-format
msgid "ADSL connection"
msgstr "Kevreadenn ADSL"

#: network/netconnect.pm:247
#, c-format
msgid "Cable connection"
msgstr "Kevreadenn gant ur fun"

#: network/netconnect.pm:248
#, c-format
msgid "ISDN connection"
msgstr "Kevreadenn ISDN"

#: network/netconnect.pm:249
#, c-format
msgid "Modem connection"
msgstr "Kevreadenn gant ur modem"

#: network/netconnect.pm:250
#, c-format
msgid "DVB connection"
msgstr "Kevreadenn DVB"

#: network/netconnect.pm:260
#, c-format
msgid "Choose the connection you want to configure"
msgstr "Dibabit an kevreadenn da kefluniañ"

#: network/netconnect.pm:275 network/netconnect.pm:762
#, c-format
msgid "Connection Configuration"
msgstr "Kefluniañ ar gevreadenn"

#: network/netconnect.pm:275 network/netconnect.pm:763
#, c-format
msgid "Please fill or check the field below"
msgstr ""

#: network/netconnect.pm:278
#, c-format
msgid "Your personal phone number"
msgstr "Ho niverenn pellgomz"

#: network/netconnect.pm:279 network/netconnect.pm:766
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "Anv ar pourchaser (ex pourchaser.net)"

#: network/netconnect.pm:280 standalone/drakconnect:493
#, c-format
msgid "Provider phone number"
msgstr "Niverenn bellgomz ar pourchaser"

#: network/netconnect.pm:281
#, c-format
msgid "Provider DNS 1 (optional)"
msgstr "DNS 1 ar pourchaser (da zilenn)"

#: network/netconnect.pm:282
#, c-format
msgid "Provider DNS 2 (optional)"
msgstr "DNS 2 ar pourchaser (da zilenn)"

#: network/netconnect.pm:283 standalone/drakconnect:444
#, c-format
msgid "Dialing mode"
msgstr "Mod an sifrennadur"

#: network/netconnect.pm:284 standalone/drakconnect:449
#: standalone/drakconnect:517
#, c-format
msgid "Connection speed"
msgstr "Tizh ar gevreadenn"

#: network/netconnect.pm:285 standalone/drakconnect:454
#, c-format
msgid "Connection timeout (in sec)"
msgstr "Amzer-hont a ar gevreadenn (eil)"

#: network/netconnect.pm:286 network/netconnect.pm:311
#: network/netconnect.pm:769 standalone/drakconnect:491
#, c-format
msgid "Account Login (user name)"
msgstr "Kont (anv an arveriad)"

#: network/netconnect.pm:287 network/netconnect.pm:312
#: network/netconnect.pm:770 standalone/drakconnect:492
#, c-format
msgid "Account Password"
msgstr "Tremenger ar den"

#: network/netconnect.pm:288 standalone/drakconnect:554
#, c-format
msgid "Card IRQ"
msgstr "IRQ kartenn"

#: network/netconnect.pm:289 standalone/drakconnect:555
#, c-format
msgid "Card mem (DMA)"
msgstr "Memor kartenn (DMA)"

#: network/netconnect.pm:290 standalone/drakconnect:556
#, c-format
msgid "Card IO"
msgstr "IO kartenn"

#: network/netconnect.pm:291 standalone/drakconnect:557
#, c-format
msgid "Card IO_0"
msgstr "IO_0 kartenn"

#: network/netconnect.pm:292
#, c-format
msgid "Card IO_1"
msgstr "IO_1 kartenn"

#: network/netconnect.pm:307
#, c-format
msgid "Cable: account options"
msgstr "Fun : Dibarzhoù ar gont"

#: network/netconnect.pm:310
#, c-format
msgid "Use BPALogin (needed for Telstra)"
msgstr "Implij BPALogin (red eo evit Telstra)"

#: network/netconnect.pm:335 network/netconnect.pm:650
#: network/netconnect.pm:801 network/netconnect.pm:1101
#, c-format
msgid "Select the network interface to configure:"
msgstr "Dibabit an etrefas rouedad a kefluniañ :"

#: network/netconnect.pm:337 network/netconnect.pm:372
#: network/netconnect.pm:651 network/netconnect.pm:803 network/shorewall.pm:69
#: standalone/drakconnect:709
#, c-format
msgid "Net Device"
msgstr "Trobarzhell ar rouedad"

#: network/netconnect.pm:338 network/netconnect.pm:343
#, c-format
msgid "External ISDN modem"
msgstr "Modem ISDN diavaez"

#: network/netconnect.pm:371 standalone/harddrake2:216
#, c-format
msgid "Select a device!"
msgstr "Dibabit un drobarzhell !"

#: network/netconnect.pm:380 network/netconnect.pm:390
#: network/netconnect.pm:400 network/netconnect.pm:433
#: network/netconnect.pm:447
#, c-format
msgid "ISDN Configuration"
msgstr "Kefluniadur ISDN"

#: network/netconnect.pm:381
#, c-format
msgid "What kind of card do you have?"
msgstr "Peseurt kartenn hoc'h eus ?"

#: network/netconnect.pm:391
#, c-format
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
"card.\n"
msgstr ""

#: network/netconnect.pm:395
#, c-format
msgid "Continue"
msgstr "Kenderc'hel"

#: network/netconnect.pm:395
#, c-format
msgid "Abort"
msgstr "Dilaoskel"

#: network/netconnect.pm:401
#, c-format
msgid "Which of the following is your ISDN card?"
msgstr "Pehini eo ho c'hartenn ISDN ?"

#: network/netconnect.pm:419
#, c-format
msgid ""
"A CAPI driver is available for this modem. This CAPI driver can offer more "
"capabilities than the free driver (like sending faxes). Which driver do you "
"want to use?"
msgstr ""

#: network/netconnect.pm:421 standalone/drakconnect:109 standalone/drakups:251
#: standalone/harddrake2:133
#, c-format
msgid "Driver"
msgstr "Sturier"

#: network/netconnect.pm:433
#, c-format
msgid "Which protocol do you want to use?"
msgstr "Pe seurt komenad a vennit imlijout ?"

#: network/netconnect.pm:435 standalone/drakconnect:109
#: standalone/drakconnect:300 standalone/drakconnect:562
#: standalone/drakvpn:1128
#, c-format
msgid "Protocol"
msgstr "Komenad"

#: network/netconnect.pm:447
#, c-format
msgid ""
"Select your provider.\n"
"If it is not listed, choose Unlisted."
msgstr ""
"Dibabit hor pourchaser.\n"
"Ma n'eo ket e-barzh ar roll, dibabit Unlisted."

#: network/netconnect.pm:449 network/netconnect.pm:536
#: network/netconnect.pm:682
#, c-format
msgid "Provider:"
msgstr "Pourchaser :"

#: network/netconnect.pm:458
#, c-format
msgid ""
"Your modem is not supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""

#: network/netconnect.pm:477
#, c-format
msgid "Select the modem to configure:"
msgstr "Dibabit ar modem a kefluniañ :"

#: network/netconnect.pm:505
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."

#: network/netconnect.pm:534
#, c-format
msgid "Select your provider:"
msgstr "Dibabit ho pourchaser :"

#: network/netconnect.pm:558
#, c-format
msgid "Dialup: account options"
msgstr "Sifrennañ : Dibarzhoù ar gont"

#: network/netconnect.pm:561
#, c-format
msgid "Connection name"
msgstr "Anv ar gevreadenn"

#: network/netconnect.pm:562
#, c-format
msgid "Phone number"
msgstr "Niverenn bellgomz"

#: network/netconnect.pm:563
#, c-format
msgid "Login ID"
msgstr "Anv ereañ"

#: network/netconnect.pm:578 network/netconnect.pm:611
#, c-format
msgid "Dialup: IP parameters"
msgstr "Sifrennañ : Dibarzhoù IP"

#: network/netconnect.pm:581
#, c-format
msgid "IP parameters"
msgstr "Kefluniadur IP"

#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
#: standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "Chomlec'h IP"

#: network/netconnect.pm:583
#, c-format
msgid "Subnet mask"
msgstr "Maskl rannrouedad"

#: network/netconnect.pm:595
#, c-format
msgid "Dialup: DNS parameters"
msgstr "Sifrennañ : Dibarzhoù DNS"

#: network/netconnect.pm:598
#, c-format
msgid "DNS"
msgstr "DNS"

#: network/netconnect.pm:599
#, c-format
msgid "Domain name"
msgstr "Anv ar domani"

#: network/netconnect.pm:600 network/netconnect.pm:767
#: standalone/drakconnect:993
#, c-format
msgid "First DNS Server (optional)"
msgstr "Servijer DNS kentañ (da zilenn)"

#: network/netconnect.pm:601 network/netconnect.pm:768
#: standalone/drakconnect:994
#, c-format
msgid "Second DNS Server (optional)"
msgstr "Eil servijer DNS (da zilenn)"

#: network/netconnect.pm:602
#, c-format
msgid "Set hostname from IP"
msgstr "Lakaat anv ostiz eus an IP"

#: network/netconnect.pm:614 standalone/drakconnect:327
#, c-format
msgid "Gateway"
msgstr "Treuzell"

#: network/netconnect.pm:615
#, c-format
msgid "Gateway IP address"
msgstr "Chomlec'h IP ar dreuzell"

#: network/netconnect.pm:650
#, c-format
msgid "ADSL configuration"
msgstr "Kefluniadur ADSL"

#: network/netconnect.pm:680
#, c-format
msgid "Please choose your ADSL provider"
msgstr "Dibabit ho pourchaser ADSL, mar plij :"

#: network/netconnect.pm:710
#, c-format
msgid "Connect to the Internet"
msgstr "Kevreañ da internet"

#: network/netconnect.pm:711
#, c-format
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use PPTP, a few use DHCP.\n"
"If you do not know, choose 'use PPPoE'"
msgstr ""

#: network/netconnect.pm:715
#, c-format
msgid "ADSL connection type:"
msgstr "Peseurt kevreadenn ADSL :"

#: network/netconnect.pm:772
#, c-format
msgid "Virtual Path ID (VPI):"
msgstr ""

#: network/netconnect.pm:773
#, c-format
msgid "Virtual Circuit ID (VCI):"
msgstr ""

#: network/netconnect.pm:776
#, c-format
msgid "Encapsulation:"
msgstr ""

#: network/netconnect.pm:803
#, c-format
msgid "Manually load a driver"
msgstr "Assevel-dorn ur sturier"

#: network/netconnect.pm:803
#, c-format
msgid "Use a Windows driver (with ndiswrapper)"
msgstr "Implijit ur sturier Windows (gant ndiswrapper)"

#: network/netconnect.pm:810 network/netconnect.pm:1065
#: network/netconnect.pm:1069 printer/printerdrake.pm:3741
#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
#: standalone/drakgw:397
#, c-format
msgid "Could not install the %s package!"
msgstr "N'eo ket evit staliañ ar pakad %s !"

#: network/netconnect.pm:846
#, fuzzy, c-format
msgid "Zeroconf hostname resolution"
msgstr "Anv ostiz Zeroconf"

#: network/netconnect.pm:847 network/netconnect.pm:877
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "O kefluniañ an drobarzhell rouedad %s (sturier : %s)"

#: network/netconnect.pm:848
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
"choose the one you want to use"
msgstr ""

#: network/netconnect.pm:878
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
"Skrivit ar c'hefluniadur IP evit ar benveg-mañ mar plij.\n"
"Pep mellad a zlefe bezañ skrivet evel ur chomlec'h IP e stumm\n"
"sifroù dekvel pikoù etrezo (da skouer 1.2.3.4)."

#: network/netconnect.pm:885 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr "Adtapout an anv ostiz eus ar chomlec'h DHCP"

#: network/netconnect.pm:886 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr "Anv ostiz DHCP"

#: network/netconnect.pm:891 standalone/drakconnect:321
#: standalone/drakconnect:879 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "Maskl rouedad"

#: network/netconnect.pm:893 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr ""

#: network/netconnect.pm:895 standalone/drakconnect:438
#, fuzzy, c-format
msgid "Network Hotplugging"
msgstr "Kefluniadur ar rouedad"

#: network/netconnect.pm:897 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr "Loc'hañ pa loc'hañ an urzhiataer"

#: network/netconnect.pm:899 standalone/drakconnect:460
#, c-format
msgid "Metric"
msgstr "Metrik"

#: network/netconnect.pm:901 standalone/drakconnect:369
#: standalone/drakconnect:882
#, c-format
msgid "DHCP client"
msgstr "Kliant DHCP"

#: network/netconnect.pm:903 standalone/drakconnect:379
#, c-format
msgid "DHCP timeout (in seconds)"
msgstr "Amzer-hont DHCP (eil)"

#: network/netconnect.pm:904 standalone/drakconnect:382
#, c-format
msgid "Get DNS servers from DHCP"
msgstr "Adtapout ar servijerien DNS eus DHCP"

#: network/netconnect.pm:905 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr "Adtapout ar servijerien YP eus DHCP"

#: network/netconnect.pm:906 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr "Adtapout ar servijerien NTPD eus DHCP"

#: network/netconnect.pm:914 printer/printerdrake.pm:1672
#: standalone/drakconnect:672
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"

#: network/netconnect.pm:918 standalone/drakconnect:676
#, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "Er furmad 255.255.224.0 e tlefe bezañ ar maskl rouedad"

#: network/netconnect.pm:922
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr ""

#: network/netconnect.pm:927 standalone/drakTermServ:1782
#: standalone/drakTermServ:1783 standalone/drakTermServ:1784
#, c-format
msgid "%s already in use\n"
msgstr "implijet eo %s c'hoazh\n"

#: network/netconnect.pm:960
#, c-format
msgid "Choose an ndiswrapper driver"
msgstr "Dibabit ur sturier ndiswrapper"

#: network/netconnect.pm:962
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr "Implijit ar sturier ndiswrapper %s"

#: network/netconnect.pm:962
#, c-format
msgid "Install a new driver"
msgstr "Staliañ ur sturier nevez"

#: network/netconnect.pm:974
#, c-format
msgid "Select a device:"
msgstr "Dibabit un drobarzhell :"

#: network/netconnect.pm:999
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr "Roit an dibarzhoù ar gartenn-hep-neud-mañ mar plij :"

#: network/netconnect.pm:1002 standalone/drakconnect:404
#, c-format
msgid "Operating Mode"
msgstr "Mod labour"

#: network/netconnect.pm:1003
#, c-format
msgid "Ad-hoc"
msgstr ""

#: network/netconnect.pm:1003
#, c-format
msgid "Managed"
msgstr "Meret"

#: network/netconnect.pm:1003
#, c-format
msgid "Master"
msgstr "Mestr"

#: network/netconnect.pm:1003
#, fuzzy, c-format
msgid "Repeater"
msgstr "Adaozañ adalek ar restr"

#: network/netconnect.pm:1003
#, c-format
msgid "Secondary"
msgstr "Eil derez"

#: network/netconnect.pm:1003
#, c-format
msgid "Auto"
msgstr "Emgefreek"

#: network/netconnect.pm:1005 standalone/drakconnect:405
#, c-format
msgid "Network name (ESSID)"
msgstr "Anv ar rouedad (ESSID)"

#: network/netconnect.pm:1006 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr "Niv ar rouedad"

#: network/netconnect.pm:1007 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr "Frekañs labour"

#: network/netconnect.pm:1008 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr ""

#: network/netconnect.pm:1009 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr ""

#: network/netconnect.pm:1010
#, c-format
msgid "Encryption mode"
msgstr "Mod enrinegadur"

#: network/netconnect.pm:1014 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"

#: network/netconnect.pm:1015
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
"the\n"
"channel is clear. This adds overhead, but increase performance in case of "
"hidden\n"
"nodes or large number of active nodes. This parameter sets the size of the\n"
"smallest packet for which the node sends RTS, a value equal to the maximum\n"
"packet size disable the scheme. You may also set this parameter to auto, "
"fixed\n"
"or off."
msgstr ""

#: network/netconnect.pm:1022 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr ""

#: network/netconnect.pm:1023 standalone/drakconnect:422
#, c-format
msgid "Iwconfig command extra arguments"
msgstr ""

#: network/netconnect.pm:1024
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
"as the hostname).\n"
"\n"
"See iwconfig(8) man page for further information."
msgstr ""

#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
#: network/netconnect.pm:1031 standalone/drakconnect:423
#, c-format
msgid "Iwspy command extra arguments"
msgstr ""

#: network/netconnect.pm:1032
#, c-format
msgid ""
"Iwspy is used to set a list of addresses in a wireless network\n"
"interface and to read back quality of link information for each of those.\n"
"\n"
"This information is the same as the one available in /proc/net/wireless :\n"
"quality of the link, signal strength and noise level.\n"
"\n"
"See iwpspy(8) man page for further information."
msgstr ""

#: network/netconnect.pm:1041 standalone/drakconnect:424
#, c-format
msgid "Iwpriv command extra arguments"
msgstr ""

#: network/netconnect.pm:1042
#, c-format
msgid ""
"Iwpriv enable to set up optionals (private) parameters of a wireless "
"network\n"
"interface.\n"
"\n"
"Iwpriv deals with parameters and setting specific to each driver (as opposed "
"to\n"
"iwconfig which deals with generic ones).\n"
"\n"
"In theory, the documentation of each device driver should indicate how to "
"use\n"
"those interface specific commands and their effect.\n"
"\n"
"See iwpriv(8) man page for further information."
msgstr ""

#: network/netconnect.pm:1057
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""

#: network/netconnect.pm:1061
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""

#: network/netconnect.pm:1101
#, c-format
msgid "DVB configuration"
msgstr "Kefluniadur DVB"

#: network/netconnect.pm:1102
#, c-format
msgid "DVB Adapter"
msgstr "Kartenn DVB"

#: network/netconnect.pm:1119
#, c-format
msgid "DVB adapter settings"
msgstr "Kefluniadur ar gartenn DVB"

#: network/netconnect.pm:1122
#, c-format
msgid "Adapter card"
msgstr ""

#: network/netconnect.pm:1123
#, c-format
msgid "Net demux"
msgstr ""

#: network/netconnect.pm:1124
#, c-format
msgid "PID"
msgstr "PID"

#: network/netconnect.pm:1152
#, c-format
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one."
msgstr ""
"Roit ho anv ostiz mar plij.\n"
"Un anv peurzoareet a zlefe bezañ hini o ostiz,\n"
"evel « mabenveg.mastal.makomp.com ».\n"
"Gallout a rit ivez reiñ chomlec'h IP an dreuzell m'hoc'h eus unan."

#: network/netconnect.pm:1157
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""

#: network/netconnect.pm:1159 standalone/drakconnect:992
#, c-format
msgid "Host name (optional)"
msgstr "Anv ostiz (diret)"

#: network/netconnect.pm:1159
#, c-format
msgid "Host name"
msgstr "Anv an ostiz"

#: network/netconnect.pm:1161
#, c-format
msgid "DNS server 1"
msgstr "Servijer DNS 1"

#: network/netconnect.pm:1162
#, c-format
msgid "DNS server 2"
msgstr "Servijer DNS 2"

#: network/netconnect.pm:1163
#, c-format
msgid "DNS server 3"
msgstr "Servijer DNS 3"

#: network/netconnect.pm:1164
#, c-format
msgid "Search domain"
msgstr "Domani glask"

#: network/netconnect.pm:1165
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""

#: network/netconnect.pm:1166
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Treuzell (ex : %s)"

#: network/netconnect.pm:1168
#, c-format
msgid "Gateway device"
msgstr "Trobarzhell an dreuzell"

#: network/netconnect.pm:1177
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ chomlec'h ar servijer DNS"

#: network/netconnect.pm:1182 standalone/drakconnect:681
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ chomlec'h ar dreuzell"

#: network/netconnect.pm:1195
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
"This is the name your machine will use to advertise any of\n"
"its shared resources that are not managed by the network.\n"
"It is not necessary on most networks."
msgstr ""

#: network/netconnect.pm:1199
#, c-format
msgid "Zeroconf Host name"
msgstr "Anv ostiz Zeroconf"

#: network/netconnect.pm:1202
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""

#: network/netconnect.pm:1212
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "Mennout a rit lañsañ ar gevradenn pa loc'hañ ?"

#: network/netconnect.pm:1225
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Mennout a rit lañsañ ar gevradenn pa loc'hañ ?"

#: network/netconnect.pm:1240
#, c-format
msgid "Automatically at boot"
msgstr "Ent emgefreek pa loc'ho"

#: network/netconnect.pm:1242
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""

#: network/netconnect.pm:1244
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""

#: network/netconnect.pm:1253
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "Mennout a rit implijout aboot ?"

#: network/netconnect.pm:1266
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Fellout a ra deoc'h klask da gevreañ ouzh an Internet bremañ ?"

#: network/netconnect.pm:1274 standalone/drakconnect:1024
#, c-format
msgid "Testing your connection..."
msgstr "O klask da lakaat ho gevradenn ..."

#: network/netconnect.pm:1294
#, c-format
msgid "The system is now connected to the Internet."
msgstr "Kevreet ouzh an Internet eo ho reizhiad bremañ."

#: network/netconnect.pm:1295
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr ""

#: network/netconnect.pm:1296
#, fuzzy, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr "Anv ar gevreadenn"

#: network/netconnect.pm:1311
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"\n"
msgstr ""

#: network/netconnect.pm:1314
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""

#: network/netconnect.pm:1315
#, c-format
msgid ""
"Problems occurred during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection does not "
"work, you might want to relaunch the configuration."
msgstr ""

#: network/netconnect.pm:1326
#, c-format
msgid "(detected on port %s)"
msgstr "(kavet war ar porzh %s)"

#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
#: network/netconnect.pm:1328
#, c-format
msgid "(detected %s)"
msgstr "(kavet %s)"

#: network/netconnect.pm:1328
#, c-format
msgid "(detected)"
msgstr "(kavet)"

#: network/netconnect.pm:1329
#, c-format
msgid "Network Configuration"
msgstr "Kefluniadur ar rouedad"

#: network/netconnect.pm:1330
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
"Click on Ok to keep your configuration, or cancel to reconfigure your "
"Internet & Network connection.\n"
msgstr ""

#: network/netconnect.pm:1333
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr ""
"Red eo da adloc'hañ ar rouedad. Fellout a ra deoc'h adloc'hañ anezhañ ?"

#: network/netconnect.pm:1334
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
"\n"
"%s"
msgstr ""
"Degouezhet ez eus ur fazi en ur adloc'hañ ar rouedad :\n"
"\n"
"%s"

#: network/netconnect.pm:1335
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
"\n"
"\n"
"Press \"%s\" to continue."
msgstr ""
"Emaomp o vont da gefluniañ ar gevreadenn %s.\n"
"\n"
"\n"
"gwaskit « %s » evit kendelc'her"

#: network/netconnect.pm:1336
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr ""
"Echu eo ar gefluniadur, Ha fellout a ra deoc'h da arloañ ar gefluniadur-mañ ?"

#: network/netconnect.pm:1337
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""

#: network/netconnect.pm:1338
#, c-format
msgid "Internet connection"
msgstr "Kevreadenn ouzh an internet"

#: network/netconnect.pm:1355
#, c-format
msgid ""
"An unexpected error has happened:\n"
"%s"
msgstr ""

#: network/network.pm:390
#, c-format
msgid "Proxies configuration"
msgstr "Kefluniadur proksioù"

#: network/network.pm:391
#, c-format
msgid "HTTP proxy"
msgstr "Proksi HTTP"

#: network/network.pm:392
#, c-format
msgid "FTP proxy"
msgstr "Proksi FTP"

#: network/network.pm:395
#, c-format
msgid "Proxy should be http://..."
msgstr "http://... a zlefe bezañ ar proksi"

#: network/network.pm:396
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "« http: » pe « ftp: » a zlefe bezañ ar proksi"

#: network/shorewall.pm:54
#, c-format
msgid ""
"Please enter the name of the interface connected to the internet.\n"
"\n"
"Examples:\n"
"\t\tppp+ for modem or DSL connections, \n"
"\t\teth0, or eth1 for cable connection, \n"
"\t\tippp+ for a isdn connection.\n"
msgstr ""

#: network/thirdparty.pm:197
#, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""

#: network/thirdparty.pm:206
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
"problem.\n"
"\n"
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""

#: network/thirdparty.pm:267
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "Ne m'eus ket staliañ ar pakadoù %s !"

#: network/thirdparty.pm:275
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""

#: network/thirdparty.pm:276
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""

#: network/thirdparty.pm:277
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""

#: network/thirdparty.pm:310
#, fuzzy, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "Lemel an nodrezhoù eus ho reizhiad"

#: network/thirdparty.pm:312
#, c-format
msgid "No Windows system has been detected!"
msgstr ""

#: network/thirdparty.pm:322
#, c-format
msgid "Insert floppy"
msgstr "Lakait ur bladennig"

#: network/thirdparty.pm:323
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
"press %s"
msgstr ""
"Lakait ur bladennig el lenner %s gant %s er renkell gwrizienn ha neuze "
"gwaskit « %s »"

#: network/thirdparty.pm:333
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Fazi moned ouzh ar bladennig, ne m'eus ket mountañ an drobarzhell %s"

#: network/thirdparty.pm:343
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
"You can provide it now via a floppy or your windows partition,\n"
"or skip and do it later."
msgstr ""

#: network/thirdparty.pm:347 network/thirdparty.pm:349
#, c-format
msgid "Use a floppy"
msgstr "Implijit ur bladennig"

#: network/thirdparty.pm:347
#, c-format
msgid "Use my Windows partition"
msgstr "Implij ma farzhadur Windows"

#: network/thirdparty.pm:357
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""

#: network/thirdparty.pm:362 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr "Gourc'hemennoù !"

#: network/thirdparty.pm:362
#, c-format
msgid "Firmware copy succeeded"
msgstr ""

#: network/thirdparty.pm:427
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""

#: network/thirdparty.pm:437
#, fuzzy, c-format
msgid "Please wait, running device configuration commands..."
msgstr ""
"Gortozit mar plij, o tinoiñ trobarzhelloù ha o kefluniañ trobarzhelloù ..."

#: partition_table.pm:391
#, c-format
msgid "mount failed: "
msgstr "marc'hañ sac'het : "

#: partition_table.pm:496
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Ne m'eus ket implij ar parzhadurioù astennet gant ar reizhiad-mañ"

#: partition_table.pm:514
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Un toull a zo en ho taolenn barzhañ hogen n'hellan ket e implijout.\n"
"Fiñval ar parzhadurioù kentañ derez evit ma vo an toull stok ouzh ar "
"parzhadurioù astennet eo an diskoulm"

#: partition_table.pm:605
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"

#: partition_table.pm:607
#, c-format
msgid "Bad backup file"
msgstr "Restr gwareziñ siek"

#: partition_table.pm:627
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivañ er restr %s"

#: partition_table/raw.pm:252
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""

#: pkgs.pm:21
#, c-format
msgid "must have"
msgstr "a rankfec'h kaout"

#: pkgs.pm:22
#, c-format
msgid "important"
msgstr "a-bouez"

#: pkgs.pm:23
#, c-format
msgid "very nice"
msgstr "brav-tre"

#: pkgs.pm:24
#, c-format
msgid "nice"
msgstr "brav"

#: pkgs.pm:25
#, c-format
msgid "maybe"
msgstr "marteze"

#: pkgs.pm:458
#, c-format
msgid "Downloading file %s..."
msgstr "Emaon oc'h enkargañ ar restr %s ..."

#: printer/cups.pm:103
#, c-format
msgid "(on %s)"
msgstr "(war %s)"

#: printer/cups.pm:103
#, c-format
msgid "(on this machine)"
msgstr "(war ar reizhiad-mañ)"

#: printer/cups.pm:115 standalone/printerdrake:187
#, c-format
msgid "Configured on other machines"
msgstr "Kefluniañ reizhiadoù all"

#: printer/cups.pm:117
#, c-format
msgid "On CUPS server \"%s\""
msgstr "War ar servijer CUPS « %s »"

#: printer/cups.pm:117 printer/printerdrake.pm:4761
#: printer/printerdrake.pm:4771 printer/printerdrake.pm:4916
#: printer/printerdrake.pm:4927 printer/printerdrake.pm:5137
#, c-format
msgid " (Default)"
msgstr " (Dre ziouer)"

#: printer/data.pm:60
#, c-format
msgid "PDQ - Print, Do not Queue"
msgstr ""

#: printer/data.pm:61
#, c-format
msgid "PDQ"
msgstr "PDQ"

#: printer/data.pm:73
#, c-format
msgid "LPD - Line Printer Daemon"
msgstr ""

#: printer/data.pm:74
#, c-format
msgid "LPD"
msgstr "LPD"

#: printer/data.pm:95
#, c-format
msgid "LPRng - LPR New Generation"
msgstr ""

#: printer/data.pm:96
#, c-format
msgid "LPRng"
msgstr "LPRng"

#: printer/data.pm:121
#, c-format
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"

#: printer/data.pm:151
#, c-format
msgid "CUPS - Common Unix Printing System (remote server)"
msgstr "CUPS - Common Unix Printing System (servijer a-bell)"

#: printer/data.pm:152
#, c-format
msgid "Remote CUPS"
msgstr "CUPS a-bell"

#: printer/detect.pm:156 printer/detect.pm:239 printer/detect.pm:441
#: printer/detect.pm:478
#, c-format
msgid "Unknown Model"
msgstr "Gobari anavez"

#: printer/main.pm:27
#, c-format
msgid "Local printer"
msgstr "Moullerez lec'hel"

#: printer/main.pm:28
#, c-format
msgid "Remote printer"
msgstr "Moullerez a-bell"

#: printer/main.pm:29
#, c-format
msgid "Printer on remote CUPS server"
msgstr "Moullerez war ar Servijer CUPS a-bell"

#: printer/main.pm:30 printer/printerdrake.pm:1150
#: printer/printerdrake.pm:1695
#, c-format
msgid "Printer on remote lpd server"
msgstr "Moullerez war ar Servijer lpd a-bell"

#: printer/main.pm:31
#, c-format
msgid "Network printer (TCP/Socket)"
msgstr "Moullerez rouedad (TCP/Socket)"

#: printer/main.pm:32
#, c-format
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Moullerez war ur servijer SMB/Windows 95/98/NT"

#: printer/main.pm:33
#, c-format
msgid "Printer on NetWare server"
msgstr "Moullerez war ur servijer NetWare"

#: printer/main.pm:34 printer/printerdrake.pm:1699
#, c-format
msgid "Enter a printer device URI"
msgstr "Roit URI trobarzhell a voullerez"

#: printer/main.pm:35
#, c-format
msgid "Pipe job into a command"
msgstr ""

#: printer/main.pm:45
#, c-format
msgid "recommended"
msgstr "erbedet"

#: printer/main.pm:329 printer/main.pm:634 printer/main.pm:1671
#: printer/main.pm:2706 printer/main.pm:2715 printer/printerdrake.pm:910
#: printer/printerdrake.pm:2182 printer/printerdrake.pm:5174
#, c-format
msgid "Unknown model"
msgstr "Gobari anavez"

#: printer/main.pm:354 standalone/printerdrake:186
#, c-format
msgid "Configured on this machine"
msgstr "Kefluniet ar reizhiad-mañ"

#: printer/main.pm:360 printer/printerdrake.pm:1239
#, c-format
msgid " on parallel port #%s"
msgstr " ouzh ar porzh kenstur #%s"

#: printer/main.pm:363 printer/printerdrake.pm:1242
#, c-format
msgid ", USB printer #%s"
msgstr ", Mouluriez USB #%s"

#: printer/main.pm:365
#, c-format
msgid ", USB printer"
msgstr ", Mouluriez USB"

#: printer/main.pm:369
#, c-format
msgid ", HP printer on a parallel port"
msgstr ", moullerez HP ouzh ar porzh kenstur"

#: printer/main.pm:371
#, c-format
msgid ", HP printer on USB"
msgstr ", Moullerez HP ouzh USB"

#: printer/main.pm:373
#, c-format
msgid ", HP printer on HP JetDirect"
msgstr ""

#: printer/main.pm:375
#, c-format
msgid ", HP printer"
msgstr ", Moullerez HP"

#: printer/main.pm:381
#, c-format
msgid ", multi-function device on parallel port #%s"
msgstr ""

#: printer/main.pm:384
#, c-format
msgid ", multi-function device on a parallel port"
msgstr ""

#: printer/main.pm:386
#, c-format
msgid ", multi-function device on USB"
msgstr ""

#: printer/main.pm:388
#, c-format
msgid ", multi-function device on HP JetDirect"
msgstr ""

#: printer/main.pm:390
#, c-format
msgid ", multi-function device"
msgstr ""

#: printer/main.pm:394
#, c-format
msgid ", printing to %s"
msgstr ", o voulaañ da %s"

#: printer/main.pm:397
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " ouzh ar servijer LPD « %s », moullerez « %s »"

#: printer/main.pm:400
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", Ostiz TCP/IP « %s », porzh %s"

#: printer/main.pm:405
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""

#: printer/main.pm:410
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " ouzh ar servijer Novell « %s », moullerez « %s »"

#: printer/main.pm:413
#, c-format
msgid ", using command %s"
msgstr ""

#: printer/main.pm:428
#, c-format
msgid "Parallel port #%s"
msgstr "Porzh kenstur #%s"

#: printer/main.pm:431 printer/printerdrake.pm:1260
#: printer/printerdrake.pm:1287 printer/printerdrake.pm:1305
#, c-format
msgid "USB printer #%s"
msgstr "Moullerez USB #%s"

#: printer/main.pm:433
#, c-format
msgid "USB printer"
msgstr "Mouluriez USB"

#: printer/main.pm:437
#, c-format
msgid "HP printer on a parallel port"
msgstr "Moullerez HP ouzh ar porzh kenstur"

#: printer/main.pm:439
#, c-format
msgid "HP printer on USB"
msgstr "Moullerez HP ouzh USB"

#: printer/main.pm:441
#, c-format
msgid "HP printer on HP JetDirect"
msgstr ""

#: printer/main.pm:443
#, c-format
msgid "HP printer"
msgstr "Moullerez HP"

#: printer/main.pm:449
#, c-format
msgid "Multi-function device on parallel port #%s"
msgstr ""

#: printer/main.pm:452
#, c-format
msgid "Multi-function device on a parallel port"
msgstr ""

#: printer/main.pm:454
#, c-format
msgid "Multi-function device on USB"
msgstr ""

#: printer/main.pm:456
#, c-format
msgid "Multi-function device on HP JetDirect"
msgstr ""

#: printer/main.pm:458
#, c-format
msgid "Multi-function device"
msgstr ""

#: printer/main.pm:462
#, c-format
msgid "Prints into %s"
msgstr "Moulañ a ra da %s"

#: printer/main.pm:465
#, c-format
msgid "LPD server \"%s\", printer \"%s\""
msgstr "Servijer LPD « %s », moullerez « %s »"

#: printer/main.pm:468
#, c-format
msgid "TCP/IP host \"%s\", port %s"
msgstr "Ostiz TCP/IP « %s », porzh « %s »"

#: printer/main.pm:473
#, c-format
msgid "SMB/Windows server \"%s\", share \"%s\""
msgstr "Servijer SMB/Windows « %s », rannad « %s »"

#: printer/main.pm:478
#, c-format
msgid "Novell server \"%s\", printer \"%s\""
msgstr "Servijer Novell « %s », moullerez « %s »"

#: printer/main.pm:481
#, c-format
msgid "Uses command %s"
msgstr "Implij a ra an urzhiad %s"

#: printer/main.pm:483
#, c-format
msgid "URI: %s"
msgstr "URI : %s"

#: printer/main.pm:631 printer/printerdrake.pm:856
#: printer/printerdrake.pm:2953
#, c-format
msgid "Raw printer (No driver)"
msgstr "Moullerez diaoz (sturier ebet)"

#: printer/main.pm:1181 printer/printerdrake.pm:211
#: printer/printerdrake.pm:223
#, c-format
msgid "Local network(s)"
msgstr "Rouedad(où) lec'hel"

#: printer/main.pm:1183 printer/printerdrake.pm:227
#, c-format
msgid "Interface \"%s\""
msgstr "C'hetal \"%s\""

#: printer/main.pm:1185
#, c-format
msgid "Network %s"
msgstr "Rouedad %s"

#: printer/main.pm:1187
#, c-format
msgid "Host %s"
msgstr "Ostiz %s"

#: printer/main.pm:1216
#, c-format
msgid "%s (Port %s)"
msgstr "%s (Porzh %s)"

#: printer/printerdrake.pm:24
#, c-format
msgid ""
"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
"on. Download the Windows driver package from the HP web site (the firmware "
"on the printer's CD does not work) and extract the firmware file from it by "
"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
"printer' directory. There it will be found by the automatic uploader script "
"and uploaded whenever the printer is connected and turned on.\n"
msgstr ""

#: printer/printerdrake.pm:67
#, c-format
msgid "CUPS printer configuration"
msgstr "Kefluniañ ar voullerez CUPS"

#: printer/printerdrake.pm:68
#, c-format
msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessible by remote machines and by which remote machines."
msgstr ""

#: printer/printerdrake.pm:69
#, c-format
msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""

#: printer/printerdrake.pm:72
#, c-format
msgid "The printers on this machine are available to other computers"
msgstr ""

#: printer/printerdrake.pm:77
#, c-format
msgid "Automatically find available printers on remote machines"
msgstr ""

#: printer/printerdrake.pm:82
#, c-format
msgid "Printer sharing on hosts/networks: "
msgstr ""

#: printer/printerdrake.pm:84
#, c-format
msgid "Custom configuration"
msgstr "Kefluniadur diouzhoc'h"

#: printer/printerdrake.pm:89 standalone/scannerdrake:593
#: standalone/scannerdrake:610
#, c-format
msgid "No remote machines"
msgstr "Reizhiadoù a-bell ebet"

#: printer/printerdrake.pm:100
#, c-format
msgid "Additional CUPS servers: "
msgstr "Servijeroù CUPS ouzhpenn : "

#: printer/printerdrake.pm:107
#, c-format
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"only need to turn on the \"Automatically find available printers on remote "
"machines\" option; the CUPS servers inform your machine automatically about "
"their printers. All printers currently known to your machine are listed in "
"the \"Remote printers\" section in the main window of Printerdrake. If your "
"CUPS server(s) is/are not in your local network, you have to enter the IP "
"address(es) and optionally the port number(s) here to get the printer "
"information from the server(s)."
msgstr ""

#: printer/printerdrake.pm:115
#, c-format
msgid "Japanese text printing mode"
msgstr "Mod moulañ ar skrid japanek"

#: printer/printerdrake.pm:116
#, c-format
msgid ""
"Turning on this allows to print plain text files in Japanese language. Only "
"use this function if you really want to print text in Japanese, if it is "
"activated you cannot print accentuated characters in latin fonts any more "
"and you will not be able to adjust the margins, the character size, etc. "
"This setting only affects printers defined on this machine. If you want to "
"print Japanese text on a printer set up on a remote machine, you have to "
"activate this function on that remote machine."
msgstr ""

#: printer/printerdrake.pm:123
#, fuzzy, c-format
msgid "Automatic correction of CUPS configuration"
msgstr "Kefluniadur goude staliañ"

#: printer/printerdrake.pm:125
#, c-format
msgid ""
"When this option is turned on, on every startup of CUPS it is automatically "
"made sure that\n"
"\n"
"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
"- when printer information is broadcasted, it does not contain \"localhost\" "
"as the server name.\n"
"\n"
"If some of these measures lead to problems for you, turn this option off, "
"but then you have to take care of these points."
msgstr ""

#: printer/printerdrake.pm:138 printer/printerdrake.pm:506
#: printer/printerdrake.pm:4397
#, c-format
msgid "Remote CUPS server and no local CUPS daemon"
msgstr ""

#: printer/printerdrake.pm:141
#, c-format
msgid "On"
msgstr "Oberiant"

#: printer/printerdrake.pm:143 printer/printerdrake.pm:498
#: printer/printerdrake.pm:525
#, c-format
msgid "Off"
msgstr "Dioberiant"

#: printer/printerdrake.pm:144 printer/printerdrake.pm:507
#, c-format
msgid ""
"In this mode the local CUPS daemon will be stopped and all printing requests "
"go directly to the server specified below. Note that it is not possible to "
"define local print queues then and if the specified server is down it cannot "
"be printed at all from this machine."
msgstr ""

#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
#, c-format
msgid "Sharing of local printers"
msgstr ""

#: printer/printerdrake.pm:162
#, c-format
msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""

#: printer/printerdrake.pm:173
#, c-format
msgid "Add host/network"
msgstr "Ouzhpennañ un oztiz pe ur rouedad"

#: printer/printerdrake.pm:179
#, c-format
msgid "Edit selected host/network"
msgstr "Kemmañ an ostiz/serjiver diuzet"

#: printer/printerdrake.pm:188
#, c-format
msgid "Remove selected host/network"
msgstr "Lemel ar ostiz/serjiver diuzet"

#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
#, c-format
msgid "IP address of host/network:"
msgstr "Chomlec'h IP ar ostiz/serjiver diuzet"

#: printer/printerdrake.pm:237
#, c-format
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
msgstr ""

#: printer/printerdrake.pm:244
#, c-format
msgid "Host/network IP address missing."
msgstr "Chomlec'h IP ar ostiz/serjiver ebet."

#: printer/printerdrake.pm:252
#, c-format
msgid "The entered host/network IP is not correct.\n"
msgstr ""

#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
#, c-format
msgid "Examples for correct IPs:\n"
msgstr ""

#: printer/printerdrake.pm:277
#, c-format
msgid "This host/network is already in the list, it cannot be added again.\n"
msgstr ""

#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
#, fuzzy, c-format
msgid "Accessing printers on remote CUPS servers"
msgstr "Steud a-bell"

#: printer/printerdrake.pm:347
#, c-format
msgid ""
"Add here the CUPS servers whose printers you want to use. You only need to "
"do this if the servers do not broadcast their printer information into the "
"local network."
msgstr ""

#: printer/printerdrake.pm:358
#, c-format
msgid "Add server"
msgstr "Ouzhpennañ ar servijer"

#: printer/printerdrake.pm:364
#, c-format
msgid "Edit selected server"
msgstr "Kemmañ ar serjiver diuzet"

#: printer/printerdrake.pm:373
#, c-format
msgid "Remove selected server"
msgstr "Lemel ar servijer diuzet"

#: printer/printerdrake.pm:417
#, c-format
msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""

#: printer/printerdrake.pm:418
#, c-format
msgid "If no port is given, 631 will be taken as default."
msgstr ""

#: printer/printerdrake.pm:422
#, c-format
msgid "Server IP missing!"
msgstr "IP ar servijer zo manket !"

#: printer/printerdrake.pm:428
#, c-format
msgid "The entered IP is not correct.\n"
msgstr "N'eo ket mat an IP roet.\n"

#: printer/printerdrake.pm:440 printer/printerdrake.pm:1924
#, c-format
msgid "The port number should be an integer!"
msgstr ""

#: printer/printerdrake.pm:451
#, c-format
msgid "This server is already in the list, it cannot be added again.\n"
msgstr ""

#: printer/printerdrake.pm:462 printer/printerdrake.pm:1951
#: standalone/drakups:251 standalone/harddrake2:52
#, c-format
msgid "Port"
msgstr "Porzh"

#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
#: printer/printerdrake.pm:536
#, c-format
msgid "On, Name or IP of remote server:"
msgstr "Bev, IP pe anv ar servijer a-bell :"

#: printer/printerdrake.pm:514 printer/printerdrake.pm:4406
#: printer/printerdrake.pm:4472
#, c-format
msgid "CUPS server name or IP address missing."
msgstr "Mankout a ra anv ar servijer CUPS pe ar chomlec'h IP."

#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
#: printer/printerdrake.pm:680 printer/printerdrake.pm:746
#: printer/printerdrake.pm:773 printer/printerdrake.pm:832
#: printer/printerdrake.pm:874 printer/printerdrake.pm:884
#: printer/printerdrake.pm:2011 printer/printerdrake.pm:2225
#: printer/printerdrake.pm:2257 printer/printerdrake.pm:2305
#: printer/printerdrake.pm:2357 printer/printerdrake.pm:2374
#: printer/printerdrake.pm:2418 printer/printerdrake.pm:2458
#: printer/printerdrake.pm:2508 printer/printerdrake.pm:2542
#: printer/printerdrake.pm:2552 printer/printerdrake.pm:2804
#: printer/printerdrake.pm:2809 printer/printerdrake.pm:2948
#: printer/printerdrake.pm:3059 printer/printerdrake.pm:3656
#: printer/printerdrake.pm:3722 printer/printerdrake.pm:3771
#: printer/printerdrake.pm:3774 printer/printerdrake.pm:3906
#: printer/printerdrake.pm:4007 printer/printerdrake.pm:4079
#: printer/printerdrake.pm:4100 printer/printerdrake.pm:4110
#: printer/printerdrake.pm:4201 printer/printerdrake.pm:4296
#: printer/printerdrake.pm:4302 printer/printerdrake.pm:4326
#: printer/printerdrake.pm:4433 printer/printerdrake.pm:4542
#: printer/printerdrake.pm:4562 printer/printerdrake.pm:4571
#: printer/printerdrake.pm:4586 printer/printerdrake.pm:4784
#: printer/printerdrake.pm:5236 printer/printerdrake.pm:5313
#: standalone/printerdrake:67 standalone/printerdrake:554
#, c-format
msgid "Printerdrake"
msgstr "Printerdrake"

#: printer/printerdrake.pm:567 printer/printerdrake.pm:4008
#: printer/printerdrake.pm:4543
#, c-format
msgid "Reading printer data..."
msgstr "O lenn roadoù ar moullerezioù ..."

#: printer/printerdrake.pm:587
#, c-format
msgid "Restarting CUPS..."
msgstr "Oc'h adloc'hañ CUPS ..."

#: printer/printerdrake.pm:614 printer/printerdrake.pm:634
#, c-format
msgid "Select Printer Connection"
msgstr "Dibabit lugerezh ar voullerez"

#: printer/printerdrake.pm:615
#, c-format
msgid "How is the printer connected?"
msgstr "Penaos eo luget ar voullerez ?"

#: printer/printerdrake.pm:617
#, c-format
msgid ""
"\n"
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""

#: printer/printerdrake.pm:620 printer/printerdrake.pm:4786
#, c-format
msgid ""
"\n"
"WARNING: No local network connection active, remote printers can neither be "
"detected nor tested!"
msgstr ""

#: printer/printerdrake.pm:627
#, c-format
msgid ""
"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
msgstr ""

#: printer/printerdrake.pm:629
#, c-format
msgid "Modify timeout for network printer auto-detection"
msgstr ""

#: printer/printerdrake.pm:635
#, c-format
msgid "Enter the timeout for network printer auto-detection (in msec) here. "
msgstr ""

#: printer/printerdrake.pm:637
#, c-format
msgid ""
"The longer you choose the timeout, the more reliable the detections of "
"network printers will be, but the scan can take longer then, especially if "
"there are many machines with local firewalls in the network. "
msgstr ""

#: printer/printerdrake.pm:641
#, c-format
msgid "The timeout must be a positive integer number!"
msgstr ""

#: printer/printerdrake.pm:680
#, c-format
msgid "Checking your system..."
msgstr "Emaon o wiriekaat ho reizhiad ..."

#: printer/printerdrake.pm:697
#, c-format
msgid "and one unknown printer"
msgstr "hag unan voullerez dianav"

#: printer/printerdrake.pm:699
#, c-format
msgid "and %d unknown printers"
msgstr "ha %d voullerez dianav"

#: printer/printerdrake.pm:703
#, fuzzy, c-format
msgid ""
"The following printers\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"

#: printer/printerdrake.pm:705
#, fuzzy, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"

#: printer/printerdrake.pm:706
#, fuzzy, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"is directly connected to your system"
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"

#: printer/printerdrake.pm:710
#, c-format
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""

#: printer/printerdrake.pm:711
#, c-format
msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""

#: printer/printerdrake.pm:714
#, c-format
msgid ""
"There are no printers found which are directly connected to your machine"
msgstr ""

#: printer/printerdrake.pm:717
#, fuzzy, c-format
msgid " (Make sure that all your printers are connected and turned on).\n"
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."

#: printer/printerdrake.pm:730
#, c-format
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""

#: printer/printerdrake.pm:731
#, fuzzy, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"

#: printer/printerdrake.pm:733
#, fuzzy, c-format
msgid "Do you want to enable printing on the printers mentioned above?\n"
msgstr "Mennout a rit implijout aboot ?"

#: printer/printerdrake.pm:734
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr ""

#: printer/printerdrake.pm:735
#, c-format
msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""

#: printer/printerdrake.pm:774
#, c-format
msgid "Searching for new printers..."
msgstr "O klask moullerezioù nevez ..."

#: printer/printerdrake.pm:833
#, c-format
msgid "Found printer on %s..."
msgstr "Moullerez kavet ouzh %s ..."

#: printer/printerdrake.pm:858
#, c-format
msgid "("
msgstr "("

#: printer/printerdrake.pm:859
#, c-format
msgid " on "
msgstr " war "

#: printer/printerdrake.pm:860 standalone/scannerdrake:137
#, c-format
msgid ")"
msgstr ")"

#: printer/printerdrake.pm:865 printer/printerdrake.pm:2960
#, c-format
msgid "Printer model selection"
msgstr "Choaz gobari ar voullerez"

#: printer/printerdrake.pm:866 printer/printerdrake.pm:2961
#, c-format
msgid "Which printer model do you have?"
msgstr "Peseurt moullerez hoc'h eus ?"

#: printer/printerdrake.pm:867
#, c-format
msgid ""
"\n"
"\n"
"Printerdrake could not determine which model your printer %s is. Please "
"choose the correct model from the list."
msgstr ""

#: printer/printerdrake.pm:870 printer/printerdrake.pm:2966
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""

#: printer/printerdrake.pm:875
#, c-format
msgid "Configuring printer on %s..."
msgstr "Kefluniañ ar voullerez war %s ..."

#: printer/printerdrake.pm:885 printer/printerdrake.pm:4563
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Kefluniañ ar voullerez « %s » ..."

#: printer/printerdrake.pm:1051 printer/printerdrake.pm:1063
#: printer/printerdrake.pm:1170 printer/printerdrake.pm:2191
#: printer/printerdrake.pm:2206 printer/printerdrake.pm:2276
#: printer/printerdrake.pm:4803 printer/printerdrake.pm:4973
#, c-format
msgid "Add a new printer"
msgstr "Ouzhpennañ ur voullerez nevez"

#: printer/printerdrake.pm:1052
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard allows you to install local or remote printers to be used from "
"this machine and also from other machines in the network.\n"
"\n"
"It asks you for all necessary information to set up the printer and gives "
"you access to all available printer drivers, driver options, and printer "
"connection types."
msgstr ""

#: printer/printerdrake.pm:1065
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"Please plug in and turn on all printers connected to this machine so that it/"
"they can be auto-detected. Also your network printer(s) and your Windows "
"machines must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network and/or Windows-hosted printers when you do not "
"need it.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""

#: printer/printerdrake.pm:1074
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer.\n"
"\n"
"Please plug in and turn on all printers connected to this machine so that it/"
"they can be auto-detected.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""

#: printer/printerdrake.pm:1082
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network printers when you do not need it.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""

#: printer/printerdrake.pm:1091
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
"this computer and turn it/them on so that it/they can be auto-detected.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""

#: printer/printerdrake.pm:1142
#, c-format
msgid "Auto-detect printers connected to this machine"
msgstr ""
"Dinoiñ ent emgefreek ar moullerezioù hag a zo kevreet ouzh an ostiz-mañ"

#: printer/printerdrake.pm:1145
#, c-format
msgid "Auto-detect printers connected directly to the local network"
msgstr ""

#: printer/printerdrake.pm:1148
#, c-format
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""

#: printer/printerdrake.pm:1151
#, c-format
msgid "No auto-detection"
msgstr "Ne dinoit dre ardivink ket"

#: printer/printerdrake.pm:1171
#, c-format
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
"\n"
"You can print using the \"Print\" command of your application (usually in "
"the \"File\" menu).\n"
"\n"
"If you want to add, remove, or rename a printer, or if you want to change "
"the default option settings (paper input tray, printout quality, ...), "
"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
msgstr ""

#: printer/printerdrake.pm:1207 printer/printerdrake.pm:1437
#: printer/printerdrake.pm:1500 printer/printerdrake.pm:1592
#: printer/printerdrake.pm:1730 printer/printerdrake.pm:1806
#: printer/printerdrake.pm:1968 printer/printerdrake.pm:2061
#: printer/printerdrake.pm:2070 printer/printerdrake.pm:2079
#: printer/printerdrake.pm:2090 printer/printerdrake.pm:2231
#: printer/printerdrake.pm:2317 printer/printerdrake.pm:2363
#: printer/printerdrake.pm:2430 printer/printerdrake.pm:2465
#, c-format
msgid "Could not install the %s packages!"
msgstr "Ne m'eus ket staliañ ar pakadoù %s !"

#: printer/printerdrake.pm:1209
#, c-format
msgid "Skipping Windows/SMB server auto-detection"
msgstr ""

#: printer/printerdrake.pm:1215 printer/printerdrake.pm:1360
#: printer/printerdrake.pm:1598 printer/printerdrake.pm:1855
#, c-format
msgid "Printer auto-detection"
msgstr "Dinoiñ dre ardivink moullerezioù"

#: printer/printerdrake.pm:1215
#, c-format
msgid "Detecting devices..."
msgstr "O tinoiñ trobarzhelloù ..."

#: printer/printerdrake.pm:1245
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", moullerez rouedad « %s », porzh %s"

#: printer/printerdrake.pm:1248
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ", moullerez « %s » ouzh ar servijer SMB/Windows « %s »"

#: printer/printerdrake.pm:1252
#, c-format
msgid "Detected %s"
msgstr "%s kavet"

#: printer/printerdrake.pm:1257 printer/printerdrake.pm:1284
#: printer/printerdrake.pm:1302
#, c-format
msgid "Printer on parallel port #%s"
msgstr "Moullerez ouzh ar porzh kenstur #%s"

#: printer/printerdrake.pm:1263
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Moullerez rouedad « %s », porzh %s"

#: printer/printerdrake.pm:1266
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Moullerez « %s » ouzh ar servijer SMB/Windows « %s »"

#: printer/printerdrake.pm:1347
#, c-format
msgid "Local Printer"
msgstr "Moullerez lec'hel"

#: printer/printerdrake.pm:1348
#, c-format
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
"printer: /dev/usb/lp1, ...)."
msgstr ""

#: printer/printerdrake.pm:1352
#, c-format
msgid "You must enter a device or file name!"
msgstr "Ret eo deoc'h reiñ un trobarzhell pe anv ur restr !"

#: printer/printerdrake.pm:1361
#, c-format
msgid "No printer found!"
msgstr "N'eo ket moullerez ebet !"

#: printer/printerdrake.pm:1369
#, c-format
msgid "Local Printers"
msgstr "Moullerezioù lec'hel"

#: printer/printerdrake.pm:1370
#, c-format
msgid "Available printers"
msgstr "Moullerezioù da gaout"

#: printer/printerdrake.pm:1374 printer/printerdrake.pm:1383
#, c-format
msgid "The following printer was auto-detected. "
msgstr "Ar voulerez a-heul a zo kavet dre ardivink."

#: printer/printerdrake.pm:1376
#, c-format
msgid ""
"If it is not the one you want to configure, enter a device name/file name in "
"the input line"
msgstr ""

#: printer/printerdrake.pm:1377
#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr ""

#: printer/printerdrake.pm:1378 printer/printerdrake.pm:1387
#, c-format
msgid "Here is a list of all auto-detected printers. "
msgstr "Setu eo listenn ar voulerezioù kavet dre ardivink holl"

#: printer/printerdrake.pm:1380
#, c-format
msgid ""
"Please choose the printer you want to set up or enter a device name/file "
"name in the input line"
msgstr ""

#: printer/printerdrake.pm:1381
#, c-format
msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr ""

#: printer/printerdrake.pm:1385
#, c-format
msgid ""
"The configuration of the printer will work fully automatically. If your "
"printer was not correctly detected or if you prefer a customized printer "
"configuration, turn on \"Manual configuration\"."
msgstr ""

#: printer/printerdrake.pm:1386
#, c-format
msgid "Currently, no alternative possibility is available"
msgstr ""

#: printer/printerdrake.pm:1389
#, c-format
msgid ""
"Please choose the printer you want to set up. The configuration of the "
"printer will work fully automatically. If your printer was not correctly "
"detected or if you prefer a customized printer configuration, turn on "
"\"Manual configuration\"."
msgstr ""

#: printer/printerdrake.pm:1390
#, fuzzy, c-format
msgid "Please choose the printer to which the print jobs should go."
msgstr "Dibabit ouzh pe voullerez a-steud eo luget ho modem, mar plij."

#: printer/printerdrake.pm:1392
#, c-format
msgid ""
"Please choose the port that your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
"Dibabit ouzh pe borzh a-steud eo luget ho voullerez, mar plij pe roit an anv "
"drobarzhell pe an anv restr e-barzh al linenn urzhiañ"

#: printer/printerdrake.pm:1393
#, c-format
msgid "Please choose the port that your printer is connected to."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho voullerez, mar plij."

#: printer/printerdrake.pm:1395
#, c-format
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""

#: printer/printerdrake.pm:1399
#, c-format
msgid "You must choose/enter a printer/device!"
msgstr "Ret eo deoc'h reiñ un trobarzhell pe ur voullerez !"

#: printer/printerdrake.pm:1439 printer/printerdrake.pm:1502
#: printer/printerdrake.pm:1594 printer/printerdrake.pm:1732
#: printer/printerdrake.pm:1808 printer/printerdrake.pm:1970
#: printer/printerdrake.pm:2063 printer/printerdrake.pm:2072
#: printer/printerdrake.pm:2081 printer/printerdrake.pm:2092
#, c-format
msgid "Aborting"
msgstr "O terriñ"

#: printer/printerdrake.pm:1475
#, c-format
msgid "Remote lpd Printer Options"
msgstr "Dibarzhoù ar voullerez lpd a-bell"

#: printer/printerdrake.pm:1476
#, c-format
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
"A-benn implijout ur servijer moulañ lpd a-bell, ret eo deoc'h pourvezañ anv "
"ostiz ar servijer moullañ hag anv ar voullerez ouzh ar servijer-mañ."

#: printer/printerdrake.pm:1477
#, c-format
msgid "Remote host name"
msgstr "Anv an ostiz a-bell"

#: printer/printerdrake.pm:1478
#, c-format
msgid "Remote printer name"
msgstr "Anv ar voullerez a-bell"

#: printer/printerdrake.pm:1481
#, c-format
msgid "Remote host name missing!"
msgstr "Anv an ostiz a-bell a ra diouer !"

#: printer/printerdrake.pm:1485
#, c-format
msgid "Remote printer name missing!"
msgstr "Anv an ostiz a-bell a ra diouer"

#: printer/printerdrake.pm:1515 printer/printerdrake.pm:1986
#: printer/printerdrake.pm:2111 standalone/drakTermServ:445
#: standalone/drakTermServ:765 standalone/drakTermServ:781
#: standalone/drakTermServ:1520 standalone/drakTermServ:1529
#: standalone/drakTermServ:1541 standalone/drakbackup:499
#: standalone/drakbackup:605 standalone/drakbackup:640
#: standalone/drakbackup:741 standalone/drakroam:390 standalone/harddrake2:258
#, c-format
msgid "Information"
msgstr "Titouroù"

#: printer/printerdrake.pm:1515 printer/printerdrake.pm:1986
#: printer/printerdrake.pm:2111
#, c-format
msgid "Detected model: %s %s"
msgstr "Doare dinoet : %s %s"

#: printer/printerdrake.pm:1598 printer/printerdrake.pm:1855
#, c-format
msgid "Scanning network..."
msgstr "O klask war ar rouedad ..."

#: printer/printerdrake.pm:1610 printer/printerdrake.pm:1631
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ", moullerez « %s » war servijer « %s »"

#: printer/printerdrake.pm:1613 printer/printerdrake.pm:1634
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Moullerez « %s » war servijer « %s »"

#: printer/printerdrake.pm:1655
#, c-format
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dibarzhoù moullañ SMB (Windows 9x/NT)"

#: printer/printerdrake.pm:1656
#, c-format
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
"Evit moullañ war ur voullerez SMB eo ret deoc'h pourvezañ\n"
"anv an ostiz SMB (Ho evezh ! Disheñvel e c'hell bezañ diouzh\n"
"e anv ostiz TCP/IP !) ha marteze chomlec'h IP ar servijer moullañ,\n"
"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
"ditour a anv arveriad, tremenger ha strollad labour en implij."

#: printer/printerdrake.pm:1657
#, c-format
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""

#: printer/printerdrake.pm:1659
#, c-format
msgid "SMB server host"
msgstr "Ostiz ar servijer SMB"

#: printer/printerdrake.pm:1660
#, c-format
msgid "SMB server IP"
msgstr "IP ar servijer SMB"

#: printer/printerdrake.pm:1661
#, c-format
msgid "Share name"
msgstr "Anv rannet"

#: printer/printerdrake.pm:1664
#, c-format
msgid "Workgroup"
msgstr "Strollad labour"

#: printer/printerdrake.pm:1666
#, c-format
msgid "Auto-detected"
msgstr "Kavet dre ardivink"

#: printer/printerdrake.pm:1676
#, c-format
msgid "Either the server name or the server's IP must be given!"
msgstr ""

#: printer/printerdrake.pm:1680
#, c-format
msgid "Samba share name missing!"
msgstr ""

#: printer/printerdrake.pm:1686
#, c-format
msgid "SECURITY WARNING!"
msgstr ""

#: printer/printerdrake.pm:1687
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
"a fault in the architecture of the Samba client software the password is put "
"in clear text into the command line of the Samba client used to transmit the "
"print job to the Windows server. So it is possible for every user on this "
"machine to display the password on the screen by issuing commands as \"ps "
"auxwww\".\n"
"\n"
"We recommend to make use of one of the following alternatives (in all cases "
"you have to make sure that only machines from your local network have access "
"to your Windows server, for example by means of a firewall):\n"
"\n"
"Use a password-less account on your Windows server, as the \"GUEST\" account "
"or a special account dedicated for printing. Do not remove the password "
"protection from a personal account or the administrator account.\n"
"\n"
"Set up your Windows server to make the printer available under the LPD "
"protocol. Then set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:1697
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
"protocol and set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:1700
#, c-format
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""

#: printer/printerdrake.pm:1779
#, c-format
msgid "NetWare Printer Options"
msgstr "Dibarzhoù ar voullerez NetWare"

#: printer/printerdrake.pm:1780
#, c-format
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
"Evit moullañ war ur voullerez NetWare eo ret deoc'h pourvezañ anv ar\n"
"servijer moullañ NetWare (Ho evezh ! Disheñvel e c'hell bezañ diouzh e\n"
"anv ostiz TCP/IP !) kement hag anv ar steud moullañ evit ar voullerez\n"
"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."

#: printer/printerdrake.pm:1781
#, c-format
msgid "Printer Server"
msgstr "Servijer moullañ"

#: printer/printerdrake.pm:1782
#, c-format
msgid "Print Queue Name"
msgstr "Anv ar steud moullañ"

#: printer/printerdrake.pm:1787
#, c-format
msgid "NCP server name missing!"
msgstr ""

#: printer/printerdrake.pm:1791
#, c-format
msgid "NCP queue name missing!"
msgstr ""

#: printer/printerdrake.pm:1867 printer/printerdrake.pm:1888
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", ostiz « %s », porzh %s"

#: printer/printerdrake.pm:1870 printer/printerdrake.pm:1891
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Ostiz « %s », porzh %s"

#: printer/printerdrake.pm:1913
#, c-format
msgid "TCP/Socket Printer Options"
msgstr "Dibarzhoù ar voullerez TCP/Socket"

#: printer/printerdrake.pm:1915
#, c-format
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) in the input fields."
msgstr ""

#: printer/printerdrake.pm:1916
#, c-format
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""

#: printer/printerdrake.pm:1920
#, c-format
msgid "Printer host name or IP missing!"
msgstr "Mankout a ra anv ostiz ar voullerez pe an IP !"

#: printer/printerdrake.pm:1949
#, c-format
msgid "Printer host name or IP"
msgstr "Anv pe IP an oztiz ar voullerez"

#: printer/printerdrake.pm:2012
#, c-format
msgid "Refreshing Device URI list..."
msgstr "O adtresañ roll URI an trobarzhelloù ..."

#: printer/printerdrake.pm:2015 printer/printerdrake.pm:2017
#, c-format
msgid "Printer Device URI"
msgstr "URI ar drobarzhell ar voullerez"

#: printer/printerdrake.pm:2016
#, c-format
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""

#: printer/printerdrake.pm:2042
#, c-format
msgid "A valid URI must be entered!"
msgstr ""

#: printer/printerdrake.pm:2147
#, c-format
msgid "Pipe into command"
msgstr ""

#: printer/printerdrake.pm:2148
#, c-format
msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""

#: printer/printerdrake.pm:2149
#, c-format
msgid "Command line"
msgstr "Linenn urzhiañ"

#: printer/printerdrake.pm:2153
#, c-format
msgid "A command line must be entered!"
msgstr ""

#: printer/printerdrake.pm:2192
#, c-format
msgid ""
"On many HP printers there are special functions available, maintenance (ink "
"level checking, nozzle cleaning. head alignment, ...) on all not too old "
"inkjets, scanning on multi-function devices, and memory card access on "
"printers with card readers. "
msgstr ""

#: printer/printerdrake.pm:2194
#, c-format
msgid ""
"To access these extra functions on your HP printer, it must be set up with "
"the appropriate software: "
msgstr ""

#: printer/printerdrake.pm:2195
#, c-format
msgid ""
"Either with the newer HPLIP which allows printer maintenance through the "
"easy-to-use graphical application \"Toolbox\" and four-edge full-bleed on "
"newer PhotoSmart models "
msgstr ""

#: printer/printerdrake.pm:2196
#, c-format
msgid ""
"or with the older HPOJ which allows only scanner and memory card access, but "
"could help you in case of failure of HPLIP. "
msgstr ""

#: printer/printerdrake.pm:2198
#, c-format
msgid "What is your choice (choose \"None\" for non-HP printers)? "
msgstr ""

#: printer/printerdrake.pm:2199 printer/printerdrake.pm:2200
#: printer/printerdrake.pm:2226 printer/printerdrake.pm:2232
#: printer/printerdrake.pm:2258
#, c-format
msgid "HPLIP"
msgstr ""

#: printer/printerdrake.pm:2199 printer/printerdrake.pm:2202
#: printer/printerdrake.pm:2358 printer/printerdrake.pm:2364
#: printer/printerdrake.pm:2375
#, c-format
msgid "HPOJ"
msgstr ""

#: printer/printerdrake.pm:2207
#, c-format
msgid ""
"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
"LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, Sony "
"IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
msgstr ""

#: printer/printerdrake.pm:2226 printer/printerdrake.pm:2358
#, c-format
msgid "Installing %s package..."
msgstr "O staliañ pakad %s ..."

#: printer/printerdrake.pm:2233 printer/printerdrake.pm:2365
#, c-format
msgid "Only printing will be possible on the %s."
msgstr ""

#: printer/printerdrake.pm:2248
#, c-format
msgid "Could not remove your old HPOJ configuration file %s for your %s! "
msgstr ""

#: printer/printerdrake.pm:2250
#, c-format
msgid "Please remove the file manually and restart HPOJ."
msgstr ""

#: printer/printerdrake.pm:2258 printer/printerdrake.pm:2375
#, c-format
msgid "Checking device and configuring %s..."
msgstr ""

#: printer/printerdrake.pm:2277
#, c-format
msgid "Which printer do you want to set up with HPLIP?"
msgstr "Da beseurt moullerez e mennit kefluniañ gant HPLIP ?"

#: printer/printerdrake.pm:2306 printer/printerdrake.pm:2419
#, c-format
msgid "Installing SANE packages..."
msgstr "O staliañ pakadoù SANE ..."

#: printer/printerdrake.pm:2319 printer/printerdrake.pm:2432
#, c-format
msgid "Scanning on the %s will not be possible."
msgstr ""

#: printer/printerdrake.pm:2334
#, c-format
msgid "Using and Maintaining your %s"
msgstr ""

#: printer/printerdrake.pm:2459
#, c-format
msgid "Installing mtools packages..."
msgstr "O staliañ pakad mtools ..."

#: printer/printerdrake.pm:2467
#, c-format
msgid "Photo memory card access on the %s will not be possible."
msgstr ""

#: printer/printerdrake.pm:2483
#, c-format
msgid "Scanning on your HP multi-function device"
msgstr ""

#: printer/printerdrake.pm:2492
#, c-format
msgid "Photo memory card access on your HP multi-function device"
msgstr ""

#: printer/printerdrake.pm:2509
#, c-format
msgid "Configuring device..."
msgstr "O kefluniañ an drobarzhell ..."

#: printer/printerdrake.pm:2543
#, c-format
msgid "Making printer port available for CUPS..."
msgstr ""

#: printer/printerdrake.pm:2552 printer/printerdrake.pm:2805
#: printer/printerdrake.pm:2949
#, c-format
msgid "Reading printer database..."
msgstr "O lenn stlennvon ar moullerezioù ..."

#: printer/printerdrake.pm:2763
#, c-format
msgid "Enter Printer Name and Comments"
msgstr "Roit anv hag askelenn ar voullerez"

#: printer/printerdrake.pm:2767 printer/printerdrake.pm:4064
#, c-format
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""

#: printer/printerdrake.pm:2773 printer/printerdrake.pm:4069
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""

#: printer/printerdrake.pm:2780
#, c-format
msgid ""
"The printer name \"%s\" has more than 12 characters which can make the "
"printer unaccessible from Windows clients. Do you really want to use this "
"name?"
msgstr ""

#: printer/printerdrake.pm:2789
#, c-format
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""

#: printer/printerdrake.pm:2790
#, c-format
msgid "Name of printer"
msgstr "Anv ar voullerez"

#: printer/printerdrake.pm:2791 standalone/drakconnect:592
#: standalone/harddrake2:39 standalone/printerdrake:211
#: standalone/printerdrake:218
#, c-format
msgid "Description"
msgstr "Deskrivadur"

#: printer/printerdrake.pm:2792 standalone/printerdrake:211
#: standalone/printerdrake:218
#, c-format
msgid "Location"
msgstr "Lec'hel"

#: printer/printerdrake.pm:2810
#, c-format
msgid "Preparing printer database..."
msgstr "O prientiñ ar stlennvon ar moullerezioù ..."

#: printer/printerdrake.pm:2927
#, c-format
msgid "Your printer model"
msgstr "Gobari ar voullerez"

#: printer/printerdrake.pm:2928
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
"detection with the models listed in its printer database to find the best "
"match. This choice can be wrong, especially when your printer is not listed "
"at all in the database. So check whether the choice is correct and click "
"\"The model is correct\" if so and if not, click \"Select model manually\" "
"so that you can choose your printer model manually on the next screen.\n"
"\n"
"For your printer Printerdrake has found:\n"
"\n"
"%s"
msgstr ""

#: printer/printerdrake.pm:2933 printer/printerdrake.pm:2936
#, c-format
msgid "The model is correct"
msgstr "Mad eo ar gobari."

#: printer/printerdrake.pm:2934 printer/printerdrake.pm:2935
#: printer/printerdrake.pm:2938
#, c-format
msgid "Select model manually"
msgstr "Dibabit ar gobari diwar zorn"

#: printer/printerdrake.pm:2962
#, c-format
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
"model correctly. Find the correct model in the list when a wrong model or "
"\"Raw printer\" is highlighted."
msgstr ""

#: printer/printerdrake.pm:2981
#, c-format
msgid "Install a manufacturer-supplied PPD file"
msgstr ""

#: printer/printerdrake.pm:3013
#, c-format
msgid ""
"Every PostScript printer is delivered with a PPD file which describes the "
"printer's options and features."
msgstr ""

#: printer/printerdrake.pm:3014
#, c-format
msgid ""
"This file is usually somewhere on the CD with the Windows and Mac drivers "
"delivered with the printer."
msgstr ""

#: printer/printerdrake.pm:3015
#, c-format
msgid "You can find the PPD files also on the manufacturer's web sites."
msgstr ""

#: printer/printerdrake.pm:3016
#, c-format
msgid ""
"If you have Windows installed on your machine, you can find the PPD file on "
"your Windows partition, too."
msgstr ""

#: printer/printerdrake.pm:3017
#, c-format
msgid ""
"Installing the printer's PPD file and using it when setting up the printer "
"makes all options of the printer available which are provided by the "
"printer's hardware"
msgstr ""

#: printer/printerdrake.pm:3018
#, c-format
msgid ""
"Here you can choose the PPD file to be installed on your machine, it will "
"then be used for the setup of your printer."
msgstr ""

#: printer/printerdrake.pm:3020
#, c-format
msgid "Install PPD file from"
msgstr "Staliañ ar restr PPD eus"

#: printer/printerdrake.pm:3023 printer/printerdrake.pm:3031
#: standalone/scannerdrake:183 standalone/scannerdrake:192
#: standalone/scannerdrake:242 standalone/scannerdrake:250
#, c-format
msgid "Floppy Disk"
msgstr "Bladennig"

#: printer/printerdrake.pm:3024 printer/printerdrake.pm:3033
#: standalone/scannerdrake:184 standalone/scannerdrake:194
#: standalone/scannerdrake:243 standalone/scannerdrake:252
#, c-format
msgid "Other place"
msgstr "Lec'hiadur all"

#: printer/printerdrake.pm:3039
#, c-format
msgid "Select PPD file"
msgstr "Dibabit ar restr PPD"

#: printer/printerdrake.pm:3043
#, c-format
msgid "The PPD file %s does not exist or is unreadable!"
msgstr ""

#: printer/printerdrake.pm:3049
#, c-format
msgid "The PPD file %s does not conform with the PPD specifications!"
msgstr ""

#: printer/printerdrake.pm:3060
#, c-format
msgid "Installing PPD file..."
msgstr "O staliañ ar restr PPD ..."

#: printer/printerdrake.pm:3178
#, c-format
msgid "OKI winprinter configuration"
msgstr "Kefluniadur ar voullerez Win OKI"

#: printer/printerdrake.pm:3179
#, c-format
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
"connected to the first parallel port. When your printer is connected to "
"another port or to a print server box please connect the printer to the "
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""

#: printer/printerdrake.pm:3204 printer/printerdrake.pm:3234
#, c-format
msgid "Lexmark inkjet configuration"
msgstr "Kefluniadur Lexmark inkjet"

#: printer/printerdrake.pm:3205
#, c-format
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
"printer to a local port or configure it on the machine where it is connected "
"to."
msgstr ""

#: printer/printerdrake.pm:3235
#, c-format
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
"\"Linux\" as operating system. The drivers come as RPM packages or shell "
"scripts with interactive graphical installation. You do not need to do this "
"configuration by the graphical frontends. Cancel directly after the license "
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""

#: printer/printerdrake.pm:3245
#, c-format
msgid "Lexmark X125 configuration"
msgstr "Kefluniadur ar voullerez Lexmark X125"

#: printer/printerdrake.pm:3246
#, c-format
msgid ""
"The driver for this printer only supports printers locally connected via "
"USB, no printers on remote machines or print server boxes. Please connect "
"your printer to a local USB port or configure it on the machine where it is "
"connected to."
msgstr ""

#: printer/printerdrake.pm:3268
#, c-format
msgid "Samsung ML/QL-85G configuration"
msgstr "Kefluniadur ar voullerez Samsung ML/QL-85G"

#: printer/printerdrake.pm:3269 printer/printerdrake.pm:3296
#, c-format
msgid ""
"The driver for this printer only supports printers locally connected on the "
"first parallel port, no printers on remote machines or print server boxes or "
"on other parallel ports. Please connect your printer to the first parallel "
"port or configure it on the machine where it is connected to."
msgstr ""

#: printer/printerdrake.pm:3295
#, c-format
msgid "Canon LBP-460/660 configuration"
msgstr "Kefluniadur ar voullerez Canon LBP-460/660"

#: printer/printerdrake.pm:3314
#, c-format
msgid "Firmware-Upload for HP LaserJet 1000"
msgstr ""

#: printer/printerdrake.pm:3464
#, c-format
msgid ""
"Printer default settings\n"
"\n"
"You should make sure that the page size and the ink type/printing mode (if "
"available) and also the hardware configuration of laser printers (memory, "
"duplex unit, extra trays) are set correctly. Note that with a very high "
"printout quality/resolution printing can get substantially slower."
msgstr ""

#: printer/printerdrake.pm:3589
#, c-format
msgid "Printer default settings"
msgstr "Kefluniadur dre ziouer ar voullerez"

#: printer/printerdrake.pm:3596
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""

#: printer/printerdrake.pm:3600
#, c-format
msgid "Option %s must be a number!"
msgstr ""

#: printer/printerdrake.pm:3604
#, c-format
msgid "Option %s out of range!"
msgstr ""

#: printer/printerdrake.pm:3656
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"

#: printer/printerdrake.pm:3672
#, c-format
msgid "Test pages"
msgstr "Pajennoù arnod"

#: printer/printerdrake.pm:3673
#, c-format
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
"laser printers with too low memory it can even not come out. In most cases "
"it is enough to print the standard test page."
msgstr ""

#: printer/printerdrake.pm:3677
#, c-format
msgid "No test pages"
msgstr "N'eus pajenn arnod ebet"

#: printer/printerdrake.pm:3678
#, c-format
msgid "Print"
msgstr "Moulañ"

#: printer/printerdrake.pm:3703
#, c-format
msgid "Standard test page"
msgstr "Pajenn arnod reoliek"

#: printer/printerdrake.pm:3706
#, c-format
msgid "Alternative test page (Letter)"
msgstr "Pajenn arnod all (Lizher)"

#: printer/printerdrake.pm:3709
#, c-format
msgid "Alternative test page (A4)"
msgstr "Pajenn arnod all (A4)"

#: printer/printerdrake.pm:3711
#, c-format
msgid "Photo test page"
msgstr "Pajenn arnod foto"

#: printer/printerdrake.pm:3715
#, c-format
msgid "Do not print any test page"
msgstr "Ne voullit ket ar bajenn arnod"

#: printer/printerdrake.pm:3723 printer/printerdrake.pm:3907
#, c-format
msgid "Printing test page(s)..."
msgstr "O voullañ pajenn(où) arnod ..."

#: printer/printerdrake.pm:3743
#, fuzzy, c-format
msgid "Skipping photo test page."
msgstr "O voullañ pajenn(où) skrid ..."

#: printer/printerdrake.pm:3760
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
"Printing status:\n"
"%s\n"
"\n"
msgstr ""
"Pajenn(où) arnod a zo bet kaset d'ar voullerez.\n"
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Stad ar moullañ :\n"
"%s\n"
"\n"

#: printer/printerdrake.pm:3764
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
"Pajenn(où) arnod a zo bet kaset d'ar moullerez.\n"
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"

#: printer/printerdrake.pm:3774
#, c-format
msgid "Did it work properly?"
msgstr "Ha mont a ra en-dro reizh ?"

#: printer/printerdrake.pm:3798 printer/printerdrake.pm:5175
#, c-format
msgid "Raw printer"
msgstr "Moullerez diaoz"

#: printer/printerdrake.pm:3836
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
"to modify the option settings easily.\n"
msgstr ""

#: printer/printerdrake.pm:3838
#, c-format
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""

#: printer/printerdrake.pm:3841 printer/printerdrake.pm:3858
#: printer/printerdrake.pm:3868
#, c-format
msgid ""
"\n"
"The \"%s\" command also allows to modify the option settings for a "
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""

#: printer/printerdrake.pm:3844 printer/printerdrake.pm:3884
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s%s\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:3848
#, c-format
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:3853 printer/printerdrake.pm:3863
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""

#: printer/printerdrake.pm:3855 printer/printerdrake.pm:3865
#: printer/printerdrake.pm:3875
#, c-format
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""

#: printer/printerdrake.pm:3860 printer/printerdrake.pm:3870
#, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""

#: printer/printerdrake.pm:3873
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""

#: printer/printerdrake.pm:3877
#, c-format
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
"If you are using KDE as desktop environment you have a \"panic button\", an "
"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""

#: printer/printerdrake.pm:3881
#, c-format
msgid ""
"\n"
"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""

#: printer/printerdrake.pm:3891
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "O tizenaouiñ ar rouedad"

#: printer/printerdrake.pm:3892
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "O tizenaouiñ ar rouedad"

#: printer/printerdrake.pm:3894
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "O tizenaouiñ ar rouedad"

#: printer/printerdrake.pm:3896
#, fuzzy, c-format
msgid "Using/Maintaining the printer \"%s\""
msgstr "Emaon o moulañ gant ar voullerez « %s »"

#: printer/printerdrake.pm:3897
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Emaon o moulañ gant ar voullerez « %s »"

#: printer/printerdrake.pm:3903
#, c-format
msgid "Print option list"
msgstr "Roll dibarzhoù ar voullerez"

#: printer/printerdrake.pm:3925
#, c-format
msgid ""
"Your %s is set up with HP's HPLIP driver software. This way many special "
"features of your printer are supported.\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:3928
#, c-format
msgid ""
"The scanner in your printer can be used with the usual SANE software, for "
"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
msgstr ""

#: printer/printerdrake.pm:3929
#, c-format
msgid ""
"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
"share your scanner on the network.\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:3933
#, c-format
msgid ""
"The memory card readers in your printer can be accessed like a usual USB "
"mass storage device. "
msgstr ""

#: printer/printerdrake.pm:3934
#, c-format
msgid ""
"After inserting a card a hard disk icon to access the card should appear on "
"your desktop.\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:3936
#, c-format
msgid ""
"The memory card readers in your printer can be accessed using HP's Printer "
"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
"Photo Cards...\" button on the \"Functions\" tab. "
msgstr ""

#: printer/printerdrake.pm:3937
#, c-format
msgid ""
"Note that this is very slow, reading the pictures from the camera or a USB "
"card reader is usually faster.\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:3940
#, c-format
msgid ""
"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
"lot of status monitoring and maintenance functions for your %s:\n"
"\n"
msgstr ""

#: printer/printerdrake.pm:3941
#, c-format
msgid " - Ink level/status info\n"
msgstr ""

#: printer/printerdrake.pm:3942
#, c-format
msgid " - Ink nozzle cleaning\n"
msgstr ""

#: printer/printerdrake.pm:3943
#, c-format
msgid " - Print head alignment\n"
msgstr ""

#: printer/printerdrake.pm:3944
#, fuzzy, c-format
msgid " - Color calibration\n"
msgstr "Kefluniañ ar Livioù"

#: printer/printerdrake.pm:3959
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
"information.\n"
"\n"
"You do not need to run \"scannerdrake\" for setting up scanning on this "
"device, you only need to use \"scannerdrake\" if you want to share the "
"scanner on the network."
msgstr ""

#: printer/printerdrake.pm:3985
#, c-format
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
"\"man mtools\" on the command line for more info). You find the card's file "
"system under the drive letter \"p:\", or subsequent drive letters when you "
"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""

#: printer/printerdrake.pm:4028 printer/printerdrake.pm:4055
#: printer/printerdrake.pm:4090
#, fuzzy, c-format
msgid "Transfer printer configuration"
msgstr "Kefluniañ ar proksioù"

#: printer/printerdrake.pm:4029
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
"s to %s, your current spooler. All the configuration data (printer name, "
"description, location, connection type, and default option settings) is "
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""

#: printer/printerdrake.pm:4032
#, c-format
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""

#: printer/printerdrake.pm:4034
#, c-format
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""

#: printer/printerdrake.pm:4036
#, c-format
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""

#: printer/printerdrake.pm:4038
#, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""

#: printer/printerdrake.pm:4039
#, c-format
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""

#: printer/printerdrake.pm:4040
#, c-format
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""

#: printer/printerdrake.pm:4043
#, c-format
msgid "Do not transfer printers"
msgstr ""

#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4060
#, c-format
msgid "Transfer"
msgstr ""

#: printer/printerdrake.pm:4056
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""

#: printer/printerdrake.pm:4077
#, c-format
msgid "New printer name"
msgstr "Anv nevez ar voullerez"

#: printer/printerdrake.pm:4080
#, c-format
msgid "Transferring %s..."
msgstr ""

#: printer/printerdrake.pm:4091
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""

#: printer/printerdrake.pm:4101
#, c-format
msgid "Refreshing printer data..."
msgstr ""

#: printer/printerdrake.pm:4111
#, c-format
msgid "Starting network..."
msgstr "O kregiñ ar rouedad ..."

#: printer/printerdrake.pm:4155 printer/printerdrake.pm:4159
#: printer/printerdrake.pm:4161
#, c-format
msgid "Configure the network now"
msgstr "Kefluniañ ar rouedad bremañ"

#: printer/printerdrake.pm:4156
#, c-format
msgid "Network functionality not configured"
msgstr "N'eo ket kefluniet ar rouedad"

#: printer/printerdrake.pm:4157
#, c-format
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""

#: printer/printerdrake.pm:4160
#, c-format
msgid "Go on without configuring the network"
msgstr "Kenderc'hel hep kefluniañ ar rouedad"

#: printer/printerdrake.pm:4191
#, c-format
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network is accessible after booting your "
"system and correct the configuration using the %s Control Center, section "
"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
"also using the %s Control Center, section \"Hardware\"/\"Printer\""
msgstr ""

#: printer/printerdrake.pm:4192
#, c-format
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""

# to enhance :-(
#: printer/printerdrake.pm:4202
#, c-format
msgid "Restarting printing system..."
msgstr "Oc'h adkregiñ ar reizhiad moullañ ..."

#: printer/printerdrake.pm:4233
#, c-format
msgid "high"
msgstr "uhel"

#: printer/printerdrake.pm:4233
#, c-format
msgid "paranoid"
msgstr "ankeniet"

#: printer/printerdrake.pm:4235
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""

#: printer/printerdrake.pm:4236
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
"s security level.\n"
"\n"
"This printing system runs a daemon (background process) which waits for "
"print jobs and handles them. This daemon is also accessible by remote "
"machines through the network and so it is a possible point for attacks. "
"Therefore only a few selected daemons are started by default in this "
"security level.\n"
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""

#: printer/printerdrake.pm:4272
#, c-format
msgid "Starting the printing system at boot time"
msgstr "Lañsañ ar reizhiad moullañ pa loc'hañ"

#: printer/printerdrake.pm:4273
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
"is booted.\n"
"\n"
"It is possible that the automatic starting was turned off by changing to a "
"higher security level, because the printing system is a potential point for "
"attacks.\n"
"\n"
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""

#: printer/printerdrake.pm:4296
#, c-format
msgid "Checking installed software..."
msgstr ""

#: printer/printerdrake.pm:4302
#, c-format
msgid "Removing %s..."
msgstr "Lemel %s ..."

#: printer/printerdrake.pm:4306
#, c-format
msgid "Could not remove the %s printing system!"
msgstr "Ne m'eus ket lemel ar reizhiad moullañ %s !"

#: printer/printerdrake.pm:4326
#, c-format
msgid "Installing %s..."
msgstr "O staliañ %s ..."

#: printer/printerdrake.pm:4330
#, c-format
msgid "Could not install the %s printing system!"
msgstr "Ne m'eus ket staliañ ar reizhiad moullañ %s !"

#: printer/printerdrake.pm:4398
#, c-format
msgid ""
"In this mode there is no local printing system, all printing requests go "
"directly to the server specified below. Note that it is not possible to "
"define local print queues then and if the specified server is down it cannot "
"be printed at all from this machine."
msgstr ""

#: printer/printerdrake.pm:4400
#, c-format
msgid ""
"Enter the host name or IP of your CUPS server and click OK if you want to "
"use this mode, click \"Quit\" otherwise."
msgstr ""

#: printer/printerdrake.pm:4414
#, c-format
msgid "Name or IP of remote server:"
msgstr "Anv pe IP an oztiz ar servijer a-bell :"

#: printer/printerdrake.pm:4434
#, c-format
msgid "Setting Default Printer..."
msgstr "O lakaat ar voullerez dre ziouer ..."

#: printer/printerdrake.pm:4454
#, c-format
msgid "Local CUPS printing system or remote CUPS server?"
msgstr "Reizhiad moullañ CUPS lec'hel pe servijer CUPS a-bell ? "

#: printer/printerdrake.pm:4455
#, c-format
msgid "The CUPS printing system can be used in two ways: "
msgstr ""

#: printer/printerdrake.pm:4457
#, c-format
msgid "1. The CUPS printing system can run locally. "
msgstr ""

#: printer/printerdrake.pm:4458
#, c-format
msgid ""
"Then locally connected printers can be used and remote printers on other "
"CUPS servers in the same network are automatically discovered. "
msgstr ""

#: printer/printerdrake.pm:4459
#, c-format
msgid ""
"Disadvantage of this approach is, that more resources on the local machine "
"are needed: Additional software packages need to be installed, the CUPS "
"daemon has to run in the background and needs some memory, and the IPP port "
"(port 631) is opened. "
msgstr ""

#: printer/printerdrake.pm:4461
#, c-format
msgid "2. All printing requests are immediately sent to a remote CUPS server. "
msgstr ""

#: printer/printerdrake.pm:4462
#, c-format
msgid ""
"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
"started or port opened, no software infrastructure for setting up local "
"print queues is installed, so less memory and disk space is used. "
msgstr ""

#: printer/printerdrake.pm:4463
#, c-format
msgid ""
"Disadvantage is that it is not possible to define local printers then and if "
"the specified server is down it cannot be printed at all from this machine. "
msgstr ""

#: printer/printerdrake.pm:4465
#, c-format
msgid "How should CUPS be set up on your machine?"
msgstr ""

#: printer/printerdrake.pm:4469 printer/printerdrake.pm:4484
#: printer/printerdrake.pm:4488 printer/printerdrake.pm:4494
#, c-format
msgid "Remote server, specify Name or IP here:"
msgstr ""

#: printer/printerdrake.pm:4483
#, c-format
msgid "Local CUPS printing system"
msgstr "Reizhiad moullañ CUPS lec'hel"

#: printer/printerdrake.pm:4522
#, c-format
msgid "Select Printer Spooler"
msgstr "Dibabit lost ar voullerez"

#: printer/printerdrake.pm:4523
#, c-format
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pe seurt reizhiad moullañ (lost) a vennit da implij ?"

#: printer/printerdrake.pm:4572
#, c-format
msgid "Failed to configure printer \"%s\"!"
msgstr "Ne m'eus ket kefluniañ ar voullerez « %s » !"

#: printer/printerdrake.pm:4587
#, c-format
msgid "Installing Foomatic..."
msgstr "O staliañ Foomatik ..."

#: printer/printerdrake.pm:4593
#, c-format
msgid "Could not install %s packages, %s cannot be started!"
msgstr "Ne m'eus ket staliañ ar pakadoù %s, ne m'eus ket lañsañ %s !"

#: printer/printerdrake.pm:4785
#, fuzzy, c-format
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it. "
msgstr ""
"Setu da heul ar steudadoù moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."

#: printer/printerdrake.pm:4815
#, c-format
msgid "Display all available remote CUPS printers"
msgstr ""

#: printer/printerdrake.pm:4816
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""

#: printer/printerdrake.pm:4827
#, c-format
msgid "CUPS configuration"
msgstr "Kefluniadur CUPS"

#: printer/printerdrake.pm:4839
#, c-format
msgid "Change the printing system"
msgstr "Kemmaañ ar reizhiad moullañ"

#: printer/printerdrake.pm:4848
#, c-format
msgid "Normal Mode"
msgstr "Mod boas"

#: printer/printerdrake.pm:4849
#, c-format
msgid "Expert Mode"
msgstr "Mod mailh"

#: printer/printerdrake.pm:5118 printer/printerdrake.pm:5176
#: printer/printerdrake.pm:5255 printer/printerdrake.pm:5264
#, c-format
msgid "Printer options"
msgstr "Dibarzhoù ar voullerez"

#: printer/printerdrake.pm:5154
#, c-format
msgid "Modify printer configuration"
msgstr "Kemmañ kefluniadur ar voullerez"

#: printer/printerdrake.pm:5156
#, c-format
msgid ""
"Printer %s%s\n"
"What do you want to modify on this printer?"
msgstr ""
"Moullerez %s%s\n"
"Petra a fell dit kemmañ anezhi ?"

#: printer/printerdrake.pm:5161
#, c-format
msgid "This printer is disabled"
msgstr "Marv eo ar voullerez-mañ"

#: printer/printerdrake.pm:5163
#, c-format
msgid "Do it!"
msgstr "Ober a rit !"

#: printer/printerdrake.pm:5168 printer/printerdrake.pm:5223
#, c-format
msgid "Printer connection type"
msgstr "Seurt kevreadenn ar voullerez"

#: printer/printerdrake.pm:5169 printer/printerdrake.pm:5229
#, c-format
msgid "Printer name, description, location"
msgstr "Anv ar voullerez, deskrivadur ha lec'hiadur"

#: printer/printerdrake.pm:5171 printer/printerdrake.pm:5248
#, c-format
msgid "Printer manufacturer, model, driver"
msgstr ""

#: printer/printerdrake.pm:5172 printer/printerdrake.pm:5249
#, c-format
msgid "Printer manufacturer, model"
msgstr ""

#: printer/printerdrake.pm:5178 printer/printerdrake.pm:5259
#, c-format
msgid "Set this printer as the default"
msgstr "Lakaat ar voullerez-mañ dre ziouer"

#: printer/printerdrake.pm:5183 printer/printerdrake.pm:5265
#: printer/printerdrake.pm:5267
#, c-format
msgid "Enable Printer"
msgstr "Bevaat ar voullerez"

#: printer/printerdrake.pm:5186 printer/printerdrake.pm:5270
#: printer/printerdrake.pm:5272
#, c-format
msgid "Disable Printer"
msgstr "Marvaat ar voullerez"

#: printer/printerdrake.pm:5187 printer/printerdrake.pm:5275
#, c-format
msgid "Print test pages"
msgstr "Moullañ ar pajennoù arnod"

#: printer/printerdrake.pm:5188 printer/printerdrake.pm:5277
#, fuzzy, c-format
msgid "Learn how to use this printer"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"

#: printer/printerdrake.pm:5189 printer/printerdrake.pm:5279
#, c-format
msgid "Remove printer"
msgstr "Lemel ar voullerez"

#: printer/printerdrake.pm:5237
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Lemel ar voullerez gozh « %s » ..."

#: printer/printerdrake.pm:5268
#, c-format
msgid "Printer \"%s\" is now enabled."
msgstr "Bev eo ar voullerez « %s » bremañ ..."

#: printer/printerdrake.pm:5273
#, c-format
msgid "Printer \"%s\" is now disabled."
msgstr "N'eo ket bev eo ar voullerez « %s » bremañ ..."

#: printer/printerdrake.pm:5310
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ha fellout a ra deoc'h da vat lemel ar voullerez « %s » ?"

#: printer/printerdrake.pm:5314
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Emaon o dilemel ar voullerez « %s » ..."

#: printer/printerdrake.pm:5338
#, c-format
msgid "Default printer"
msgstr "Moullerez dre ziouer"

#: printer/printerdrake.pm:5339
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""

#: raid.pm:41
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "N'hellan ket ouzhpennañ ur parzhadur da RAID %s _furmadet_"

#: raid.pm:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "N'eus ket a-walc'h a parzhadurioù evit RAID live %d\n"

#: scanner.pm:96
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "N'hellan ket krouiñ ar renkell /usr/share/sane/firmware !"

#: scanner.pm:107
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "N'hellan ket krouiñ al liamm /usr/share/sane/%s !"

#: scanner.pm:114
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
"N'hellan ket eilañ ar restr meriant %s e-barzh /usr/share/sane/firmware !"

#: scanner.pm:121
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr ""

#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
#: standalone/scannerdrake:78 standalone/scannerdrake:346
#: standalone/scannerdrake:382 standalone/scannerdrake:446
#: standalone/scannerdrake:490 standalone/scannerdrake:494
#: standalone/scannerdrake:516 standalone/scannerdrake:581
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"

#: scanner.pm:201 standalone/scannerdrake:947
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""

#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""

#: security/help.pm:11
#, c-format
msgid "Accept/Refuse bogus IPv4 error messages."
msgstr ""

#: security/help.pm:13
#, c-format
msgid " Accept/Refuse broadcasted icmp echo."
msgstr ""

#: security/help.pm:15
#, c-format
msgid " Accept/Refuse icmp echo."
msgstr ""

#: security/help.pm:17
#, c-format
msgid "Allow/Forbid autologin."
msgstr "Bevaat/Marvaat emereañ."

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to NONE, no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""

#: security/help.pm:27
#, c-format
msgid "Allow/Forbid reboot by the console user."
msgstr ""

#: security/help.pm:29
#, c-format
msgid "Allow/Forbid remote root login."
msgstr "Bevaat/Marvaat ereañ a-bell gant root."

#: security/help.pm:31
#, c-format
msgid "Allow/Forbid direct root login."
msgstr ""

#: security/help.pm:33
#, c-format
msgid ""
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
msgstr ""

#: security/help.pm:35
#, c-format
msgid ""
"Allow/forbid to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""

#: security/help.pm:40
#, c-format
msgid ""
"Allow/Forbid X connections:\n"
"\n"
"- ALL (all connections are allowed),\n"
"\n"
"- LOCAL (only connection from local machine),\n"
"\n"
"- NONE (no connection)."
msgstr ""

#: security/help.pm:48
#, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr ""

#. -PO: here "ALL", "LOCAL" and "NONE" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"LOCAL\"\n"
"\n"
"- none if set to \"NONE\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""

#: security/help.pm:63
#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""

#: security/help.pm:72
#, c-format
msgid ""
"Enable/Disable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr ""

#: security/help.pm:77
#, c-format
msgid "Enable/Disable syslog reports to console 12"
msgstr ""

#: security/help.pm:79
#, c-format
msgid ""
"Enable/Disable name resolution spoofing protection.  If\n"
"\"%s\" is true, also reports to syslog."
msgstr ""

#: security/help.pm:80 standalone/draksec:213
#, c-format
msgid "Security Alerts:"
msgstr "Posteloù surantez :"

#: security/help.pm:82
#, c-format
msgid "Enable/Disable IP spoofing protection."
msgstr ""

#: security/help.pm:84
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
msgstr ""

#: security/help.pm:86
#, c-format
msgid "Enable/Disable the logging of IPv4 strange packets."
msgstr ""

#: security/help.pm:88
#, c-format
msgid "Enable/Disable msec hourly security check."
msgstr ""

#: security/help.pm:90
#, c-format
msgid ""
" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""

#: security/help.pm:92
#, c-format
msgid "Use password to authenticate users."
msgstr ""

#: security/help.pm:94
#, c-format
msgid "Activate/Disable ethernet cards promiscuity check."
msgstr ""

#: security/help.pm:96
#, c-format
msgid " Activate/Disable daily security check."
msgstr ""

#: security/help.pm:98
#, c-format
msgid " Enable/Disable sulogin(8) in single user level."
msgstr ""

#: security/help.pm:100
#, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
msgstr ""

#: security/help.pm:102
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""

#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
msgstr ""

#: security/help.pm:106
#, c-format
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""

#: security/help.pm:108
#, c-format
msgid "Set the root umask."
msgstr "Lakaat an umask gwrizienn."

#: security/help.pm:109
#, c-format
msgid "if set to yes, check open ports."
msgstr ""

#: security/help.pm:110
#, c-format
msgid ""
"if set to yes, check for:\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""

#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""

#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""

#: security/help.pm:119
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr ""

#: security/help.pm:120
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr ""

#: security/help.pm:121
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr ""

#: security/help.pm:122
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""

#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""

#: security/help.pm:124
#, c-format
msgid "if set to yes, report unowned files."
msgstr ""

#: security/help.pm:125
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""

#: security/help.pm:126
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr ""

#: security/help.pm:127
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""

#: security/help.pm:128
#, c-format
msgid "if set to yes, report check result by mail."
msgstr ""

#: security/help.pm:129
#, c-format
msgid "Do not send mails if there's nothing to warn about"
msgstr ""

#: security/help.pm:130
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr ""

#: security/help.pm:131
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr ""

#: security/help.pm:132
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr ""

#: security/help.pm:134
#, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr ""

#: security/help.pm:136
#, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""

#: security/help.pm:136
#, c-format
msgid "Timeout unit is second"
msgstr ""

#: security/help.pm:138
#, c-format
msgid "Set the user umask."
msgstr "Lakaat umask an arveriad."

#: security/l10n.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages"
msgstr ""

#: security/l10n.pm:12
#, c-format
msgid "Accept broadcasted icmp echo"
msgstr ""

#: security/l10n.pm:13
#, c-format
msgid "Accept icmp echo"
msgstr ""

#: security/l10n.pm:15
#, c-format
msgid "/etc/issue* exist"
msgstr ""

#: security/l10n.pm:16
#, c-format
msgid "Reboot by the console user"
msgstr ""

#: security/l10n.pm:17
#, c-format
msgid "Allow remote root login"
msgstr "Bevaat ereañ a-bell gant root"

#: security/l10n.pm:18
#, c-format
msgid "Direct root login"
msgstr ""

#: security/l10n.pm:19
#, c-format
msgid "List users on display managers (kdm and gdm)"
msgstr ""

#: security/l10n.pm:20
#, c-format
msgid "Export display when passing from root to the other users"
msgstr ""

#: security/l10n.pm:21
#, c-format
msgid "Allow X Window connections"
msgstr "Bevaat ar c'hevreadennoù X Window"

#: security/l10n.pm:22
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr ""

#: security/l10n.pm:23
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr ""

#: security/l10n.pm:24
#, fuzzy, c-format
msgid "Chkconfig obey msec rules"
msgstr "Kefluniañ servijoù"

#: security/l10n.pm:25
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr ""

#: security/l10n.pm:26
#, c-format
msgid "Syslog reports to console 12"
msgstr ""

#: security/l10n.pm:27
#, c-format
msgid "Name resolution spoofing protection"
msgstr ""

#: security/l10n.pm:28
#, c-format
msgid "Enable IP spoofing protection"
msgstr ""

#: security/l10n.pm:29
#, c-format
msgid "Enable libsafe if libsafe is found on the system"
msgstr ""

#: security/l10n.pm:30
#, c-format
msgid "Enable the logging of IPv4 strange packets"
msgstr ""

#: security/l10n.pm:31
#, c-format
msgid "Enable msec hourly security check"
msgstr ""

#: security/l10n.pm:32
#, c-format
msgid "Enable su only from the wheel group members or for any user"
msgstr ""

#: security/l10n.pm:33
#, c-format
msgid "Use password to authenticate users"
msgstr ""

#: security/l10n.pm:34
#, c-format
msgid "Ethernet cards promiscuity check"
msgstr ""

#: security/l10n.pm:35
#, c-format
msgid "Daily security check"
msgstr ""

#: security/l10n.pm:36
#, c-format
msgid "Sulogin(8) in single user level"
msgstr ""

#: security/l10n.pm:37
#, fuzzy, c-format
msgid "No password aging for"
msgstr "Tremenger ebet"

#: security/l10n.pm:38
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr ""

#: security/l10n.pm:39
#, c-format
msgid "Password history length"
msgstr "Hirder istorig an tremegerioù"

#: security/l10n.pm:40
#, c-format
msgid "Password minimum length and number of digits and upcase letters"
msgstr ""

#: security/l10n.pm:41
#, c-format
msgid "Root umask"
msgstr "Umask root"

#: security/l10n.pm:42
#, c-format
msgid "Shell history size"
msgstr "Ment istorig ar shell"

#: security/l10n.pm:43
#, c-format
msgid "Shell timeout"
msgstr "Amzer-hont ar shell"

#: security/l10n.pm:44
#, c-format
msgid "User umask"
msgstr "Umask an arveriad"

#: security/l10n.pm:45
#, c-format
msgid "Check open ports"
msgstr "Gwiriekaat ar porzhioù digor"

#: security/l10n.pm:46
#, c-format
msgid "Check for unsecured accounts"
msgstr ""

#: security/l10n.pm:47
#, c-format
msgid "Check permissions of files in the users' home"
msgstr ""

#: security/l10n.pm:48
#, c-format
msgid "Check if the network devices are in promiscuous mode"
msgstr ""

#: security/l10n.pm:49
#, c-format
msgid "Run the daily security checks"
msgstr ""

#: security/l10n.pm:50
#, c-format
msgid "Check additions/removals of sgid files"
msgstr ""

#: security/l10n.pm:51
#, c-format
msgid "Check empty password in /etc/shadow"
msgstr ""

#: security/l10n.pm:52
#, c-format
msgid "Verify checksum of the suid/sgid files"
msgstr "Gwiriekaat checksum ar restroù SUID/SGID"

#: security/l10n.pm:53
#, c-format
msgid "Check additions/removals of suid root files"
msgstr ""

#: security/l10n.pm:54
#, c-format
msgid "Report unowned files"
msgstr ""

#: security/l10n.pm:55
#, c-format
msgid "Check files/directories writable by everybody"
msgstr ""

#: security/l10n.pm:56
#, c-format
msgid "Run chkrootkit checks"
msgstr ""

#: security/l10n.pm:57
#, c-format
msgid "Do not send mails when unneeded"
msgstr ""

#: security/l10n.pm:58
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""

#: security/l10n.pm:59
#, c-format
msgid "Report check result by mail"
msgstr ""

#: security/l10n.pm:60
#, c-format
msgid "Run some checks against the rpm database"
msgstr ""

#: security/l10n.pm:61
#, c-format
msgid "Report check result to syslog"
msgstr ""

#: security/l10n.pm:62
#, c-format
msgid "Reports check result to tty"
msgstr ""

#: security/level.pm:10
#, c-format
msgid "Welcome To Crackers"
msgstr "Bezit deuet mat, preizherien !"

#: security/level.pm:11
#, c-format
msgid "Poor"
msgstr "Paour"

#: security/level.pm:13
#, c-format
msgid "High"
msgstr "Uhel"

#: security/level.pm:14
#, c-format
msgid "Higher"
msgstr "Uheloc'h"

#: security/level.pm:15
#, c-format
msgid "Paranoid"
msgstr "Ankeniet"

#: security/level.pm:41
#, c-format
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive. It must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"Ret eo implijout al live-mañ gant evezh. Ober a ra d'ho reizhiad bezañ\n"
"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre dremenger."

#: security/level.pm:44
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Gweredekaet eo bremañ an tremenger, hogen dierbedet eo c'hoazh an implij en "
"ur rouedad"

#: security/level.pm:45
#, c-format
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"Setu al live surentez standard a vez erbedet evit un urzhiataer a vo "
"implijet evit kevreañ evel kliant ouzh ar Genrouedad."

#: security/level.pm:46
#, c-format
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""

#: security/level.pm:47
#, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
"Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
"servijer.\n"
"Uhel a-walc'h eo bremañ ar surentez evit implijout ar reizhiad evel ur "
"servijer\n"
"o tigemer kevreadennoù a-berzh kliantoù niverus. Notenn : ma vez ur c'hliant "
"kenrouedad hepken, neuze e vefe moarvat gwelloc'h deoc'h dibab ul live "
"izeloc'h."

#: security/level.pm:50
#, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"Kemer a reomp arc'hweloù al live diaraok, hogen bremañ eo peurserret ar "
"reizhiad hag an arc'hweloù surentez a zo en o muiañ."

#: security/level.pm:55
#, c-format
msgid "DrakSec Basic Options"
msgstr "Dibarzhoù DrakSec diazeg"

#: security/level.pm:56
#, c-format
msgid "Please choose the desired security level"
msgstr "Dibabit al live surentez c'hoantet"

#: security/level.pm:60
#, c-format
msgid "Security level"
msgstr "Live surentez"

#: security/level.pm:62
#, c-format
msgid "Use libsafe for servers"
msgstr "Implijit libsafe evit ar servijerien"

#: security/level.pm:63
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""

#: security/level.pm:64
#, c-format
msgid "Security Administrator (login or email)"
msgstr "Merour surantez (anv ereañ pe chomlec'h postel)"

#: services.pm:19
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Lañsañ ar reizhiad kwelek ALSA (Advanced Linux Sound Architecture)"

#: services.pm:20
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr "Anacron, ur steuñvaer urzhiadoù mareadek."

#: services.pm:21
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"servijout a ra apmd evit evezhiañ stad an daspugner hag he enrollañ dre "
"syslog.\n"
"Gallout a ra ivez servijout da lazhañ an ardivink pa vez izel an daspugner."

#: services.pm:23
#, c-format
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"Seveniñ an urzhiadoù steuñvaet gant an urzhiad at d'ar pred laket pa 'z eo\n"
"bet sevenet at, ha seveniñ urzhiadoù dre lod pa 'z eo izel a-walc'h ar garg."

#: services.pm:25
#, c-format
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
"Ur goulev standard UNIX eo cron evit seveniñ goulevioù diouzh c'hoant an\n"
"arveriaded da goulzoù mareadek steuñvaet. vixie cron a ouzhpenn kalzig a "
"arc'hweloù\n"
"d'ar cron UNIX diazez, en o zouez surentez ha dibarzhoù kefluniañ gwelloc'h."

#: services.pm:28
#, c-format
msgid ""
"FAM is a file monitoring daemon. It is used to get reports when files "
"change.\n"
"It is used by GNOME and KDE"
msgstr ""

#: services.pm:30
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM a zegas implij al logodenn d'an arloadoù Linux mod-skrid evel\n"
"Midnight Commander. Reiñ a ra tu da seveniñ obererezhoù troc'hañ-ha-pegañ,\n"
"ha skor evit meuziadoù kemperzhel war al letrin."

#: services.pm:33
#, c-format
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""

#: services.pm:35
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
"Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijañ\n"
"restroù HTML ha CGI."

#: services.pm:36
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"An diaoul gourservijer kenrouedad (anvet inetd ordinal) a loc'h ur\n"
"bochad a servijoù kenrouedad all diouzh an ezhomm. E karg loc'hañ meur a "
"servijoù\n"
"eo, en o zouez telnet, ftp, rsh, and rlogin. Dizoberiañ inetd a zizoberia\n"
"an holl servijoù m'eo eñ atebek warno."

#: services.pm:40
#, c-format
msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""

#: services.pm:42
#, c-format
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
"Ar pakad-mañ a garg ar stokellaoueg diuzet evel termenet e\n"
"/etc/sysconfig/keyboard. Dre ar maveg kbdconfig e c'hell bezañ diuzet\n"
"kement-se. Gwell deoc'h leuskel se gweredekaet war darn vuiañ an ardivinkoù."

#: services.pm:45
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""

#: services.pm:47
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr ""

#: services.pm:48
#, c-format
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr ""

#: services.pm:50
#, c-format
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
"An diaoul moullañ ret evit ma dafez en-ro reizh lpr eo lpd. Dre vras\n"
"ez eo ur servijer a vera dleadoù moullañ evir ar voullerez(ed)."

#: services.pm:52
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""

#: services.pm:54
#, fuzzy, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"named (BIND) a zo ur Servijer Anvioù Domani (DNS) a zo implijet evit\n"
"amdreiñ anvioù ostiz e chomlec'hioù IP."

#: services.pm:55
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Evit marc'hañ ha divarc'hañ poentoù marc'hañ an holl Reizhiadoù Restroù\n"
"Rouedad (NFS), SMB (Lan Manager/Windows) ha NCP (NetWare)."

#: services.pm:57
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Oberia/Dizoberia an holl etrefasoù rouedad kefluniet da lañsañ\n"
"da vare al loc'hañ."

#: services.pm:59
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"NFS a zo ur c'homenad brudet evit rannañ restroù dre rouedadoù TCP/IP.\n"
"Ar servij-mañ a bourvez arc'hweloù ur servijer NFS, a vez kefluniaet dre ar\n"
"restr /etc/exports."

#: services.pm:62
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
"NFS a zo ur c'homenad brudet evit rannañ restroù dre rouedadoù\n"
"TCP/IP. Ar servij-mañ a bourvez un arc'hwel morailhañ restroù NFS."

#: services.pm:64
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and Xorg at boot."
msgstr ""

#: services.pm:66
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr ""

#: services.pm:67
#, c-format
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops.  It will not get started unless configured so it is safe "
"to have\n"
"it installed on machines that do not need it."
msgstr ""
"Skorañ PCMCIA a zegas an tu da implijonut traoù evel ethernet ha modemoù\n"
"e urzhiataeroù hezoug. Ne vo ket kroget hep bezañ bet kefluniet, rak-se eo "
"diarvar\n"
"e staliañ war ardivinkoù n'o deus ket ezhomm anezhañ."

#: services.pm:70
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"Ar c'hartenner porzhioù a vera kevreadennoù RPC, a zo implijet gant\n"
"komenadoù evel NFS ha NIS. Ar servijer kartenn-porzhioù a rankfe mont en-"
"dro\n"
"war ardivinkoù anezho servijerien komenadoù a implij ar reizhiad  RPC."

#: services.pm:73
#, fuzzy, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
"Ur Gwazour Treuzdougen Postel eo Postfix, a zo ar goulev a\n"
"zilech posteloù etre un ardivink hag un all."

#: services.pm:74
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Enroll hag assav poul dizurzh ar reizhiad evit genel niveroù\n"
"dargouezhek gant gwelloc'h perzhded."

#: services.pm:76
#, c-format
msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle or DVD players"
msgstr ""

#: services.pm:78
#, c-format
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"An diaoul routed a ro an tu da vremanaat ent emgefreek an taolenn henchañ\n"
"IP dre ar c'homenad RIP. Tra ma vez implijet aliesig RIP war rouedadoù "
"bihan,\n"
"ezhomm a zo komenadoù henchañ kemplezhoc'h evit rouedadoù rouestlet."

#: services.pm:81
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"Ar c'homenad rstat a ro tu da implijerien ur rouedad da zastum\n"
"muzulioù barregezh diwar ne vern pe ardivink er rouedad-se."

#: services.pm:83
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"Ar c'homenad rusers a ro tu da implijerien ur rouedad da anavezout piv\n"
"a zo kevreet ouzh ardivinkoù all a respont."

#: services.pm:85
#, c-format
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similar to finger)."
msgstr ""
"Ar c'homenad rwho a bourchas da implijerien a-bell roll an holl arveriaded a "
"zo\n"
"kevreet ouzh un ardivink ma da en-dro warnañ an diaoul rwhod (heñvel ouzh "
"finger)."

#: services.pm:87
#, c-format
msgid "Launch the sound system on your machine"
msgstr "Lañsañ ar reizhiad kwelek ouzh hoc'h urzhiataer"

#: services.pm:88
#, c-format
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files.  It is a good idea to always run syslog."
msgstr ""
"Syslog a zo ur gwazerezh ma enroll drezañ an diaouled niverus o "
"c'hemennadoù\n"
"e kerzhlevrioù liesseurt ar reizhiad. Ur mennozh mat eo seveniñ ingal syslog."

#: services.pm:90
#, c-format
msgid "Load the drivers for your usb devices."
msgstr ""

#: services.pm:91
#, fuzzy, c-format
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr ""
"Enaou ha dizenaou ar servijer Fontoù X da vare al loc'hañ hag al lazhañ."

#: services.pm:115 services.pm:157
#, c-format
msgid "Choose which services should be automatically started at boot time"
msgstr "Dibabit pe servijoù a zlefe bezañ lañset ent emgefreek pa loc'her"

#: services.pm:127
#, c-format
msgid "Printing"
msgstr "War voulañ"

#: services.pm:128
#, c-format
msgid "Internet"
msgstr "Kenrouedad"

#: services.pm:131
#, c-format
msgid "File sharing"
msgstr "Rannañ restroù"

#: services.pm:138
#, c-format
msgid "Remote Administration"
msgstr "Mererezh a-bell"

#: services.pm:146
#, c-format
msgid "Database Server"
msgstr "Servijer ar stlennvon"

#: services.pm:209
#, c-format
msgid "running"
msgstr "emaon o seveniñ"

#: services.pm:209
#, c-format
msgid "stopped"
msgstr "Plaenaozet"

#: services.pm:213
#, c-format
msgid "Services and daemons"
msgstr ""

#: services.pm:219
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""

#: services.pm:224 ugtk2.pm:1018
#, c-format
msgid "Info"
msgstr "Titouroù"

#: services.pm:227
#, c-format
msgid "Start when requested"
msgstr ""

#: services.pm:227
#, c-format
msgid "On boot"
msgstr "En ur loc'hañ"

#: services.pm:244 standalone/drakroam:185
#, c-format
msgid "Start"
msgstr "Loc'hañ"

#: services.pm:244 standalone/drakroam:186
#, c-format
msgid "Stop"
msgstr "Plaenaozañ"

#: share/advertising/01.pl:13
#, c-format
msgid "<b>What is Mandriva Linux?</b>"
msgstr "<b>Petra eo Mandriva Linux ?</b>"

#: share/advertising/01.pl:15
#, c-format
msgid "Welcome to <b>Mandriva Linux</b>!"
msgstr "Degemer e <b>Mandriva Linux</b> !"

#: share/advertising/01.pl:17
#, c-format
msgid ""
"Mandriva Linux is a <b>Linux distribution</b> that comprises the core of the "
"system, called the <b>operating system</b> (based on the Linux kernel) "
"together with <b>a lot of applications</b> meeting every need you could even "
"think of."
msgstr ""

#: share/advertising/01.pl:19
#, c-format
msgid ""
"Mandriva Linux is the most <b>user-friendly</b> Linux distribution today. It "
"is also one of the <b>most widely used</b> Linux distributions worldwide!"
msgstr ""

#: share/advertising/02.pl:13
#, fuzzy, c-format
msgid "<b>Open Source</b>"
msgstr "<b>Servijer strollant</b>"

#: share/advertising/02.pl:15
#, c-format
msgid "Welcome to the <b>world of open source</b>!"
msgstr "Degemer er <b>bed dieub</b> !"

#: share/advertising/02.pl:17
#, c-format
msgid ""
"Mandriva Linux is committed to the open source model. This means that this "
"new release is the result of <b>collaboration</b> between <b>Mandriva's team "
"of developers</b> and the <b>worldwide community</b> of Mandriva Linux "
"contributors."
msgstr ""

#: share/advertising/02.pl:19
#, c-format
msgid ""
"We would like to <b>thank</b> everyone who participated in the development "
"of this latest release."
msgstr ""

#: share/advertising/03.pl:13
#, c-format
msgid "<b>The GPL</b>"
msgstr "<b>Ar GPL</b>"

#: share/advertising/03.pl:15
#, c-format
msgid ""
"Most of the software included in the distribution and all of the Mandriva "
"Linux tools are licensed under the <b>General Public License</b>."
msgstr ""

#: share/advertising/03.pl:17
#, c-format
msgid ""
"The GPL is at the heart of the open source model; it grants everyone the "
"<b>freedom</b> to use, study, distribute and improve the software any way "
"they want, provided they make the results available."
msgstr ""

#: share/advertising/03.pl:19
#, c-format
msgid ""
"The main benefit of this is that the number of developers is virtually "
"<b>unlimited</b>, resulting in <b>very high quality</b> software."
msgstr ""

#: share/advertising/04.pl:13
#, c-format
msgid "<b>Join the Community</b>"
msgstr ""

#: share/advertising/04.pl:15
#, c-format
msgid ""
"Mandriva Linux has one of the <b>biggest communities</b> of users and "
"developers. The role of such a community is very wide, ranging from bug "
"reporting to the development of new applications. The community plays a "
"<b>key role</b> in the Mandriva Linux world."
msgstr ""

#: share/advertising/04.pl:17
#, c-format
msgid ""
"To <b>learn more</b> about our dynamic community, please visit <b>www."
"mandrivalinux.com</b> or directly <b>www.mandrivalinux.com/en/cookerdevel."
"php3</b> if you would like to get <b>involved</b> in the development."
msgstr ""

#: share/advertising/05.pl:15
#, c-format
msgid "<b>Download Version</b>"
msgstr ""

#: share/advertising/05.pl:17
#, c-format
msgid ""
"You are now installing <b>Mandriva Linux Download</b>. This is the free "
"version that Mandriva wants to keep <b>available to everyone</b>."
msgstr ""

#: share/advertising/05.pl:19
#, c-format
msgid ""
"The Download version <b>cannot include</b> all the software that is not open "
"source. Therefore, you will not find in the Download version:"
msgstr ""

#: share/advertising/05.pl:20
#, c-format
msgid ""
"\t* <b>Proprietary drivers</b> (such as drivers for NVIDIA®, ATI™, etc.)."
msgstr ""

#: share/advertising/05.pl:21
#, c-format
msgid ""
"\t* <b>Proprietary software</b> (such as Acrobat® Reader®, RealPlayer®, "
"Flash™, etc.)."
msgstr ""

#: share/advertising/05.pl:23
#, c-format
msgid ""
"You will not have access to the <b>services included</b> in the other "
"Mandriva products either."
msgstr ""

#: share/advertising/06.pl:13
#, c-format
msgid "<b>Discovery, Your First Linux Desktop</b>"
msgstr ""

#: share/advertising/06.pl:15
#, c-format
msgid "You are now installing <b>Mandriva Linux Discovery</b>."
msgstr ""

#: share/advertising/06.pl:17
#, c-format
msgid ""
"Discovery is the <b>easiest</b> and most <b>user-friendly</b> Linux "
"distribution. It includes a hand-picked selection of <b>premium software</b> "
"for office, multimedia and Internet activities. Its menu is task-oriented, "
"with a single application per task."
msgstr ""

#: share/advertising/07.pl:13
#, c-format
msgid "<b>PowerPack, The Ultimate Linux Desktop</b>"
msgstr ""

#: share/advertising/07.pl:15
#, c-format
msgid "You are now installing <b>Mandriva Linux PowerPack</b>."
msgstr ""

#: share/advertising/07.pl:17
#, c-format
msgid ""
"PowerPack is Mandriva's <b>premier Linux desktop</b> product. PowerPack "
"includes <b>thousands of applications</b> - everything from the most popular "
"to the most advanced."
msgstr ""

#: share/advertising/08.pl:13
#, c-format
msgid "<b>PowerPack+, The Linux Solution for Desktops and Servers</b>"
msgstr ""

#: share/advertising/08.pl:15
#, c-format
msgid "You are now installing <b>Mandriva Linux PowerPack+</b>."
msgstr ""

#: share/advertising/08.pl:17
#, c-format
msgid ""
"PowerPack+ is a <b>full-featured Linux solution</b> for small to medium-"
"sized <b>networks</b>. PowerPack+ includes thousands of <b>desktop "
"applications</b> and a comprehensive selection of world-class <b>server "
"applications</b>."
msgstr ""

#: share/advertising/09.pl:13
#, fuzzy, c-format
msgid "<b>Mandriva Products</b>"
msgstr "<b>Mandriva Store</b>"

#: share/advertising/09.pl:15
#, c-format
msgid ""
"<b>Mandriva</b> has developed a wide range of <b>Mandriva Linux</b> products."
msgstr ""

#: share/advertising/09.pl:17
#, fuzzy, c-format
msgid "The Mandriva Linux products are:"
msgstr "Mandriva Linux Control Center"

#: share/advertising/09.pl:18
#, c-format
msgid "\t* <b>Discovery</b>, Your First Linux Desktop."
msgstr ""

#: share/advertising/09.pl:19
#, c-format
msgid "\t* <b>PowerPack</b>, The Ultimate Linux Desktop."
msgstr ""

#: share/advertising/09.pl:20
#, c-format
msgid "\t* <b>PowerPack+</b>, The Linux Solution for Desktops and Servers."
msgstr ""

#: share/advertising/09.pl:21
#, c-format
msgid ""
"\t* <b>Mandriva Linux for x86-64</b>, The Mandriva Linux solution for making "
"the most of your 64-bit processor."
msgstr ""

#: share/advertising/10.pl:15
#, c-format
msgid "<b>Mandriva Products (Nomad Products)</b>"
msgstr ""

#: share/advertising/10.pl:17
#, c-format
msgid ""
"Mandriva has developed two products that allow you to use Mandriva Linux "
"<b>on any computer</b> and without any need to actually install it:"
msgstr ""

#: share/advertising/10.pl:18
#, c-format
msgid ""
"\t* <b>Move</b>, a Mandriva Linux distribution that runs entirely from a "
"bootable CD-ROM."
msgstr ""

#: share/advertising/10.pl:19
#, c-format
msgid ""
"\t* <b>GlobeTrotter</b>, a Mandriva Linux distribution pre-installed on the "
"ultra-compact “LaCie Mobile Hard Drive”."
msgstr ""

#: share/advertising/11.pl:13
#, c-format
msgid "<b>Mandriva Products (Professional Solutions)</b>"
msgstr ""

#: share/advertising/11.pl:15
#, c-format
msgid ""
"Below are the Mandriva products designed to meet the <b>professional needs</"
"b>:"
msgstr ""

#: share/advertising/11.pl:16
#, c-format
msgid ""
"\t* <b>Corporate Desktop</b>, The Mandriva Linux Desktop for Businesses."
msgstr ""

#: share/advertising/11.pl:17
#, c-format
msgid "\t* <b>Corporate Server</b>, The Mandriva Linux Server Solution."
msgstr ""

#: share/advertising/11.pl:18
#, c-format
msgid ""
"\t* <b>Multi-Network Firewall</b>, The Mandriva Linux Security Solution."
msgstr ""

#: share/advertising/12.pl:13
#, c-format
msgid "<b>The KDE Choice</b>"
msgstr "<b>Ar dibab KDE</b>"

#: share/advertising/12.pl:15
#, c-format
msgid ""
"With your Discovery, you will be introduced to <b>KDE</b>, the most advanced "
"and user-friendly <b>graphical desktop environment</b> available."
msgstr ""

#: share/advertising/12.pl:17
#, c-format
msgid ""
"KDE will make your <b>first steps</b> with Linux so <b>easy</b> that you "
"will not ever think of running another operating system!"
msgstr ""

#: share/advertising/12.pl:19
#, c-format
msgid ""
"KDE also includes a lot of <b>well integrated applications</b> such as "
"Konqueror, the web browser and Kontact, the personal information manager."
msgstr ""

#: share/advertising/13-a.pl:13 share/advertising/13-b.pl:13
#, fuzzy, c-format
msgid "<b>Choose your Favorite Desktop Environment</b>"
msgstr "All burevioù c'hrafek"

#: share/advertising/13-a.pl:15
#, c-format
msgid ""
"With PowerPack, you will have the choice of the <b>graphical desktop "
"environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
msgstr ""

#: share/advertising/13-a.pl:17 share/advertising/13-b.pl:17
#, c-format
msgid ""
"KDE is one of the <b>most advanced</b> and <b>user-friendly</b> graphical "
"desktop environment available. It includes a lot of integrated applications."
msgstr ""

#: share/advertising/13-a.pl:19 share/advertising/13-b.pl:19
#, c-format
msgid ""
"But we advise you to try all available ones (including <b>GNOME</b>, "
"<b>IceWM</b>, etc.) and pick your favorite."
msgstr ""

#: share/advertising/13-b.pl:15
#, c-format
msgid ""
"With PowerPack+, you will have the choice of the <b>graphical desktop "
"environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
msgstr ""

#: share/advertising/14.pl:15
#, c-format
msgid "<b>OpenOffice.org</b>"
msgstr ""

#: share/advertising/14.pl:17
#, c-format
msgid "With Discovery, you will discover <b>OpenOffice.org</b>."
msgstr ""

#: share/advertising/14.pl:19
#, c-format
msgid ""
"It is a <b>full-featured office suite</b> that includes word processor, "
"spreadsheet, presentation and drawing applications."
msgstr ""

#: share/advertising/14.pl:21
#, c-format
msgid ""
"OpenOffice.org can read and write most types of <b>Microsoft® Office</b> "
"documents such as Word, Excel and PowerPoint® files."
msgstr ""

#: share/advertising/15.pl:13
#, c-format
msgid "<b>Kontact</b>"
msgstr "<b>Kontact</b>"

#: share/advertising/15.pl:15
#, c-format
msgid ""
"Discovery includes <b>Kontact</b>, the new KDE <b>groupware solution</b>."
msgstr ""

#: share/advertising/15.pl:17
#, c-format
msgid ""
"More than just a full-featured <b>e-mail client</b>, Kontact also includes "
"an <b>address book</b>, a <b>calendar</b>, plus a tool for taking <b>notes</"
"b>!"
msgstr ""

#: share/advertising/15.pl:19
#, c-format
msgid ""
"It is the easiest way to communicate with your contacts and to organize your "
"time."
msgstr ""

#: share/advertising/16.pl:13
#, c-format
msgid "<b>Surf the Internet</b>"
msgstr "<b>Furchal ar Gwiad</b>"

#: share/advertising/16.pl:15
#, c-format
msgid "Discovery will give you access to <b>every Internet resource</b>:"
msgstr ""

#: share/advertising/16.pl:16
#, fuzzy, c-format
msgid "\t* Browse the <b>Web</b> with Konqueror."
msgstr "\t* ergerzhet ar Web gant <b>Mozilla ha gKonqueror</b>"

#: share/advertising/16.pl:17
#, c-format
msgid "\t* <b>Chat</b> online with your friends using Kopete."
msgstr ""

#: share/advertising/16.pl:18
#, c-format
msgid "\t* <b>Transfer</b> files with KBear."
msgstr ""

#: share/advertising/16.pl:19 share/advertising/17.pl:19
#: share/advertising/18.pl:22
#, c-format
msgid "\t* ..."
msgstr "\t- ..."

#: share/advertising/17.pl:13
#, c-format
msgid "<b>Enjoy our Multimedia Features</b>"
msgstr ""

#: share/advertising/17.pl:15
#, c-format
msgid "Discovery will also make <b>multimedia</b> very easy for you:"
msgstr ""

#: share/advertising/17.pl:16
#, c-format
msgid "\t* Watch your favorite <b>videos</b> with Kaffeine."
msgstr ""

#: share/advertising/17.pl:17
#, c-format
msgid "\t* Listen to your <b>music files</b> with amaroK."
msgstr ""

#: share/advertising/17.pl:18
#, c-format
msgid "\t* Edit and create <b>images</b> with the GIMP."
msgstr ""

#: share/advertising/18.pl:13
#, c-format
msgid "<b>Enjoy the Wide Range of Applications</b>"
msgstr ""

#: share/advertising/18.pl:15
#, c-format
msgid ""
"In the Mandriva Linux menu you will find <b>easy-to-use</b> applications for "
"<b>all of your tasks</b>:"
msgstr ""

#: share/advertising/18.pl:16
#, c-format
msgid "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
msgstr ""

#: share/advertising/18.pl:17
#, c-format
msgid ""
"\t* Manage your personal data with the integrated personal information "
"suites <b>Kontact</b> and <b>Evolution</b>."
msgstr ""

#: share/advertising/18.pl:18
#, c-format
msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
msgstr "\t* ergerzhet ar Web gant <b>Mozilla</b> ha <b>gKonqueror</b>"

#: share/advertising/18.pl:19
#, c-format
msgid "\t* Participate in online chat with <b>Kopete</b>."
msgstr ""

#: share/advertising/18.pl:20
#, c-format
msgid ""
"\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
"<b>videos</b>."
msgstr ""

#: share/advertising/18.pl:21
#, c-format
msgid "\t* Edit and create images with the <b>GIMP</b>."
msgstr ""

#: share/advertising/19.pl:13
#, c-format
msgid "<b>Development Environments</b>"
msgstr "<b>Endro diorren</b>"

#: share/advertising/19.pl:15 share/advertising/22.pl:17
#, c-format
msgid ""
"PowerPack gives you the best tools to <b>develop</b> your own applications."
msgstr ""

#: share/advertising/19.pl:17
#, c-format
msgid ""
"You will enjoy the powerful, integrated development environment from KDE, "
"<b>KDevelop</b>, which will let you program in a lot of languages."
msgstr ""

#: share/advertising/19.pl:19
#, c-format
msgid ""
"PowerPack also ships with <b>GCC</b>, the leading Linux compiler and <b>GDB</"
"b>, the associated debugger."
msgstr ""

#: share/advertising/20.pl:13
#, fuzzy, c-format
msgid "<b>Development Editors</b>"
msgstr "Diorren"

#: share/advertising/20.pl:15
#, c-format
msgid "PowerPack will let you choose between those <b>popular editors</b>:"
msgstr ""

#: share/advertising/20.pl:16
#, c-format
msgid "\t* <b>Emacs</b>: a customizable and real time display editor."
msgstr ""

#: share/advertising/20.pl:17
#, c-format
msgid ""
"\t* <b>XEmacs</b>: another open source text editor and application "
"development system."
msgstr ""

#: share/advertising/20.pl:18
#, c-format
msgid ""
"\t* <b>Vim</b>: an advanced text editor with more features than standard Vi."
msgstr ""

#: share/advertising/21.pl:15
#, fuzzy, c-format
msgid "<b>Development Languages</b>"
msgstr "Diorren"

#: share/advertising/21.pl:17
#, c-format
msgid ""
"With all these <b>powerful tools</b>, you will be able to write applications "
"in <b>dozens of programming languages</b>:"
msgstr ""

#: share/advertising/21.pl:18
#, c-format
msgid "\t* The famous <b>C language</b>."
msgstr ""

#: share/advertising/21.pl:19
#, c-format
msgid "\t* Object oriented languages:"
msgstr ""

#: share/advertising/21.pl:20
#, c-format
msgid "\t\t* <b>C++</b>"
msgstr "\t\t* <b>C++</b>"

#: share/advertising/21.pl:21
#, c-format
msgid "\t\t* <b>Java™</b>"
msgstr "\t\t* <b>Java™</b>"

#: share/advertising/21.pl:22
#, c-format
msgid "\t* Scripting languages:"
msgstr ""

#: share/advertising/21.pl:23
#, c-format
msgid "\t\t* <b>Perl</b>"
msgstr "\t\t* <b>Perl</b>"

#: share/advertising/21.pl:24
#, c-format
msgid "\t\t* <b>Python</b>"
msgstr "\t\t* <b>Python</b>"

#: share/advertising/21.pl:25 share/advertising/28.pl:24
#, c-format
msgid "\t* And many more."
msgstr ""

#: share/advertising/22.pl:15
#, fuzzy, c-format
msgid "<b>Development Tools</b>"
msgstr "Diorren"

#: share/advertising/22.pl:19
#, c-format
msgid ""
"With the powerful integrated development environment <b>KDevelop</b> and the "
"leading Linux compiler <b>GCC</b>, you will be able to create applications "
"in <b>many different languages</b> (C, C++, Java™, Perl, Python, etc.)."
msgstr ""

#: share/advertising/23.pl:13
#, c-format
msgid "<b>Groupware Server</b>"
msgstr "<b>Servijer strollant</b>"

#: share/advertising/23.pl:15
#, c-format
msgid ""
"PowerPack+ will give you access to <b>Kolab</b>, a full-featured "
"<b>groupware server</b> which will, thanks to the client <b>Kontact</b>, "
"allow you to:"
msgstr ""

#: share/advertising/23.pl:16
#, c-format
msgid "\t* Send and receive your <b>e-mails</b>."
msgstr ""

#: share/advertising/23.pl:17
#, c-format
msgid "\t* Share your <b>agendas</b> and your <b>address books</b>."
msgstr ""

#: share/advertising/23.pl:18
#, c-format
msgid "\t* Manage your <b>memos</b> and <b>task lists</b>."
msgstr ""

#: share/advertising/24.pl:15
#, c-format
msgid "<b>Servers</b>"
msgstr "<b>Servijerien</b>"

#: share/advertising/24.pl:17
#, c-format
msgid ""
"Empower your business network with <b>premier server solutions</b> including:"
msgstr ""

#: share/advertising/24.pl:18
#, c-format
msgid ""
"\t* <b>Samba</b>: File and print services for Microsoft® Windows® clients."
msgstr ""

#: share/advertising/24.pl:19
#, c-format
msgid "\t* <b>Apache</b>: The most widely used web server."
msgstr ""

#: share/advertising/24.pl:20
#, c-format
msgid ""
"\t* <b>MySQL</b> and <b>PostgreSQL</b>: The world's most popular open source "
"databases."
msgstr ""

#: share/advertising/24.pl:21
#, c-format
msgid ""
"\t* <b>CVS</b>: Concurrent Versions System, the dominant open source network-"
"transparent version control system."
msgstr ""

#: share/advertising/24.pl:22
#, c-format
msgid ""
"\t* <b>ProFTPD</b>: The highly configurable GPL-licensed FTP server software."
msgstr ""

#: share/advertising/24.pl:23
#, c-format
msgid ""
"\t* <b>Postfix</b> and <b>Sendmail</b>: The popular and powerful mail "
"servers."
msgstr ""

#: share/advertising/25.pl:13
#, c-format
msgid "<b>Mandriva Linux Control Center</b>"
msgstr "<b>Kreizenn ren Mandriva Linux</b>"

#: share/advertising/25.pl:15
#, c-format
msgid ""
"The <b>Mandriva Linux Control Center</b> is an essential collection of "
"Mandriva Linux-specific utilities designed to simplify the configuration of "
"your computer."
msgstr ""

#: share/advertising/25.pl:17
#, c-format
msgid ""
"You will immediately appreciate this collection of <b>more than 60</b> handy "
"utilities for <b>easily configuring your system</b>: hardware devices, mount "
"points, network and Internet, security level of your computer, etc."
msgstr ""

#: share/advertising/26.pl:13
#, c-format
msgid "<b>The Open Source Model</b>"
msgstr ""

#: share/advertising/26.pl:15
#, c-format
msgid ""
"Like all computer programming, open source software <b>requires time and "
"people</b> for development. In order to respect the open source philosophy, "
"Mandriva sells added value products and services to <b>keep improving "
"Mandriva Linux</b>. If you want to <b>support the open source philosophy</b> "
"and the development of Mandriva Linux, <b>please</b> consider buying one of "
"our products or services!"
msgstr ""

#: share/advertising/27.pl:13
#, fuzzy, c-format
msgid "<b>Online Store</b>"
msgstr "<b>Mandriva Online</b>"

#: share/advertising/27.pl:15
#, c-format
msgid ""
"To learn more about Mandriva products and services, you can visit our <b>e-"
"commerce platform</b>."
msgstr ""

#: share/advertising/27.pl:17
#, c-format
msgid "There you can find all our products, services and third-party products."
msgstr ""

#: share/advertising/27.pl:19
#, c-format
msgid ""
"This platform has just been <b>redesigned</b> to improve its efficiency and "
"usability."
msgstr ""

#: share/advertising/27.pl:21
#, c-format
msgid "Stop by today at <b>store.mandriva.com</b>!"
msgstr ""

#: share/advertising/28.pl:15
#, fuzzy, c-format
msgid "<b>Mandriva Club</b>"
msgstr "<b>Mandriva Online</b>"

#: share/advertising/28.pl:17
#, c-format
msgid ""
"<b>Mandriva Club</b> is the <b>perfect companion</b> to your Mandriva Linux "
"product.."
msgstr ""

#: share/advertising/28.pl:19
#, c-format
msgid ""
"Take advantage of <b>valuable benefits</b> by joining Mandriva Club, such as:"
msgstr ""

#: share/advertising/28.pl:20
#, c-format
msgid ""
"\t* <b>Special discounts</b> on products and services of our online store "
"<b>store.mandriva.com</b>."
msgstr ""

#: share/advertising/28.pl:21
#, c-format
msgid ""
"\t* Access to <b>commercial applications</b> (for example to NVIDIA® or ATI™ "
"drivers)."
msgstr ""

#: share/advertising/28.pl:22
#, c-format
msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
msgstr ""

#: share/advertising/28.pl:23
#, c-format
msgid ""
"\t* <b>Early and privileged access</b>, before public release, to Mandriva "
"Linux <b>ISO images</b>."
msgstr ""

#: share/advertising/29.pl:13
#, c-format
msgid "<b>Mandriva Online</b>"
msgstr "<b>Mandriva Online</b>"

#: share/advertising/29.pl:15
#, c-format
msgid ""
"<b>Mandriva Online</b> is a new premium service that Mandriva is proud to "
"offer its customers!"
msgstr ""

#: share/advertising/29.pl:17
#, c-format
msgid ""
"Mandriva Online provides a wide range of valuable services for <b>easily "
"updating</b> your Mandriva Linux systems:"
msgstr ""

#: share/advertising/29.pl:18
#, c-format
msgid "\t* <b>Perfect</b> system security (automated software updates)."
msgstr ""

#: share/advertising/29.pl:19
#, c-format
msgid ""
"\t* <b>Notification</b> of updates (by e-mail or by an applet on the "
"desktop)."
msgstr ""

#: share/advertising/29.pl:20
#, c-format
msgid "\t* Flexible <b>scheduled</b> updates."
msgstr ""

#: share/advertising/29.pl:21
#, c-format
msgid ""
"\t* Management of <b>all your Mandriva Linux systems</b> with one account."
msgstr ""

#: share/advertising/30.pl:13
#, fuzzy, c-format
msgid "<b>Mandriva Expert</b>"
msgstr "<b>Mandriva Store</b>"

#: share/advertising/30.pl:15
#, c-format
msgid ""
"Do you require <b>assistance?</b> Meet Mandriva's technical experts on "
"<b>our technical support platform</b> www.mandrivaexpert.com."
msgstr ""

#: share/advertising/30.pl:17
#, c-format
msgid ""
"Thanks to the help of <b>qualified Mandriva Linux experts</b>, you will save "
"a lot of time."
msgstr ""

#: share/advertising/30.pl:19
#, c-format
msgid ""
"For any question related to Mandriva Linux, you have the possibility to "
"purchase support incidents at <b>store.mandriva.com</b>."
msgstr ""

#: share/compssUsers.pl:26
#, c-format
msgid "Office Workstation"
msgstr "Arsav ar burev"

#: share/compssUsers.pl:28
#, c-format
msgid ""
"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
msgstr ""

#: share/compssUsers.pl:29
#, c-format
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""

#: share/compssUsers.pl:34
#, c-format
msgid "Game station"
msgstr "Arsav an c'hoarioù"

#: share/compssUsers.pl:35
#, c-format
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr ""

#: share/compssUsers.pl:38
#, c-format
msgid "Multimedia station"
msgstr "Arsav al liesvedia"

#: share/compssUsers.pl:39
#, c-format
msgid "Sound and video playing/editing programs"
msgstr ""

#: share/compssUsers.pl:44
#, c-format
msgid "Internet station"
msgstr "Arsav an internet"

#: share/compssUsers.pl:45
#, c-format
msgid ""
"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
"Web"
msgstr ""

#: share/compssUsers.pl:50
#, c-format
msgid "Network Computer (client)"
msgstr "Kliant rouedad"

#: share/compssUsers.pl:51
#, c-format
msgid "Clients for different protocols including ssh"
msgstr ""

#: share/compssUsers.pl:55
#, c-format
msgid "Configuration"
msgstr "Kefluniadur"

#: share/compssUsers.pl:56
#, fuzzy, c-format
msgid "Tools to ease the configuration of your computer"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"

#: share/compssUsers.pl:60
#, c-format
msgid "Console Tools"
msgstr "Ostilhoù letrin"

#: share/compssUsers.pl:61
#, c-format
msgid "Editors, shells, file tools, terminals"
msgstr "Aozerien, shelloù, ostilhoù restr, termenelloù"

#: share/compssUsers.pl:66 share/compssUsers.pl:170
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""

#: share/compssUsers.pl:70 share/compssUsers.pl:174
#, c-format
msgid "Documentation"
msgstr "Teuliadur"

#: share/compssUsers.pl:71 share/compssUsers.pl:175
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""

#: share/compssUsers.pl:75 share/compssUsers.pl:178
#, c-format
msgid "LSB"
msgstr "LSB"

#: share/compssUsers.pl:76 share/compssUsers.pl:179
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""

#: share/compssUsers.pl:86
#, c-format
msgid "Apache"
msgstr "Apache"

#: share/compssUsers.pl:89
#, c-format
msgid "Groupware"
msgstr "Strollant"

#: share/compssUsers.pl:90
#, c-format
msgid "Kolab Server"
msgstr "Servijer Kolab"

#: share/compssUsers.pl:93 share/compssUsers.pl:134
#, c-format
msgid "Firewall/Router"
msgstr "Moger tan"

#: share/compssUsers.pl:94 share/compssUsers.pl:135
#, c-format
msgid "Internet gateway"
msgstr "Dreuzell an Internet"

#: share/compssUsers.pl:97
#, c-format
msgid "Mail/News"
msgstr "Posteloù/keleier"

#: share/compssUsers.pl:98
#, c-format
msgid "Postfix mail server, Inn news server"
msgstr "Servijer posteloù Postfix, servijer keleier Inn"

#: share/compssUsers.pl:101
#, fuzzy, c-format
msgid "Directory Server"
msgstr "Kavlec'h"

#: share/compssUsers.pl:105
#, c-format
msgid "FTP Server"
msgstr "Servijer FTP"

#: share/compssUsers.pl:106
#, c-format
msgid "ProFTPd"
msgstr "ProFTPd"

#: share/compssUsers.pl:109
#, c-format
msgid "DNS/NIS"
msgstr "DNS/NIS"

#: share/compssUsers.pl:110
#, fuzzy, c-format
msgid "Domain Name and Network Information Server"
msgstr "Titouroù war ar rouedad (GNOME)"

#: share/compssUsers.pl:113
#, fuzzy, c-format
msgid "File and Printer Sharing Server"
msgstr "Servijer moullañ"

#: share/compssUsers.pl:114
#, c-format
msgid "NFS Server, Samba server"
msgstr "Servijer NFS, servijer Samba"

#: share/compssUsers.pl:117 share/compssUsers.pl:130
#, c-format
msgid "Database"
msgstr "Stlennvon"

#: share/compssUsers.pl:118
#, c-format
msgid "PostgreSQL and MySQL Database Server"
msgstr "Servijer stlennvon PostgreSQL ha MySQL "

#: share/compssUsers.pl:122
#, c-format
msgid "Web/FTP"
msgstr "Web/FTP"

#: share/compssUsers.pl:123
#, c-format
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"

#: share/compssUsers.pl:126
#, c-format
msgid "Mail"
msgstr "Mailh"

#: share/compssUsers.pl:127
#, c-format
msgid "Postfix mail server"
msgstr "Servijer mailh Postfix"

#: share/compssUsers.pl:131
#, c-format
msgid "PostgreSQL or MySQL database server"
msgstr "Servijer stlennvon PostgreSQL pe MySQL "

#: share/compssUsers.pl:138
#, c-format
msgid "Network Computer server"
msgstr "Servijer rouedad "

#: share/compssUsers.pl:139
#, c-format
msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""

#: share/compssUsers.pl:147
#, c-format
msgid "KDE Workstation"
msgstr "Burev KDE"

#: share/compssUsers.pl:148
#, c-format
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""

#: share/compssUsers.pl:152
#, c-format
msgid "GNOME Workstation"
msgstr "Burev GNOME"

#: share/compssUsers.pl:153
#, c-format
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""

#: share/compssUsers.pl:156
#, fuzzy, c-format
msgid "IceWm Desktop"
msgstr "Burev"

#: share/compssUsers.pl:160
#, c-format
msgid "Other Graphical Desktops"
msgstr "All burevioù c'hrafek"

#: share/compssUsers.pl:161
#, c-format
msgid "Window Maker, Enlightenment, Fvwm, etc"
msgstr ""

#: share/compssUsers.pl:184
#, c-format
msgid "Utilities"
msgstr "Mavegoù"

#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:381
#, c-format
msgid "SSH Server"
msgstr "Servijer SSH"

#: share/compssUsers.pl:191
#, c-format
msgid "Webmin"
msgstr "Webmin"

#: share/compssUsers.pl:192
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Servijer Webmin ar gefluniadur a-bell "

#: share/compssUsers.pl:196
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Kefluniadur ar rouedad"

#: share/compssUsers.pl:197
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""

#: share/compssUsers.pl:201
#, c-format
msgid "Mandriva Wizards"
msgstr "Skozelerien Mandriva"

#: share/compssUsers.pl:202
#, c-format
msgid "Wizards to configure server"
msgstr "Skozelerien evit kefluniañ ar servijer"

#: standalone.pm:21
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2, or (at your option)\n"
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
msgstr ""

#: standalone.pm:40
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default             : save default directories.\n"
"--debug               : show all debug messages.\n"
"--show-conf           : list of files or directories to backup.\n"
"--config-info         : explain configuration file options (for non-X "
"users).\n"
"--daemon              : use daemon configuration. \n"
"--help                : show this message.\n"
"--version             : show version number.\n"
msgstr ""

#: standalone.pm:52
#, c-format
msgid ""
"[--boot] [--splash]\n"
"OPTIONS:\n"
"  --boot            - enable to configure boot loader\n"
"  --splash          - enable to configure boot theme\n"
"default mode: offer to configure autologin feature"
msgstr ""

#: standalone.pm:57
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - print this help message.\n"
"  --report          - program should be one of Mandriva Linux tools\n"
"  --incident        - program should be one of Mandriva Linux tools"
msgstr ""

#: standalone.pm:63
#, c-format
msgid ""
"[--add]\n"
"  --add             - \"add a network interface\" wizard\n"
"  --del             - \"delete a network interface\" wizard\n"
"  --skip-wizard     - manage connections\n"
"  --internet        - configure internet\n"
"  --wizard          - like --add"
msgstr ""

#: standalone.pm:69
#, c-format
msgid ""
"\n"
"Font Importation and monitoring application\n"
"\n"
"OPTIONS:\n"
"--windows_import : import from all available windows partitions.\n"
"--xls_fonts      : show all fonts that already exist from xls\n"
"--install        : accept any font file and any directory.\n"
"--uninstall      : uninstall any font or any directory of font.\n"
"--replace        : replace all font if already exist\n"
"--application    : 0 none application.\n"
"                 : 1 all application available supported.\n"
"                 : name_of_application like  so for staroffice \n"
"                 : and gs for ghostscript for only this one."
msgstr ""

#: standalone.pm:84
#, c-format
msgid ""
"[OPTIONS]...\n"
"Mandriva Linux Terminal Server Configurator\n"
"--enable         : enable MTS\n"
"--disable        : disable MTS\n"
"--start          : start MTS\n"
"--stop           : stop MTS\n"
"--adduser        : add an existing system user to MTS (requires username)\n"
"--deluser        : delete an existing system user from MTS (requires "
"username)\n"
"--addclient      : add a client machine to MTS (requires MAC address, IP, "
"nbi image name)\n"
"--delclient      : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""

#: standalone.pm:96
#, c-format
msgid "[keyboard]"
msgstr "[stokellaoueg]"

#: standalone.pm:97
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""

#: standalone.pm:98
#, c-format
msgid ""
"[OPTIONS]\n"
"Network & Internet connection and monitoring application\n"
"\n"
"--defaultintf interface : show this interface by default\n"
"--connect : connect to internet if not already connected\n"
"--disconnect : disconnect to internet if already connected\n"
"--force : used with (dis)connect : force (dis)connection.\n"
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : do not be interactive. To be used with (dis)connect."
msgstr ""

#: standalone.pm:107
#, c-format
msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr ""

#: standalone.pm:108
#, c-format
msgid ""
"[OPTION]...\n"
"  --no-confirmation      do not ask first confirmation question in Mandriva "
"Update mode\n"
"  --no-verify-rpm        do not verify packages signatures\n"
"  --changelog-first      display changelog before filelist in the "
"description window\n"
"  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
msgstr ""

#: standalone.pm:113
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""

#: standalone.pm:114
#, c-format
msgid ""
" [everything]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolution"
msgstr ""

#: standalone.pm:146
#, c-format
msgid ""
"\n"
"Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
"\n"
"arveriadur : %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"\"\n"
"\"testing] [-v|--version] "

#: standalone/XFdrake:59
#, fuzzy, c-format
msgid "You need to reboot for changes to take effect"
msgstr "Ret e vo deoc'h adloc'hañ a-raok ma talvezo ar c'hemm"

#: standalone/XFdrake:90
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"

#: standalone/XFdrake:94
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""

#: standalone/drakTermServ:74
#, c-format
msgid "Useless without Terminal Server"
msgstr ""

#: standalone/drakTermServ:106 standalone/drakTermServ:112
#, c-format
msgid "%s: %s requires a username...\n"
msgstr ""

#: standalone/drakTermServ:123
#, c-format
msgid ""
"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
"0/1 for Local Config...\n"
msgstr ""

#: standalone/drakTermServ:129
#, c-format
msgid "%s: %s requires hostname...\n"
msgstr ""

#: standalone/drakTermServ:211 standalone/drakTermServ:214
#, c-format
msgid "Terminal Server Configuration"
msgstr "Kefluniadur ar servijer termenell"

#: standalone/drakTermServ:220
#, c-format
msgid "Enable Server"
msgstr "Bevaat ar servijer"

#: standalone/drakTermServ:226
#, c-format
msgid "Disable Server"
msgstr "Marvaat ar servijer"

#: standalone/drakTermServ:232
#, c-format
msgid "Start Server"
msgstr "Loc'hañ ar servijer"

#: standalone/drakTermServ:238
#, c-format
msgid "Stop Server"
msgstr "Plaenaozañ ar servijer"

#: standalone/drakTermServ:247
#, c-format
msgid "Etherboot Floppy/ISO"
msgstr "Pladennig/ISO Etherboot"

#: standalone/drakTermServ:251
#, c-format
msgid "Net Boot Images"
msgstr ""

#: standalone/drakTermServ:258
#, c-format
msgid "Add/Del Users"
msgstr "Ouzhpennañ pe dilemel arveriadoù"

#: standalone/drakTermServ:262
#, c-format
msgid "Add/Del Clients"
msgstr ""

#: standalone/drakTermServ:270
#, c-format
msgid "Images"
msgstr "Skeudennoù"

#: standalone/drakTermServ:271
#, c-format
msgid "Clients/Users"
msgstr ""

#: standalone/drakTermServ:289 standalone/drakbug:47
#, c-format
msgid "First Time Wizard"
msgstr ""

#: standalone/drakTermServ:325 standalone/drakTermServ:326
#, c-format
msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
msgstr ""

#: standalone/drakTermServ:332
#, c-format
msgid ""
"\n"
" This wizard routine will:\n"
" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
"\t2) Setup DHCP.\n"
"\t\n"
"After doing these steps, the wizard will:\n"
"\t\n"
"    a) Make all "
"nbis.                                                                \n"
"    b) Activate the "
"server.                                                          \n"
"    c) Start the "
"server.                                                     \n"
"    d) Synchronize the shadow files so that all users, including root, \n"
"       are added to the shadow$$CLIENT$$ "
"file.                                              \n"
"    e) Ask you to make a boot floppy.\n"
"    f) If it's thin clients, ask if you want to restart KDM.\n"
msgstr ""

#: standalone/drakTermServ:377
#, c-format
msgid "Cancel Wizard"
msgstr "Nullañ ar skoazeller"

#: standalone/drakTermServ:392
#, c-format
msgid "Please save dhcpd config!"
msgstr ""

#: standalone/drakTermServ:420
#, c-format
msgid "Use thin clients."
msgstr ""

#: standalone/drakTermServ:422
#, c-format
msgid "Sync client X keyboard settings with server."
msgstr ""

#: standalone/drakTermServ:424
#, c-format
msgid ""
"Please select default client type.\n"
"    'Thin' clients run everything off the server's CPU/RAM, using the client "
"display.\n"
"    'Fat' clients use their own CPU/RAM but the server's filesystem."
msgstr ""

#: standalone/drakTermServ:444
#, c-format
msgid "Creating net boot images for all kernels"
msgstr ""

#: standalone/drakTermServ:445 standalone/drakTermServ:765
#: standalone/drakTermServ:781
#, c-format
msgid "This will take a few minutes."
msgstr ""

#: standalone/drakTermServ:454 standalone/drakTermServ:495
#, c-format
msgid "Done!"
msgstr "Graet !"

#: standalone/drakTermServ:466 standalone/drakTermServ:846
#, c-format
msgid "%s failed"
msgstr ""

#: standalone/drakTermServ:475
#, c-format
msgid ""
"Not enough space to create\n"
"NBIs in %s.\n"
"Needed: %d MB, Free: %d MB"
msgstr ""

#: standalone/drakTermServ:481
#, c-format
msgid "Syncing server user list with client list, including root."
msgstr ""

#: standalone/drakTermServ:501
#, c-format
msgid ""
"In order to enable changes made for thin clients, the display manager must "
"be restarted. Restart now?"
msgstr ""

#: standalone/drakTermServ:536
#, fuzzy, c-format
msgid "Terminal Server Overview"
msgstr "Kefluniañ ar proksioù"

#: standalone/drakTermServ:537
#, c-format
msgid ""
"        - Create Etherboot Enabled Boot Images:\n"
"        \tTo boot a kernel via etherboot, a special kernel/initrd image must "
"be created.\n"
"        \tmkinitrd-net does much of this work and drakTermServ is just a "
"graphical \n"
"        \tinterface to help manage/customize these images. To create the "
"file \n"
"        \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
"include in \n"
"        \tdhcpd.conf, you should create the etherboot images for at least "
"one full kernel."
msgstr ""

#: standalone/drakTermServ:543
#, c-format
msgid ""
"        - Maintain /etc/dhcpd.conf:\n"
"        \tTo net boot clients, each client needs a dhcpd.conf entry, "
"assigning an IP \n"
"        \taddress and net boot images to the machine. drakTermServ helps "
"create/remove \n"
"        \tthese entries.\n"
"\t\t\t\n"
"        \t(PCI cards may omit the image - etherboot will request the correct "
"image. \n"
"\t\t\tYou should also consider that when etherboot looks for the images, it "
"expects \n"
"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
"\t\t\t \n"
"        \tA typical dhcpd.conf stanza to support a diskless client looks "
"like:"
msgstr ""

#: standalone/drakTermServ:561
#, c-format
msgid ""
"        While you can use a pool of IP addresses, rather than setup a "
"specific entry for\n"
"        a client machine, using a fixed address scheme facilitates using the "
"functionality\n"
"        of client-specific configuration files that ClusterNFS provides.\n"
"\t\t\t\n"
"        Note: The '#type' entry is only used by drakTermServ.  Clients can "
"either be 'thin'\n"
"        or 'fat'.  Thin clients run most software on the server via XDMCP, "
"while fat clients run \n"
"        most software on the client machine. A special inittab, %s is\n"
"        written for thin clients. System config files xdm-config, kdmrc, and "
"gdm.conf are \n"
"        modified if thin clients are used, to enable XDMCP. Since there are "
"security issues in \n"
"        using XDMCP, hosts.deny and hosts.allow are modified to limit access "
"to the local\n"
"        subnet.\n"
"\t\t\t\n"
"        Note: The '#hdw_config' entry is also only used by drakTermServ.  "
"Clients can either \n"
"        be 'true' or 'false'.  'true' enables root login at the client "
"machine and allows local \n"
"        hardware configuration of sound, mouse, and X, using the 'drak' "
"tools. This is enabled \n"
"        by creating separate config files associated with the client's IP "
"address and creating \n"
"        read/write mount points to allow the client to alter the file. Once "
"you are satisfied \n"
"        with the configuration, you can remove root login privileges from "
"the client.\n"
"\t\t\t\n"
"        Note: You must stop/start the server after adding or changing "
"clients."
msgstr ""

#: standalone/drakTermServ:581
#, c-format
msgid ""
"        - Maintain /etc/exports:\n"
"        \tClusternfs allows export of the root filesystem to diskless "
"clients. drakTermServ\n"
"        \tsets up the correct entry to allow anonymous access to the root "
"filesystem from\n"
"        \tdiskless clients.\n"
"\n"
"        \tA typical exports entry for clusternfs is:\n"
"        \t\t\n"
"        \t/\t\t\t\t\t(ro,all_squash)\n"
"        \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
"\t\t\t\n"
"        \tWith SUBNET/MASK being defined for your network."
msgstr ""

#: standalone/drakTermServ:593
#, c-format
msgid ""
"        - Maintain %s:\n"
"        \tFor users to be able to log into the system from a diskless "
"client, their entry in\n"
"        \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
"        \thelps in this respect by adding or removing system users from this "
"file."
msgstr ""

#: standalone/drakTermServ:597
#, c-format
msgid ""
"        - Per client %s:\n"
"        \tThrough clusternfs, each diskless client can have its own unique "
"configuration files\n"
"        \ton the root filesystem of the server. By allowing local client "
"hardware configuration, \n"
"        \tdrakTermServ will help create these files."
msgstr ""

#: standalone/drakTermServ:602
#, c-format
msgid ""
"        - Per client system configuration files:\n"
"        \tThrough clusternfs, each diskless client can have its own unique "
"configuration files\n"
"        \ton the root filesystem of the server. By allowing local client "
"hardware configuration, \n"
"        \tclients can customize files such as /etc/modules.conf, /etc/"
"sysconfig/mouse, \n"
"        \t/etc/sysconfig/keyboard on a per-client basis.\n"
"\n"
"        Note: Enabling local client hardware configuration does enable root "
"login to the terminal \n"
"        server on each client machine that has this feature enabled.  Local "
"configuration can be\n"
"        turned back off, retaining the configuration files, once the client "
"machine is configured."
msgstr ""

#: standalone/drakTermServ:611
#, c-format
msgid ""
"        - /etc/xinetd.d/tftp:\n"
"        \tdrakTermServ will configure this file to work in conjunction with "
"the images created\n"
"        \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
"the boot image to \n"
"        \teach diskless client.\n"
"\n"
"        \tA typical TFTP configuration file looks like:\n"
"        \t\t\n"
"        \tservice tftp\n"
"\t\t\t{\n"
"                        disable         = no\n"
"                        socket_type  = dgram\n"
"                        protocol        = udp\n"
"                        wait             = yes\n"
"                        user             = root\n"
"                        server          = /usr/sbin/in.tftpd\n"
"                        server_args  = -s /var/lib/tftpboot\n"
"        \t}\n"
"        \t\t\n"
"        \tThe changes here from the default installation are changing the "
"disable flag to\n"
"        \t'no' and changing the directory path to /var/lib/tftpboot, where "
"mkinitrd-net\n"
"        \tputs its images."
msgstr ""

#: standalone/drakTermServ:632
#, c-format
msgid ""
"        - Create etherboot floppies/CDs:\n"
"        \tThe diskless client machines need either ROM images on the NIC, or "
"a boot floppy\n"
"        \tor CD to initiate the boot sequence.  drakTermServ will help "
"generate these\n"
"        \timages, based on the NIC in the client machine.\n"
"        \t\t\n"
"        \tA basic example of creating a boot floppy for a 3Com 3c509 "
"manually:\n"
"        \t\t\n"
"        \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
msgstr ""

#: standalone/drakTermServ:665
#, c-format
msgid "Boot Floppy"
msgstr "Bladennig loc'h"

#: standalone/drakTermServ:667
#, c-format
msgid "Boot ISO"
msgstr ""

#: standalone/drakTermServ:669
#, c-format
msgid "PXE Image"
msgstr "Skeudenn PXE"

#: standalone/drakTermServ:730
#, c-format
msgid "Default kernel version"
msgstr "Doare dre ziouer ar galon"

#: standalone/drakTermServ:733
#, c-format
msgid "Create PXE images."
msgstr ""

#: standalone/drakTermServ:763
#, c-format
msgid "Build Whole Kernel -->"
msgstr ""

#: standalone/drakTermServ:770
#, c-format
msgid "No kernel selected!"
msgstr "Kalon diuzet ebet !"

#: standalone/drakTermServ:773
#, c-format
msgid "Build Single NIC -->"
msgstr ""

#: standalone/drakTermServ:777
#, fuzzy, c-format
msgid "No NIC selected!"
msgstr "Lugerezh ar voullerez"

#: standalone/drakTermServ:780
#, c-format
msgid "Build All Kernels -->"
msgstr ""

#: standalone/drakTermServ:795
#, c-format
msgid "<-- Delete"
msgstr "<-- Dilemel"

#: standalone/drakTermServ:800
#, c-format
msgid "No image selected!"
msgstr "N'eus skeudenn dibabet ebet !"

#: standalone/drakTermServ:803
#, c-format
msgid "Delete All NBIs"
msgstr "Dibabit holl NBIoù"

#: standalone/drakTermServ:932
#, c-format
msgid ""
"!!! Indicates the password in the system database is different than\n"
" the one in the Terminal Server database.\n"
"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""

#: standalone/drakTermServ:937
#, c-format
msgid "Add User -->"
msgstr "Ouzhpennañ un arveriad -->"

#: standalone/drakTermServ:943
#, c-format
msgid "<-- Del User"
msgstr "<-- Dilemel an arveriad"

#: standalone/drakTermServ:979
#, c-format
msgid "type: %s"
msgstr "seurt : %s"

#: standalone/drakTermServ:983
#, c-format
msgid "local config: %s"
msgstr "kefluniadur lec'hel : %s"

#: standalone/drakTermServ:1013
#, fuzzy, c-format
msgid ""
"Allow local hardware\n"
"configuration."
msgstr "Kefluniadur goude staliañ"

#: standalone/drakTermServ:1022
#, c-format
msgid "No net boot images created!"
msgstr ""

#: standalone/drakTermServ:1041
#, c-format
msgid "Thin Client"
msgstr ""

#: standalone/drakTermServ:1045
#, c-format
msgid "Allow Thin Clients"
msgstr ""

#: standalone/drakTermServ:1046
#, c-format
msgid ""
"Sync client X keyboard\n"
" settings with server."
msgstr ""

#: standalone/drakTermServ:1047
#, c-format
msgid "Add Client -->"
msgstr ""

#: standalone/drakTermServ:1061
#, c-format
msgid "type: fat"
msgstr "seurt : pounner"

#: standalone/drakTermServ:1062
#, c-format
msgid "type: thin"
msgstr "seurt : skanñ"

#: standalone/drakTermServ:1069
#, c-format
msgid "local config: false"
msgstr "kefluniadur lec'hel : n'eo ket gwir"

#: standalone/drakTermServ:1070
#, c-format
msgid "local config: true"
msgstr "kefluniadur lec'hel : gwir eo"

#: standalone/drakTermServ:1078
#, c-format
msgid "<-- Edit Client"
msgstr "<-- &Aozañ an c'hliant"

#: standalone/drakTermServ:1104
#, c-format
msgid "Disable Local Config"
msgstr "Marvaat ar gefluniadur lec'hel"

#: standalone/drakTermServ:1111
#, c-format
msgid "Delete Client"
msgstr "Dilemel an c'hliant"

#: standalone/drakTermServ:1120
#, c-format
msgid "dhcpd Config..."
msgstr "kefluniañ dhcpd ..."

#: standalone/drakTermServ:1135
#, c-format
msgid ""
"Need to restart the Display Manager for full changes to take effect. \n"
"(service dm restart - at the console)"
msgstr ""

#: standalone/drakTermServ:1180
#, c-format
msgid "Thin clients will not work with autologin. Disable autologin?"
msgstr ""

#: standalone/drakTermServ:1196
#, c-format
msgid "All clients will use %s"
msgstr "An holl gliantoù e vo oc'h implij %s"

#: standalone/drakTermServ:1230
#, c-format
msgid "Subnet:"
msgstr "Rannrouedad :"

#: standalone/drakTermServ:1237
#, c-format
msgid "Netmask:"
msgstr "Maskl rouedad :"

#: standalone/drakTermServ:1244
#, c-format
msgid "Routers:"
msgstr ""

#: standalone/drakTermServ:1251
#, c-format
msgid "Subnet Mask:"
msgstr "Maskl rannrouedad :"

#: standalone/drakTermServ:1258
#, c-format
msgid "Broadcast Address:"
msgstr "Chomlec'h skignañ :"

#: standalone/drakTermServ:1265
#, c-format
msgid "Domain Name:"
msgstr "Anv an domani :"

#: standalone/drakTermServ:1273
#, c-format
msgid "Name Servers:"
msgstr "Anv servijerioù"

#: standalone/drakTermServ:1284
#, c-format
msgid "IP Range Start:"
msgstr "Ar skeul IP kentañ :"

#: standalone/drakTermServ:1285
#, c-format
msgid "IP Range End:"
msgstr "Ar skeul IP diwezhañ :"

#: standalone/drakTermServ:1327
#, c-format
msgid "Append TS Includes To Existing Config"
msgstr ""

#: standalone/drakTermServ:1329
#, c-format
msgid "Write Config"
msgstr "Skrivañ ar gefluniadur"

#: standalone/drakTermServ:1345
#, c-format
msgid "dhcpd Server Configuration"
msgstr "Kefluniadur ar servijer dhcpd"

#: standalone/drakTermServ:1346
#, c-format
msgid ""
"Most of these values were extracted\n"
"from your running system.\n"
"You can modify as needed."
msgstr ""

#: standalone/drakTermServ:1349
#, c-format
msgid ""
"Dynamic IP Address Pool\n"
"(needed for PXE clients):"
msgstr ""

#: standalone/drakTermServ:1502
#, c-format
msgid "Write to %s failed!"
msgstr ""

#: standalone/drakTermServ:1514
#, c-format
msgid "Please insert floppy disk:"
msgstr "Lakait ur bladennig el lenner map plij :"

#: standalone/drakTermServ:1518
#, c-format
msgid "Could not access the floppy!"
msgstr "N'hellan ket tizhout ar bladennig !"

#: standalone/drakTermServ:1520
#, c-format
msgid "Floppy can be removed now"
msgstr ""

#: standalone/drakTermServ:1523
#, c-format
msgid "No floppy drive available!"
msgstr "Lenner pladennig hegerz ebet !"

#: standalone/drakTermServ:1529
#, c-format
msgid "PXE image is %s/%s"
msgstr "Ar skeudenn PXE zo %s/%s"

#: standalone/drakTermServ:1531
#, c-format
msgid "Error writing %s/%s"
msgstr "Fazi en ur skrivañ %s/%s"

#: standalone/drakTermServ:1541
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Ar skeudenn ISO Etherboot a zo %s"

#: standalone/drakTermServ:1543
#, c-format
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""

#: standalone/drakTermServ:1564
#, c-format
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Ezhomm m'eus krouiñ  /etc/dhcpd.conf da gentañ !"

#: standalone/drakTermServ:1723
#, c-format
msgid "%s passwd bad in Terminal Server - rewriting...\n"
msgstr ""

#: standalone/drakTermServ:1736
#, c-format
msgid "%s is not a user..\n"
msgstr "N'eo ket un arveriad %s ...\n"

#: standalone/drakTermServ:1737
#, c-format
msgid "%s is already a Terminal Server user\n"
msgstr ""

#: standalone/drakTermServ:1739
#, c-format
msgid "Addition of %s to Terminal Server failed!\n"
msgstr ""

#: standalone/drakTermServ:1741
#, c-format
msgid "%s added to Terminal Server\n"
msgstr "%s e oa ouzphenn ouzh ar servijer termenell\n"

#: standalone/drakTermServ:1758
#, c-format
msgid "Deleted %s...\n"
msgstr "%s dilemelet ...\n"

#: standalone/drakTermServ:1760 standalone/drakTermServ:1833
#, c-format
msgid "%s not found...\n"
msgstr "N'eo ket bet kavet %s ...\n"

#: standalone/drakTermServ:1861
#, c-format
msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""

#: standalone/drakTermServ:2001
#, c-format
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Kefluniadur kemmet - adloc'hañ clusternfs/dhcpd ?"

#: standalone/drakautoinst:38
#, c-format
msgid "Error!"
msgstr "Fazi !"

#: standalone/drakautoinst:39
#, c-format
msgid "I can not find needed image file `%s'."
msgstr ""

#: standalone/drakautoinst:41
#, c-format
msgid "Auto Install Configurator"
msgstr "Keflunier ar staliadur emgefreek"

#: standalone/drakautoinst:42
#, c-format
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
"\n"
"With that feature, you will be able to replay the installation you've "
"performed on this computer, being interactively prompted for some steps, in "
"order to change their values.\n"
"\n"
"For maximum safety, the partitioning and formatting will never be performed "
"automatically, whatever you chose during the install of this computer.\n"
"\n"
"Press ok to continue."
msgstr ""

#: standalone/drakautoinst:60
#, c-format
msgid "replay"
msgstr "adc'hoari"

#: standalone/drakautoinst:60 standalone/drakautoinst:69
#, c-format
msgid "manual"
msgstr "diwar zorn"

#: standalone/drakautoinst:64
#, fuzzy, c-format
msgid "Automatic Steps Configuration"
msgstr "Kefluniadur goude staliañ"

#: standalone/drakautoinst:65
#, c-format
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""

#: standalone/drakautoinst:77 standalone/drakautoinst:78
#: standalone/drakautoinst:92
#, c-format
msgid "Creating auto install floppy"
msgstr "O krouiñ ur bladennig staliañ emgefreek"

#: standalone/drakautoinst:90
#, c-format
msgid "Insert another blank floppy in drive %s (for drivers disk)"
msgstr ""
"Lakait ur bladennig gwerc'h all el lenner %s (evit pladenn ar sturieroù)"

#: standalone/drakautoinst:91
#, c-format
msgid "Creating auto install floppy (drivers disk)"
msgstr "O krouiñ ur bladennig staliañ emgefreek (pladenn ar sturieroù)"

#: standalone/drakautoinst:156
#, c-format
msgid ""
"\n"
"Welcome.\n"
"\n"
"The parameters of the auto-install are available in the sections on the left"
msgstr ""

#: standalone/drakautoinst:251
#, c-format
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""

#: standalone/drakautoinst:287
#, c-format
msgid "Auto Install"
msgstr "Staliañ emgefreek"

#: standalone/drakautoinst:356
#, c-format
msgid "Add an item"
msgstr "Ouzhpennañ un hini"

#: standalone/drakautoinst:363
#, c-format
msgid "Remove the last item"
msgstr "Lemel an hini diwezhañ"

#: standalone/drakbackup:153
#, c-format
msgid ""
"Expect is an extension to the TCL scripting language that allows interactive "
"sessions without user intervention."
msgstr ""

#: standalone/drakbackup:154
#, c-format
msgid "Store the password for this system in drakbackup configuration."
msgstr ""

#: standalone/drakbackup:155
#, c-format
msgid ""
"For a multisession CD, only the first session will erase the cdrw. Otherwise "
"the cdrw is erased before each backup."
msgstr ""

#: standalone/drakbackup:156
#, c-format
msgid ""
"This option will save files that have changed.  Exact behavior depends on "
"whether incremental or differential mode is used."
msgstr ""

#: standalone/drakbackup:157
#, c-format
msgid ""
"Incremental backups only save files that have changed or are new since the "
"last backup."
msgstr ""

#: standalone/drakbackup:158
#, c-format
msgid ""
"Differential backups only save files that have changed or are new since the "
"original 'base' backup."
msgstr ""

#: standalone/drakbackup:159
#, c-format
msgid ""
"This should be a local user or email address that you want the backup "
"results sent to. You will need to define a functioning mail server."
msgstr ""

#: standalone/drakbackup:160
#, c-format
msgid ""
"This should be the return address that you want the backup results sent "
"from. Default is drakbackup."
msgstr ""

#: standalone/drakbackup:161
#, c-format
msgid ""
"Files or wildcards listed in a .backupignore file at the top of a directory "
"tree will not be backed up."
msgstr ""

#: standalone/drakbackup:162
#, c-format
msgid ""
"For backups to other media, files are still created on the hard drive, then "
"moved to the other media.  Enabling this option will remove the hard drive "
"tar files after the backup."
msgstr ""

#: standalone/drakbackup:163
#, c-format
msgid ""
"Some protocols, like rsync, may be configured at the server end.  Rather "
"than using a directory path, you would use the 'module' name for the service "
"path."
msgstr ""

#: standalone/drakbackup:164
#, c-format
msgid ""
"Custom allows you to specify your own day and time.  The other options use "
"run-parts in /etc/crontab."
msgstr ""

#: standalone/drakbackup:327
#, c-format
msgid "No media selected for cron operation."
msgstr ""

#: standalone/drakbackup:331
#, c-format
msgid "No interval selected for cron operation."
msgstr ""

#: standalone/drakbackup:378
#, c-format
msgid "Interval cron not available as non-root"
msgstr ""

#: standalone/drakbackup:465 standalone/logdrake:437
#, c-format
msgid "\"%s\" neither is a valid email nor is an existing local user!"
msgstr ""

#: standalone/drakbackup:469 standalone/logdrake:442
#, c-format
msgid ""
"\"%s\" is a local user, but you did not select a local smtp, so you must use "
"a complete email address!"
msgstr ""

#: standalone/drakbackup:478
#, c-format
msgid "Valid user list changed, rewriting config file."
msgstr ""

#: standalone/drakbackup:480
#, c-format
msgid "Old user list:\n"
msgstr ""

#: standalone/drakbackup:482
#, c-format
msgid "New user list:\n"
msgstr ""

#: standalone/drakbackup:511
#, c-format
msgid ""
"\n"
"                      DrakBackup Report \n"
msgstr ""

#: standalone/drakbackup:512
#, c-format
msgid ""
"\n"
"                      DrakBackup Daemon Report\n"
msgstr ""

#: standalone/drakbackup:518
#, c-format
msgid ""
"\n"
"                    DrakBackup Report Details\n"
"\n"
"\n"
msgstr ""

#: standalone/drakbackup:543 standalone/drakbackup:614
#: standalone/drakbackup:670
#, fuzzy, c-format
msgid "Total progress"
msgstr "Amprouiñ ar porzhioù"

#: standalone/drakbackup:596
#, c-format
msgid ""
"%s exists, delete?\n"
"\n"
"If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
msgstr ""

#: standalone/drakbackup:605
#, c-format
msgid "This may take a moment to generate the keys."
msgstr ""

#: standalone/drakbackup:612
#, fuzzy, c-format
msgid "Cannot spawn %s."
msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"

#: standalone/drakbackup:629
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""

#: standalone/drakbackup:630
#, c-format
msgid "Bad password on %s"
msgstr "N'eo ket tremenger mad war %s"

#: standalone/drakbackup:631
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""

#: standalone/drakbackup:632
#, c-format
msgid "Can not find %s on %s"
msgstr "Ne m'eus ket bet kavout %s e-barzh %s"

#: standalone/drakbackup:636
#, c-format
msgid "%s not responding"
msgstr ""

#: standalone/drakbackup:640
#, c-format
msgid ""
"Transfer successful\n"
"You may want to verify you can login to the server with:\n"
"\n"
"ssh -i %s %s@%s\n"
"\n"
"without being prompted for a password."
msgstr ""

#: standalone/drakbackup:690
#, c-format
msgid "No CD-R/DVD-R in drive!"
msgstr "N'eus ket ur bladennig er CD-R/DVD-R !"

#: standalone/drakbackup:694
#, c-format
msgid "Does not appear to be recordable media!"
msgstr ""

#: standalone/drakbackup:699
#, c-format
msgid "Not erasable media!"
msgstr ""

#: standalone/drakbackup:741
#, c-format
msgid "This may take a moment to erase the media."
msgstr ""

#: standalone/drakbackup:799
#, c-format
msgid "Permission problem accessing CD."
msgstr ""

#: standalone/drakbackup:826
#, c-format
msgid "No tape in %s!"
msgstr "seizenn ebet e %s !"

#: standalone/drakbackup:932
#, c-format
msgid ""
"Backup destination quota exceeded!\n"
"%d MB used vs %d MB allocated."
msgstr ""

#: standalone/drakbackup:951 standalone/drakbackup:983
#, c-format
msgid "Backup system files..."
msgstr "Gwareziñ restroù ar reizhiad ..."

#: standalone/drakbackup:984 standalone/drakbackup:1024
#, fuzzy, c-format
msgid "Hard Disk Backup files..."
msgstr "Restr gwareziñ siek"

#: standalone/drakbackup:1023
#, c-format
msgid "Backup User files..."
msgstr "Gwareziñ restroù an arveriaded ..."

#: standalone/drakbackup:1057
#, c-format
msgid "Backup Other files..."
msgstr "Gwareziñ restroù all ..."

#: standalone/drakbackup:1058
#, c-format
msgid "Hard Disk Backup Progress..."
msgstr "Emaon o wareziñ ar bladenn ..."

#: standalone/drakbackup:1063
#, fuzzy, c-format
msgid "No changes to backup!"
msgstr "Restr gwareziñ siek"

#: standalone/drakbackup:1080 standalone/drakbackup:1103
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""

#: standalone/drakbackup:1089
#, c-format
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""

#: standalone/drakbackup:1090
#, c-format
msgid ""
"Error during sending file via FTP. Please correct your FTP configuration."
msgstr ""

#: standalone/drakbackup:1092
#, c-format
msgid "file list sent by FTP: %s\n"
msgstr ""

#: standalone/drakbackup:1108
#, c-format
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""

#: standalone/drakbackup:1113
#, c-format
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""

#: standalone/drakbackup:1122
#, c-format
msgid "Error sending mail. Your report mail was not sent."
msgstr ""

#: standalone/drakbackup:1123
#, c-format
msgid " Error while sending mail. \n"
msgstr "Fazi en ur kas ar postel. \n"

#: standalone/drakbackup:1153
#, c-format
msgid "Can not create catalog!"
msgstr "Ne m'eus ket krouiñ ar c'hatalog !"

#: standalone/drakbackup:1394
#, c-format
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""

#: standalone/drakbackup:1395
#, c-format
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""

#: standalone/drakbackup:1396
#, c-format
msgid "Backup your System files. (/etc directory)"
msgstr "Gwareziñ restroù hor reizhiad. (renkell /etc)"

#: standalone/drakbackup:1397 standalone/drakbackup:1461
#: standalone/drakbackup:1527
#, c-format
msgid "Use Incremental/Differential Backups  (do not replace old backups)"
msgstr ""

#: standalone/drakbackup:1399 standalone/drakbackup:1463
#: standalone/drakbackup:1529
#, c-format
msgid "Use Incremental Backups"
msgstr ""

#: standalone/drakbackup:1399 standalone/drakbackup:1463
#: standalone/drakbackup:1529
#, c-format
msgid "Use Differential Backups"
msgstr ""

#: standalone/drakbackup:1401
#, c-format
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""

#: standalone/drakbackup:1402
#, c-format
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""

#: standalone/drakbackup:1433
#, fuzzy, c-format
msgid "Please check all users that you want to include in your backup."
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."

#: standalone/drakbackup:1460
#, c-format
msgid "Do not include the browser cache"
msgstr ""

#: standalone/drakbackup:1514
#, c-format
msgid "Select the files or directories and click on 'OK'"
msgstr "Dibabit ar restroù pe ar renkelloù ha klikit ouzh « Mat eo »"

#: standalone/drakbackup:1515 standalone/drakfont:657
#, c-format
msgid "Remove Selected"
msgstr "Lemel an hini dibabet"

#: standalone/drakbackup:1578
#, c-format
msgid "Users"
msgstr "Arveriadioù"

#: standalone/drakbackup:1598
#, c-format
msgid "Use network connection to backup"
msgstr "Implijit ur gevreadenn evit gwareziñ"

#: standalone/drakbackup:1600
#, c-format
msgid "Net Method:"
msgstr ""

#: standalone/drakbackup:1604
#, c-format
msgid "Use Expect for SSH"
msgstr "Implijit Expect evit SSH"

#: standalone/drakbackup:1605
#, c-format
msgid "Create/Transfer backup keys for SSH"
msgstr ""

#: standalone/drakbackup:1607
#, c-format
msgid "Transfer Now"
msgstr "Kas bremañ"

#: standalone/drakbackup:1609
#, c-format
msgid "Other (not drakbackup) keys in place already"
msgstr ""

#: standalone/drakbackup:1612
#, c-format
msgid "Host name or IP."
msgstr "Anv pe IP an oztiz."

#: standalone/drakbackup:1617
#, c-format
msgid "Directory (or module) to put the backup on this host."
msgstr ""

#: standalone/drakbackup:1629
#, c-format
msgid "Remember this password"
msgstr "Enrollañ an tremenger-mañ"

#: standalone/drakbackup:1645
#, c-format
msgid "Need hostname, username and password!"
msgstr ""

#: standalone/drakbackup:1736
#, c-format
msgid "Use CD-R/DVD-R to backup"
msgstr "Implijit ur CD-R/DVD-R evit gwareziñ"

#: standalone/drakbackup:1739
#, c-format
msgid "Choose your CD/DVD device"
msgstr "Dibabit ment ho drobarzhell CD/DVD"

#: standalone/drakbackup:1744
#, c-format
msgid "Choose your CD/DVD media size"
msgstr "Dibabit ment ho vedia CD/DVD"

#: standalone/drakbackup:1751
#, fuzzy, c-format
msgid "Multisession CD"
msgstr "Liesvedia"

#: standalone/drakbackup:1753
#, c-format
msgid "CDRW media"
msgstr "Media CDRW"

#
#: standalone/drakbackup:1759
#, c-format
msgid "Erase your RW media (1st Session)"
msgstr "Chetanñ ho vedia LS (Dalc'h kentañ)"

#: standalone/drakbackup:1760
#, c-format
msgid " Erase Now "
msgstr " Chetanñ bremañ "

#: standalone/drakbackup:1766
#, c-format
msgid "DVD+RW media"
msgstr "Media DVD+RW"

#: standalone/drakbackup:1768
#, c-format
msgid "DVD-R media"
msgstr "Media DVD-R"

#: standalone/drakbackup:1770
#, c-format
msgid "DVDRAM device"
msgstr "Media DVDRAM"

#: standalone/drakbackup:1801
#, c-format
msgid "No CD device defined!"
msgstr "N'eus trobarzhell CD dibabet ebet !"

#: standalone/drakbackup:1843
#, c-format
msgid "Use tape to backup"
msgstr "Implijit ar seizenn evit gwareziñ"

#: standalone/drakbackup:1846
#, c-format
msgid "Device name to use for backup"
msgstr "Anv an drobarzhell da implij evit gwareziñ"

#: standalone/drakbackup:1852
#, c-format
msgid "Backup directly to tape"
msgstr ""

#: standalone/drakbackup:1858
#, fuzzy, c-format
msgid "Do not rewind tape after backup"
msgstr "Restr gwareziñ siek"

#: standalone/drakbackup:1864
#, fuzzy, c-format
msgid "Erase tape before backup"
msgstr "Restr gwareziñ siek"

#: standalone/drakbackup:1870
#, c-format
msgid "Eject tape after the backup"
msgstr "Stlepel ar seizenn pa vez echu ar gwareziñ"

#: standalone/drakbackup:1946
#, fuzzy, c-format
msgid "Enter the directory to save to:"
msgstr "Dibabit seurt ho logodenn, mar plij."

#: standalone/drakbackup:1950
#, fuzzy, c-format
msgid "Directory to save to"
msgstr "Dibabit seurt ho logodenn, mar plij."

#: standalone/drakbackup:1955
#, c-format
msgid ""
"Maximum disk space\n"
" allocated for backups (MB)"
msgstr ""

#: standalone/drakbackup:1959
#, c-format
msgid ""
"Delete incremental or differential\n"
" backups older than N days\n"
" (0 is keep all backups) to save space"
msgstr ""

#: standalone/drakbackup:2026
#, c-format
msgid "CD-R / DVD-R"
msgstr "CD-R / DVD-R"

#: standalone/drakbackup:2031
#, c-format
msgid "HardDrive / NFS"
msgstr "Pladenn / NFS"

#: standalone/drakbackup:2046 standalone/drakbackup:2047
#: standalone/drakbackup:2052
#, c-format
msgid "hourly"
msgstr ""

#: standalone/drakbackup:2046 standalone/drakbackup:2048
#: standalone/drakbackup:2053
#, c-format
msgid "daily"
msgstr "d'ar pemdez"

#: standalone/drakbackup:2046 standalone/drakbackup:2049
#: standalone/drakbackup:2054
#, c-format
msgid "weekly"
msgstr "sizhuniek"

#: standalone/drakbackup:2046 standalone/drakbackup:2050
#: standalone/drakbackup:2055
#, c-format
msgid "monthly"
msgstr "miziek"

#: standalone/drakbackup:2046 standalone/drakbackup:2051
#: standalone/drakbackup:2056
#, c-format
msgid "custom"
msgstr "diouzhoc'h"

#: standalone/drakbackup:2060
#, c-format
msgid "January"
msgstr "Genver"

#: standalone/drakbackup:2060
#, c-format
msgid "February"
msgstr "C'Hwevrer"

#: standalone/drakbackup:2060
#, c-format
msgid "March"
msgstr "Meurzh"

#: standalone/drakbackup:2061
#, c-format
msgid "April"
msgstr "Ebrel"

#: standalone/drakbackup:2061
#, c-format
msgid "May"
msgstr "Mae"

#: standalone/drakbackup:2061
#, c-format
msgid "June"
msgstr "Mezheven"

#: standalone/drakbackup:2061
#, c-format
msgid "July"
msgstr "Gouhere"

#: standalone/drakbackup:2061
#, c-format
msgid "August"
msgstr "Eost"

#: standalone/drakbackup:2061
#, c-format
msgid "September"
msgstr "Gwengolo"

#: standalone/drakbackup:2062
#, c-format
msgid "October"
msgstr "Here"

#: standalone/drakbackup:2062
#, c-format
msgid "November"
msgstr "Du"

#: standalone/drakbackup:2062
#, c-format
msgid "December"
msgstr "Kerzu"

#: standalone/drakbackup:2065
#, c-format
msgid "Sunday"
msgstr "Sul"

#: standalone/drakbackup:2065
#, c-format
msgid "Monday"
msgstr "Lun"

#: standalone/drakbackup:2065
#, c-format
msgid "Tuesday"
msgstr "Meurzh"

#: standalone/drakbackup:2066
#, c-format
msgid "Wednesday"
msgstr "Merc'her"

#: standalone/drakbackup:2066
#, c-format
msgid "Thursday"
msgstr "Yaou"

#: standalone/drakbackup:2066
#, c-format
msgid "Friday"
msgstr "Gwener"

#: standalone/drakbackup:2066
#, c-format
msgid "Saturday"
msgstr "Sadorn"

#: standalone/drakbackup:2098
#, c-format
msgid "Use daemon"
msgstr "Implij un diaoul"

#: standalone/drakbackup:2102
#, fuzzy, c-format
msgid "Please choose the time interval between each backup"
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."

#: standalone/drakbackup:2108
#, c-format
msgid "Custom setup/crontab entry:"
msgstr ""

#: standalone/drakbackup:2113
#, c-format
msgid "Minute"
msgstr "Munutenn"

#: standalone/drakbackup:2117
#, c-format
msgid "Hour"
msgstr "Eur"

#: standalone/drakbackup:2121
#, c-format
msgid "Day"
msgstr "Deiz"

#: standalone/drakbackup:2125
#, c-format
msgid "Month"
msgstr "Miz"

#: standalone/drakbackup:2129
#, c-format
msgid "Weekday"
msgstr "Deiz ar sizhun"

#: standalone/drakbackup:2135
#, c-format
msgid "Please choose the media for backup."
msgstr "Dibabit ar vedia evit gwareziñ, mar plij."

#: standalone/drakbackup:2141
#, fuzzy, c-format
msgid "Please be sure that the cron daemon is included in your services."
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."

#: standalone/drakbackup:2142
#, c-format
msgid ""
"If your machine is not on all the time, you might want to install anacron."
msgstr ""

#: standalone/drakbackup:2143
#, c-format
msgid "Note that currently all 'net' media also use the hard drive."
msgstr ""

#: standalone/drakbackup:2190
#, fuzzy, c-format
msgid "Please choose the compression type"
msgstr "Dibabit seurt ho logodenn, mar plij."

#: standalone/drakbackup:2194
#, c-format
msgid "Use .backupignore files"
msgstr "Implijit ar restroù .backupignore"

#: standalone/drakbackup:2196
#, c-format
msgid "Send mail report after each backup to:"
msgstr ""

#: standalone/drakbackup:2202
#, c-format
msgid "Return address for sent mail:"
msgstr ""

#: standalone/drakbackup:2208
#, c-format
msgid "SMTP server for mail:"
msgstr "Servijer SMTP evit ar posteloù :"

#: standalone/drakbackup:2213
#, c-format
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""

#: standalone/drakbackup:2256
#, c-format
msgid "What"
msgstr "Petra"

#: standalone/drakbackup:2261
#, c-format
msgid "Where"
msgstr "Pelec'h"

#: standalone/drakbackup:2266
#, c-format
msgid "When"
msgstr "Pa"

#: standalone/drakbackup:2271
#, c-format
msgid "More Options"
msgstr "Dibarzhoù a-gresk"

#: standalone/drakbackup:2284
#, fuzzy, c-format
msgid "Backup destination not configured..."
msgstr "Skramm ket kefluniet"

#: standalone/drakbackup:2304 standalone/drakbackup:4228
#, c-format
msgid "Drakbackup Configuration"
msgstr "Kefluniadur Drakbackup"

#: standalone/drakbackup:2320
#, fuzzy, c-format
msgid "Please choose where you want to backup"
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."

#: standalone/drakbackup:2323
#, c-format
msgid "Hard Drive used to prepare backups for all media"
msgstr ""

#: standalone/drakbackup:2323
#, c-format
msgid "Across Network"
msgstr "War ar rouedad"

#: standalone/drakbackup:2323
#, c-format
msgid "On CD-R"
msgstr "War CD-R"

#: standalone/drakbackup:2323
#, c-format
msgid "On Tape Device"
msgstr "War Bandenn"

#: standalone/drakbackup:2369
#, c-format
msgid "Backup Users"
msgstr "Gwareziñ an averiaded"

#: standalone/drakbackup:2370
#, fuzzy, c-format
msgid " (Default is all users)"
msgstr "Moullerez lec'hel"

#: standalone/drakbackup:2383
#, c-format
msgid "Please choose what you want to backup"
msgstr "Dibabit petra'zo da wareziñ, mar plij"

#: standalone/drakbackup:2384
#, c-format
msgid "Backup System"
msgstr "Kefluniañ ar reizhiad"

#: standalone/drakbackup:2386
#, c-format
msgid "Select user manually"
msgstr "Dibabit an arveriad diwar zorn"

#: standalone/drakbackup:2415
#, c-format
msgid "Please select data to backup..."
msgstr "Dibabit ar roadoù da gwareziñ, mar plij ..."

#: standalone/drakbackup:2487
#, c-format
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""

#: standalone/drakbackup:2488
#, c-format
msgid ""
"\n"
"- System Files:\n"
msgstr ""
"\n"
"- Restroù ar reizhiad :\n"

#: standalone/drakbackup:2490
#, c-format
msgid ""
"\n"
"- User Files:\n"
msgstr ""
"\n"
"- Restroù an arveriad :\n"

#: standalone/drakbackup:2492
#, c-format
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
"\n"
"- Restroù all :\n"

#: standalone/drakbackup:2494
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""

#: standalone/drakbackup:2495
#, c-format
msgid "\tLimit disk usage to %s MB\n"
msgstr ""

#: standalone/drakbackup:2496
#, c-format
msgid "\tDelete backups older than %s day(s)\n"
msgstr ""

#: standalone/drakbackup:2499
#, c-format
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""

#: standalone/drakbackup:2504
#, c-format
msgid ""
"\n"
"- Burn to CD"
msgstr ""

#: standalone/drakbackup:2505
#, c-format
msgid "RW"
msgstr "LS"

#: standalone/drakbackup:2506
#, c-format
msgid " on device: %s"
msgstr "war ar trobarzhell : %s"

#: standalone/drakbackup:2507
#, c-format
msgid " (multi-session)"
msgstr ""

#: standalone/drakbackup:2508
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""

#: standalone/drakbackup:2509
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tChetañ=%s"

#: standalone/drakbackup:2511
#, c-format
msgid "\tBackup directly to Tape\n"
msgstr ""

#: standalone/drakbackup:2513
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""

#: standalone/drakbackup:2514
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""

#: standalone/drakbackup:2515
#, c-format
msgid ""
"\n"
"- Options:\n"
msgstr ""
"\n"
"- Dibarzhoù :\n"

#: standalone/drakbackup:2516
#, c-format
msgid "\tDo not include System Files\n"
msgstr ""

#: standalone/drakbackup:2518
#, c-format
msgid "\tBackups use tar and bzip2\n"
msgstr ""

#: standalone/drakbackup:2519
#, c-format
msgid "\tBackups use tar and gzip\n"
msgstr ""

#: standalone/drakbackup:2520
#, fuzzy, c-format
msgid "\tBackups use tar only\n"
msgstr "Restr gwareziñ siek"

#: standalone/drakbackup:2522
#, c-format
msgid "\tUse .backupignore files\n"
msgstr "\tImplijit ar restroù .backupignore\n"

#: standalone/drakbackup:2523
#, c-format
msgid "\tSend mail to %s\n"
msgstr "\tKas ur postel da %s\n"

#: standalone/drakbackup:2524
#, c-format
msgid "\tSend mail from %s\n"
msgstr ""

#: standalone/drakbackup:2525
#, c-format
msgid "\tUsing SMTP server %s\n"
msgstr "\tOc'h implij ar servijer SMTP %s\n"

#: standalone/drakbackup:2527
#, c-format
msgid ""
"\n"
"- Daemon, %s via:\n"
msgstr ""
"\n"
"- Diaoul, %s dre :\n"

#: standalone/drakbackup:2528
#, c-format
msgid "\t-Hard drive.\n"
msgstr "\t-Pladenn.\n"

#: standalone/drakbackup:2529
#, c-format
msgid "\t-CD-R.\n"
msgstr "\t-CD-R.\n"

#: standalone/drakbackup:2530
#, c-format
msgid "\t-Tape \n"
msgstr "\t- Bandenn\n"

#: standalone/drakbackup:2531
#, c-format
msgid "\t-Network by FTP.\n"
msgstr "\t-Rouedad gant FTP\n"

#: standalone/drakbackup:2532
#, c-format
msgid "\t-Network by SSH.\n"
msgstr "\t-Rouedad gant SSH.\n"

#: standalone/drakbackup:2533
#, c-format
msgid "\t-Network by rsync.\n"
msgstr "\t-Rouedad gant rsync.\n"

#: standalone/drakbackup:2535
#, c-format
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"N'eus kefluniadur ebet, klikit ouzh « Skoazeller » pe  « Barek » mar plij.\n"

#: standalone/drakbackup:2540
#, c-format
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""

#: standalone/drakbackup:2542
#, c-format
msgid "- Restore System Files.\n"
msgstr "- Assevel restroù ar reizhiad.\n"

#: standalone/drakbackup:2544 standalone/drakbackup:2554
#, c-format
msgid "   - from date: %s %s\n"
msgstr "   - eus an deizad : %s %s\n"

#: standalone/drakbackup:2547
#, c-format
msgid "- Restore User Files: \n"
msgstr "- Assevel restroù an arveriad : \n"

#: standalone/drakbackup:2552
#, c-format
msgid "- Restore Other Files: \n"
msgstr "- Assevel ar restroù all : \n"

#: standalone/drakbackup:2731
#, c-format
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""

#: standalone/drakbackup:2733
#, fuzzy, c-format
msgid "Please uncheck or remove it on next time."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."

#: standalone/drakbackup:2743
#, c-format
msgid "Backup files are corrupted"
msgstr "Siek eo ar restroù gwareziñ"

#: standalone/drakbackup:2764
#, c-format
msgid "          All of your selected data have been          "
msgstr ""

#: standalone/drakbackup:2765
#, c-format
msgid "          Successfully Restored on %s       "
msgstr ""

#: standalone/drakbackup:2885
#, c-format
msgid "         Restore Configuration       "
msgstr "         Kefluniadur assevel         "

#: standalone/drakbackup:2913
#, c-format
msgid "OK to restore the other files."
msgstr ""

#: standalone/drakbackup:2929
#, c-format
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""

#: standalone/drakbackup:2994
#, fuzzy, c-format
msgid "Please choose the date to restore:"
msgstr "Dibabit seurt ho logodenn, mar plij."

#: standalone/drakbackup:3031
#, c-format
msgid "Restore from Hard Disk."
msgstr "Assevel eus ar bladenn."

#: standalone/drakbackup:3033
#, fuzzy, c-format
msgid "Enter the directory where backups are stored"
msgstr "Dibabit seurt ho logodenn, mar plij."

#: standalone/drakbackup:3037
#, c-format
msgid "Directory with backups"
msgstr ""

#: standalone/drakbackup:3091
#, c-format
msgid "Select another media to restore from"
msgstr "Dibabit ur vedia all da assevel eus"

#: standalone/drakbackup:3093
#, c-format
msgid "Other Media"
msgstr "Media all"

#: standalone/drakbackup:3098
#, c-format
msgid "Restore system"
msgstr "Assevel ar reizhiad"

#: standalone/drakbackup:3099
#, c-format
msgid "Restore Users"
msgstr "Assevel an arveriaded"

#: standalone/drakbackup:3100
#, c-format
msgid "Restore Other"
msgstr "Assevel ar re all"

#: standalone/drakbackup:3102
#, c-format
msgid "Select path to restore (instead of /)"
msgstr "Dibabit an hent da assevel e-barzh (e-lec'h /)"

#: standalone/drakbackup:3106 standalone/drakbackup:3388
#, c-format
msgid "Path To Restore To"
msgstr "Hent da assevel e-barzh"

#: standalone/drakbackup:3109
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""

#: standalone/drakbackup:3111
#, c-format
msgid "Remove user directories before restore."
msgstr ""

#: standalone/drakbackup:3196
#, c-format
msgid "Filename text substring to search for (empty string matches all):"
msgstr ""

#: standalone/drakbackup:3199
#, c-format
msgid "Search Backups"
msgstr ""

#: standalone/drakbackup:3217
#, fuzzy, c-format
msgid "No matches found..."
msgstr "N'eo ket Moullerez lec'hel !\n"

#: standalone/drakbackup:3221
#, c-format
msgid "Restore Selected"
msgstr "Assevel ar re dibabet"

#: standalone/drakbackup:3356
#, c-format
msgid ""
"Click date/time to see backup files.\n"
"Ctrl-Click files to select multiple files."
msgstr ""

#: standalone/drakbackup:3362
#, c-format
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""

#: standalone/drakbackup:3371
#, c-format
msgid ""
"Restore Selected\n"
"Files"
msgstr ""
"Assevel ar restroù\n"
"dibabet"

#: standalone/drakbackup:3448
#, c-format
msgid "Backup files not found at %s."
msgstr "N'eo ket bet kavet ar restr gwareziñ ouzh %s."

#: standalone/drakbackup:3461
#, c-format
msgid "Restore From CD"
msgstr "Assevel eus un CD"

#: standalone/drakbackup:3461
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""

#: standalone/drakbackup:3463
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""

#: standalone/drakbackup:3473
#, c-format
msgid "Restore From Tape"
msgstr "Assevel eus ur seizenn"

#: standalone/drakbackup:3473
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""

#: standalone/drakbackup:3475
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""

#: standalone/drakbackup:3486
#, c-format
msgid "Restore Via Network"
msgstr "Assevel eus ar rouedad"

#: standalone/drakbackup:3486
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Assevel eus ar rouedad gant ar c'homenad : %s"

#: standalone/drakbackup:3487
#, c-format
msgid "Host Name"
msgstr "Anv an Ostiz"

#: standalone/drakbackup:3488
#, c-format
msgid "Host Path or Module"
msgstr "Hent an ostiz pe mollad"

#: standalone/drakbackup:3495
#, c-format
msgid "Password required"
msgstr "Red eo reuñ un tremenger"

#: standalone/drakbackup:3501
#, c-format
msgid "Username required"
msgstr "Red eo reuñ un anv arveriad"

#: standalone/drakbackup:3504
#, c-format
msgid "Hostname required"
msgstr "Red eo reuñ un anv ostiz"

#: standalone/drakbackup:3509
#, c-format
msgid "Path or Module required"
msgstr "Red eo reuñ un hent pe ur mollad"

#: standalone/drakbackup:3522
#, c-format
msgid "Files Restored..."
msgstr "Restroù assevelet ..."

#: standalone/drakbackup:3525
#, c-format
msgid "Restore Failed..."
msgstr "Fazi en ur assevel ..."

#: standalone/drakbackup:3543
#, c-format
msgid "%s not retrieved..."
msgstr "N'eo ket digaset %s ..."

#: standalone/drakbackup:3764 standalone/drakbackup:3833
#, c-format
msgid "Search for files to restore"
msgstr "Klask ar restroù da assevel"

#: standalone/drakbackup:3768
#, c-format
msgid "Restore all backups"
msgstr "Assevel an holl zielloù"

#: standalone/drakbackup:3776
#, fuzzy, c-format
msgid "Custom Restore"
msgstr "Neuziet"

#: standalone/drakbackup:3780 standalone/drakbackup:3829
#, c-format
msgid "Restore From Catalog"
msgstr "Assevel eus ar c'hatalog"

#: standalone/drakbackup:3801
#, c-format
msgid "Unable to find backups to restore...\n"
msgstr "Ne m'eus ket kavout dielloù da assevel ...\n"

#: standalone/drakbackup:3802
#, c-format
msgid "Verify that %s is the correct path"
msgstr "Gwiriekaat ma vez an hent mat %s"

#: standalone/drakbackup:3803
#, c-format
msgid " and the CD is in the drive"
msgstr " hag emañ ar CD e-barzh an unvez"

#: standalone/drakbackup:3805
#, c-format
msgid "Backups on unmountable media - Use Catalog to restore"
msgstr "Red eo reuñ"

#: standalone/drakbackup:3821
#, c-format
msgid "CD in place - continue."
msgstr ""

#: standalone/drakbackup:3826
#, c-format
msgid "Browse to new restore repository."
msgstr ""

#: standalone/drakbackup:3827
#, fuzzy, c-format
msgid "Directory To Restore From"
msgstr "Assevel adalek ar bladennxig"

#: standalone/drakbackup:3863
#, fuzzy, c-format
msgid "Restore Progress"
msgstr "Adaozañ adalek ar restr"

#: standalone/drakbackup:3974
#, c-format
msgid "Build Backup"
msgstr "Sevel an diell"

#: standalone/drakbackup:4007 standalone/drakbackup:4327
#, c-format
msgid "Restore"
msgstr "Nevesaat"

#: standalone/drakbackup:4095 standalone/harddrake2:478
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet :\n"

#: standalone/drakbackup:4122
#, c-format
msgid "Please select data to restore..."
msgstr "Dibabi ar roadoù da assevel mar plij ..."

#: standalone/drakbackup:4162
#, c-format
msgid "Backup system files"
msgstr "Gwareziñ restroù ar reizhiad"

#: standalone/drakbackup:4165
#, c-format
msgid "Backup user files"
msgstr "Gwareziñ an averiaded"

#: standalone/drakbackup:4168
#, c-format
msgid "Backup other files"
msgstr "Gwareziñ restroù all"

#: standalone/drakbackup:4171 standalone/drakbackup:4205
#, c-format
msgid "Total Progress"
msgstr ""

#: standalone/drakbackup:4197
#, c-format
msgid "Sending files by FTP"
msgstr "O kas restroù gant FTP"

#: standalone/drakbackup:4200
#, c-format
msgid "Sending files..."
msgstr "O kas restroù ..."

#: standalone/drakbackup:4270
#, fuzzy, c-format
msgid "Backup Now from configuration file"
msgstr "Kefluniadur ar rouedad"

#: standalone/drakbackup:4275
#, c-format
msgid "View Backup Configuration."
msgstr "Sell ouzh kefluniadur gwareziñ"

#: standalone/drakbackup:4301
#, c-format
msgid "Wizard Configuration"
msgstr "Kefluniadur ar skoazellerien"

#: standalone/drakbackup:4306
#, c-format
msgid "Advanced Configuration"
msgstr "Kefluniadur barek"

#: standalone/drakbackup:4311
#, c-format
msgid "View Configuration"
msgstr "Sell ouzh gefluniadur"

#: standalone/drakbackup:4315
#, c-format
msgid "View Last Log"
msgstr ""

#: standalone/drakbackup:4320
#, c-format
msgid "Backup Now"
msgstr "Gwareziñ bremañ"

#: standalone/drakbackup:4324
#, c-format
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
"N'eus kefluniadur kavet ebet\n"
"klikit ouzh « Skoazeller » pe  « Barek » mar plij."

#: standalone/drakbackup:4344 standalone/drakbackup:4347
#, c-format
msgid "Drakbackup"
msgstr "Drakbackup"

#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Restr"

#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"

#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
#: standalone/logdrake:75 standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"

#: standalone/drakboot:117
#, c-format
msgid "Text only"
msgstr ""

#: standalone/drakboot:118
#, c-format
msgid "Verbose"
msgstr ""

#: standalone/drakboot:119
#, c-format
msgid "Silent"
msgstr ""

#: standalone/drakboot:126
#, c-format
msgid ""
"Your system bootloader is not in framebuffer mode. To activate graphical "
"boot, select a graphic video mode from the bootloader configuration tool."
msgstr ""

#: standalone/drakboot:127
#, c-format
msgid "Do you want to configure it now?"
msgstr "Mennout a rit kefluniañ anezhañ bremañ ?"

#: standalone/drakboot:136
#, c-format
msgid "Install themes"
msgstr "Staliañ ar gizioù"

#: standalone/drakboot:138
#, c-format
msgid "Graphical boot theme selection"
msgstr "Dibabit ar c'hiz loc'hañ ar reizhiad"

#: standalone/drakboot:143
#, c-format
msgid "Theme"
msgstr "Giz"

#: standalone/drakboot:146
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""
"Diskouez ar c'hiz\n"
"ouzh al letrin"

#: standalone/drakboot:151
#, c-format
msgid "Create new theme"
msgstr "Krouiñ gizioù nevez"

#: standalone/drakboot:183
#, c-format
msgid "Default user"
msgstr "Arveriad dre ziouer"

#: standalone/drakboot:184
#, c-format
msgid "Default desktop"
msgstr "Burev dre ziouer"

#: standalone/drakboot:187
#, c-format
msgid "No, I do not want autologin"
msgstr "Ne fell ket din emereañ gant an dra-se"

#: standalone/drakboot:188
#, c-format
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ya, plijout a ra din gant emereañ (averiad, burev)"

#: standalone/drakboot:195
#, c-format
msgid "System mode"
msgstr "Mod ar reizhiad"

#: standalone/drakboot:198
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr "Lañsañ an endro grafikel pa vez loc'het ho reizhiad"

#: standalone/drakboot:264
#, c-format
msgid ""
"Please choose a video mode, it will be applied to each of the boot entries "
"selected below.\n"
"Be sure your video card supports the mode you choose."
msgstr ""

#: standalone/drakbug:41
#, fuzzy, c-format
msgid "Mandriva Linux Bug Report Tool"
msgstr "Mandriva Linux Control Center"

#: standalone/drakbug:46
#, c-format
msgid "Mandriva Linux Control Center"
msgstr "Kreizenn ren Mandriva Linux"

#: standalone/drakbug:48
#, c-format
msgid "Synchronization tool"
msgstr ""

#: standalone/drakbug:49 standalone/drakbug:63 standalone/drakbug:148
#: standalone/drakbug:150 standalone/drakbug:154
#, c-format
msgid "Standalone Tools"
msgstr ""

#: standalone/drakbug:50
#, c-format
msgid "HardDrake"
msgstr "HardDrake"

#: standalone/drakbug:51
#, c-format
msgid "Mandriva Online"
msgstr "Mandriva Online"

#: standalone/drakbug:52
#, c-format
msgid "Menudrake"
msgstr "Menudrake"

#: standalone/drakbug:53
#, c-format
msgid "Msec"
msgstr "Msec"

#: standalone/drakbug:54
#, fuzzy, c-format
msgid "Remote Control"
msgstr "Dibarzhoù ar voullerez lpd a-bell"

#: standalone/drakbug:55
#, c-format
msgid "Software Manager"
msgstr "Merour Poelladoù"

#: standalone/drakbug:56
#, c-format
msgid "Urpmi"
msgstr "Urpmi"

#: standalone/drakbug:57
#, fuzzy, c-format
msgid "Windows Migration tool"
msgstr "Titouroù"

#: standalone/drakbug:58
#, c-format
msgid "Userdrake"
msgstr "Userdrake"

#: standalone/drakbug:59
#, c-format
msgid "Configuration Wizards"
msgstr "Skoazellerien kefluniadur"

#: standalone/drakbug:81
#, c-format
msgid "Select Mandriva Tool:"
msgstr "Dibabit un ostilh Mandriva :"

#: standalone/drakbug:82
#, c-format
msgid ""
"or Application Name\n"
"(or Full Path):"
msgstr ""
"pe anv ar meziant\n"
"(pe un hent leun) :"

#: standalone/drakbug:85
#, c-format
msgid "Find Package"
msgstr "Klask Pakad"

#: standalone/drakbug:87
#, c-format
msgid "Package: "
msgstr "Pakad :"

#: standalone/drakbug:88
#, c-format
msgid "Kernel:"
msgstr "Kalon :"

#: standalone/drakbug:100
#, c-format
msgid ""
"To submit a bug report, click on the report button.  \n"
"This will open a web browser window on %s where you'll find a form to fill "
"in.  The information displayed above will be transferred to that server.  \n"
"Things useful to include in your report are the output of lspci, kernel "
"version, and /proc/cpuinfo."
msgstr ""

#: standalone/drakbug:106
#, c-format
msgid "Report"
msgstr "Dezrevell"

#: standalone/drakbug:163
#, c-format
msgid "Not installed"
msgstr "N'eo ket staliet"

#: standalone/drakbug:175
#, c-format
msgid "Package not installed"
msgstr "N'eo ket staliet ar pakad"

#: standalone/drakclock:29
#, c-format
msgid "DrakClock"
msgstr "DrakClock"

#: standalone/drakclock:39
#, c-format
msgid "not defined"
msgstr "n'eo ket lakaet"

#: standalone/drakclock:41
#, c-format
msgid "Change Time Zone"
msgstr "Kemmañ ar takad-eur"

#: standalone/drakclock:45
#, c-format
msgid "Timezone - DrakClock"
msgstr "Takad-eur - DrakClock"

#: standalone/drakclock:47
#, c-format
msgid "GMT - DrakClock"
msgstr "GMT - DrakClock"

#: standalone/drakclock:47
#, c-format
msgid "Is your hardware clock set to GMT?"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"

#: standalone/drakclock:75
#, c-format
msgid "Network Time Protocol"
msgstr ""

#: standalone/drakclock:77
#, c-format
msgid ""
"Your computer can synchronize its clock\n"
" with a remote time server using NTP"
msgstr ""

#: standalone/drakclock:78
#, c-format
msgid "Enable Network Time Protocol"
msgstr ""

#: standalone/drakclock:86
#, c-format
msgid "Server:"
msgstr "Servijer :"

#: standalone/drakclock:124
#, c-format
msgid "Could not synchronize with %s."
msgstr ""

#: standalone/drakclock:146 standalone/drakclock:156
#, c-format
msgid "Reset"
msgstr "Deraouekaat"

#: standalone/drakclock:224
#, c-format
msgid ""
"We need to install ntp package\n"
" to enable Network Time Protocol\n"
"\n"
"Do you want to install ntp?"
msgstr ""
"Ezhomm 'peus staliañ ar pabak ntp\n"
" evit bevaat NTP\n"
"\n"
"Ha sur oc'h e staliit ntp ?"

#: standalone/drakconnect:80
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Kefluniadur ar rouedad (%d kartenn)"

#: standalone/drakconnect:89 standalone/drakconnect:803
#: standalone/drakroam:163
#, c-format
msgid "Gateway:"
msgstr "Treuzell : "

#: standalone/drakconnect:89 standalone/drakconnect:803
#, c-format
msgid "Interface:"
msgstr "C'hetal :"

#: standalone/drakconnect:93 standalone/net_monitor:117
#, c-format
msgid "Wait please"
msgstr "Gortoz mar plij"

#: standalone/drakconnect:109
#, c-format
msgid "Interface"
msgstr "C'hetal"

#: standalone/drakconnect:109 standalone/printerdrake:211
#: standalone/printerdrake:218
#, c-format
msgid "State"
msgstr "Rannvro"

#: standalone/drakconnect:126
#, c-format
msgid "Hostname: "
msgstr "Anv an ostiz : "

#: standalone/drakconnect:128
#, c-format
msgid "Configure hostname..."
msgstr "Kefluniañ anv an ostiz ..."

#: standalone/drakconnect:142 standalone/drakconnect:841
#, c-format
msgid "LAN configuration"
msgstr "Kefluniadur ar rouedad takad lec'hel"

#: standalone/drakconnect:147
#, c-format
msgid "Configure Local Area Network..."
msgstr "Kefluniañ ar rouedad takad lec'hel ..."

#: standalone/drakconnect:155 standalone/drakconnect:237
#: standalone/drakconnect:241
#, c-format
msgid "Apply"
msgstr "Lakat"

#: standalone/drakconnect:188
#, c-format
msgid "Manage connections"
msgstr "Meran liammoù"

#: standalone/drakconnect:215
#, c-format
msgid "Device selected"
msgstr "Trobarzhell dibabet"

#: standalone/drakconnect:296
#, c-format
msgid "IP configuration"
msgstr "Kefluniadur IP"

#: standalone/drakconnect:335
#, c-format
msgid "DNS servers"
msgstr "Servijerioù DNS"

#: standalone/drakconnect:343
#, c-format
msgid "Search Domain"
msgstr "Domani klask"

#: standalone/drakconnect:351
#, c-format
msgid "static"
msgstr "statik"

#: standalone/drakconnect:351 standalone/drakroam:144
#, c-format
msgid "DHCP"
msgstr "DHCP"

#: standalone/drakconnect:515
#, c-format
msgid "Flow control"
msgstr "Evezhiañ ar red"

#: standalone/drakconnect:516
#, c-format
msgid "Line termination"
msgstr "Dibenn al linennoù"

#: standalone/drakconnect:527
#, c-format
msgid "Modem timeout"
msgstr "Amzer-hont ar modem"

#: standalone/drakconnect:531
#, c-format
msgid "Use lock file"
msgstr "Implijit ur restr prennañ"

#: standalone/drakconnect:533
#, c-format
msgid "Wait for dialup tone before dialing"
msgstr "Gortoz e-pad an ton galv goude sifrenn"

#: standalone/drakconnect:536
#, fuzzy, c-format
msgid "Busy wait"
msgstr "Kowaet"

#: standalone/drakconnect:541
#, c-format
msgid "Modem sound"
msgstr "Son ar modem"

#: standalone/drakconnect:542 standalone/drakgw:105
#, c-format
msgid "Enable"
msgstr "Bevaat"

#: standalone/drakconnect:542 standalone/drakgw:105
#, c-format
msgid "Disable"
msgstr "Marvaat "

#: standalone/drakconnect:593 standalone/harddrake2:50
#, c-format
msgid "Media class"
msgstr ""

#: standalone/drakconnect:594 standalone/drakfloppy:136
#, c-format
msgid "Module name"
msgstr "Anv ar mollad"

#: standalone/drakconnect:595
#, c-format
msgid "Mac Address"
msgstr "Chomlec'h MAC"

#: standalone/drakconnect:596 standalone/harddrake2:28
#: standalone/harddrake2:120
#, c-format
msgid "Bus"
msgstr "Bus"

#: standalone/drakconnect:597 standalone/harddrake2:34
#, c-format
msgid "Location on the bus"
msgstr "Lec'hel war ar bus"

#: standalone/drakconnect:696 standalone/drakgw:322
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""

#: standalone/drakconnect:704
#, c-format
msgid "Remove a network interface"
msgstr "Lebel un etrefas rouedad"

#: standalone/drakconnect:708
#, c-format
msgid "Select the network interface to remove:"
msgstr "Dibabit an etrefas rouedad a lemel :"

#: standalone/drakconnect:740
#, c-format
msgid ""
"An error occurred while deleting the \"%s\" network interface:\n"
"\n"
"%s"
msgstr ""
"Degouezhet ez eus ar fazi en ur lemel an etrefas rouedad « %s » :\n"
"\n"
"%s"

#: standalone/drakconnect:741
#, c-format
msgid ""
"Congratulations, the \"%s\" network interface has been successfully deleted"
msgstr ""

#: standalone/drakconnect:757
#, c-format
msgid "No IP"
msgstr "IP ebet"

#: standalone/drakconnect:758
#, c-format
msgid "No Mask"
msgstr "Mask ebet"

#: standalone/drakconnect:759 standalone/drakconnect:912
#, c-format
msgid "up"
msgstr "uhel"

#: standalone/drakconnect:759 standalone/drakconnect:912
#, c-format
msgid "down"
msgstr "izel"

#: standalone/drakconnect:794 standalone/net_monitor:466
#, c-format
msgid "Connected"
msgstr "Kevreadet"

#: standalone/drakconnect:794 standalone/net_monitor:466
#, c-format
msgid "Not connected"
msgstr "Kevreadet ebet"

#: standalone/drakconnect:796
#, c-format
msgid "Disconnect..."
msgstr "Digevreañ ..."

#: standalone/drakconnect:796
#, c-format
msgid "Connect..."
msgstr "Kevreañ ..."

#: standalone/drakconnect:837
#, c-format
msgid "Deactivate now"
msgstr "Digevreañ bremañ"

#: standalone/drakconnect:837
#, c-format
msgid "Activate now"
msgstr "Kevreañ bremañ"

#: standalone/drakconnect:845
#, c-format
msgid ""
"You do not have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""

#: standalone/drakconnect:859
#, c-format
msgid "LAN Configuration"
msgstr "Kefluniadur ar rouedad takad lec'hel"

#: standalone/drakconnect:871
#, c-format
msgid "Adapter %s: %s"
msgstr "Kartenn %s : %s"

#: standalone/drakconnect:880
#, c-format
msgid "Boot Protocol"
msgstr ""

#: standalone/drakconnect:881
#, c-format
msgid "Started on boot"
msgstr "Loc'het pa vez loc'het an urzhiataer"

#: standalone/drakconnect:917
#, c-format
msgid ""
"This interface has not been configured yet.\n"
"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
msgstr ""

#: standalone/drakconnect:971 standalone/net_applet:59
#, c-format
msgid ""
"You do not have any configured Internet connection.\n"
"Run the \"%s\" assistant from the Mandriva Linux Control Center"
msgstr ""

#. -PO: here "Add Connection" should be translated the same was as in control-center
#: standalone/drakconnect:972 standalone/drakroam:42 standalone/net_applet:60
#, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "Kefluniañ un etrefas rouedad (LAN, ISDN, ADLS, ...)"

#: standalone/drakconnect:977
#, c-format
msgid "Internet connection configuration"
msgstr "Kefluniadur ar gevreadenn internet"

#: standalone/drakconnect:995
#, c-format
msgid "Third DNS server (optional)"
msgstr "Servijer DNS trede (da zilenn)"

#: standalone/drakconnect:1017
#, c-format
msgid "Internet Connection Configuration"
msgstr "Kefluniadur ar gevreadenn ar c'henrouedad"

#: standalone/drakconnect:1018
#, fuzzy, c-format
msgid "Internet access"
msgstr "dedennus"

#: standalone/drakconnect:1020 standalone/net_monitor:96
#, c-format
msgid "Connection type: "
msgstr "Seurt ar gevreadenn : "

#: standalone/drakconnect:1023
#, c-format
msgid "Status:"
msgstr "Stad :"

#: standalone/drakedm:40
#, c-format
msgid "GDM (GNOME Display Manager)"
msgstr ""

#: standalone/drakedm:41
#, c-format
msgid "KDM (KDE Display Manager)"
msgstr ""

#: standalone/drakedm:42
#, c-format
msgid "XDM (X Display Manager)"
msgstr ""

#: standalone/drakedm:53
#, c-format
msgid "Choosing a display manager"
msgstr ""

#: standalone/drakedm:54
#, c-format
msgid ""
"X11 Display Manager allows you to graphically log\n"
"into your system with the X Window System running and supports running\n"
"several different X sessions on your local machine at the same time."
msgstr ""

#: standalone/drakedm:72
#, c-format
msgid "The change is done, do you want to restart the dm service?"
msgstr "Great eo ar c'hemm, C'hoant ho peus e adloc'hañ ar servij dm ?"

#: standalone/drakedm:73
#, c-format
msgid ""
"You are going to close all running programs and lose your current session. "
"Are you really sure that you want to restart the dm service?"
msgstr ""

#: standalone/drakfloppy:41
#, c-format
msgid "drakfloppy"
msgstr "drakfloppy"

#: standalone/drakfloppy:78
#, c-format
msgid "Boot disk creation"
msgstr "krouidigezh ar bladenn lañsañ"

#: standalone/drakfloppy:79
#, c-format
msgid "General"
msgstr "Pennañ"

#: standalone/drakfloppy:82 standalone/harddrake2:147
#, c-format
msgid "Device"
msgstr "Trobarzhell"

#: standalone/drakfloppy:88
#, c-format
msgid "Kernel version"
msgstr "Doare ar galon"

#: standalone/drakfloppy:103
#, c-format
msgid "Preferences"
msgstr "Dibarzhoù"

#: standalone/drakfloppy:117
#, c-format
msgid "Advanced preferences"
msgstr "Dibarzhoù barek"

#: standalone/drakfloppy:136
#, c-format
msgid "Size"
msgstr "Ment"

#: standalone/drakfloppy:139
#, c-format
msgid "Mkinitrd optional arguments"
msgstr ""

#: standalone/drakfloppy:141
#, fuzzy, c-format
msgid "force"
msgstr "Dilec'hiañ"

#: standalone/drakfloppy:142
#, c-format
msgid "omit raid modules"
msgstr "raid ebet"

#: standalone/drakfloppy:143
#, c-format
msgid "if needed"
msgstr "ma zo red"

#: standalone/drakfloppy:144
#, c-format
msgid "omit scsi modules"
msgstr "scsi ebet"

#: standalone/drakfloppy:147
#, c-format
msgid "Add a module"
msgstr "Ouzhpennañ ur mollad"

#: standalone/drakfloppy:156
#, c-format
msgid "Remove a module"
msgstr "Lemel ur mollad"

#: standalone/drakfloppy:291
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""

#: standalone/drakfloppy:297
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""

#: standalone/drakfloppy:300
#, c-format
msgid "Unable to fork: %s"
msgstr "N'eo ket fork : %s"

#: standalone/drakfloppy:303
#, c-format
msgid "Floppy creation completed"
msgstr "Echu eo krouidigezh ar bladenn lañsañ"

#: standalone/drakfloppy:303
#, c-format
msgid "The creation of the boot floppy has been successfully completed \n"
msgstr ""

#. -PO: Do not alter the <span ..> and </span> tags
#: standalone/drakfloppy:308
#, c-format
msgid ""
"Unable to properly close mkbootdisk:\n"
"\n"
"<span foreground=\"Red\"><tt>%s</tt></span>"
msgstr ""

#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
msgstr "Klask an nodrezhoù staliet"

#: standalone/drakfont:185
#, c-format
msgid "Unselect fonts installed"
msgstr "Andiuz an nodrezhoù staliet"

#: standalone/drakfont:208
#, c-format
msgid "parse all fonts"
msgstr ""

#: standalone/drakfont:210
#, c-format
msgid "No fonts found"
msgstr "Nodrezhoù ebet kavet"

#: standalone/drakfont:218 standalone/drakfont:260 standalone/drakfont:327
#: standalone/drakfont:360 standalone/drakfont:368 standalone/drakfont:394
#: standalone/drakfont:412 standalone/drakfont:426
#, c-format
msgid "done"
msgstr "graet"

#: standalone/drakfont:223
#, c-format
msgid "Could not find any font in your mounted partitions"
msgstr "Ne m'eus ket kavout un nodrezh e-barzh ho barzhadurioù marc'het"

#: standalone/drakfont:258
#, c-format
msgid "Reselect correct fonts"
msgstr "Adibabit nodrezhoù mat"

#: standalone/drakfont:261
#, c-format
msgid "Could not find any font.\n"
msgstr "Ne m'eus ket gallet kavout un nodrezh.\n"

#: standalone/drakfont:271
#, c-format
msgid "Search for fonts in installed list"
msgstr "Klask ar nodrezhoù er roll ar re staliet"

#: standalone/drakfont:296
#, c-format
msgid "%s fonts conversion"
msgstr ""

#: standalone/drakfont:325
#, c-format
msgid "Fonts copy"
msgstr "Adskrivañ nodrezhoù"

#: standalone/drakfont:328
#, c-format
msgid "True Type fonts installation"
msgstr "Staliadur an nodrezhoù True Type"

#: standalone/drakfont:335
#, c-format
msgid "please wait during ttmkfdir..."
msgstr "gortozit mar plij en ur ttmkfdir ..."

#: standalone/drakfont:336
#, c-format
msgid "True Type install done"
msgstr "Graet eo staliadur an nodrezhoù True Type"

#: standalone/drakfont:342 standalone/drakfont:357
#, c-format
msgid "type1inst building"
msgstr ""

#: standalone/drakfont:351
#, c-format
msgid "Ghostscript referencing"
msgstr ""

#: standalone/drakfont:361
#, c-format
msgid "Suppress Temporary Files"
msgstr "Lemel ar restroù padennek"

#: standalone/drakfont:364
#, c-format
msgid "Restart XFS"
msgstr "Adloc'hañ XFS"

#: standalone/drakfont:410 standalone/drakfont:420
#, c-format
msgid "Suppress Fonts Files"
msgstr "Lemel restroù ar fontoù"

#: standalone/drakfont:422
#, c-format
msgid "xfs restart"
msgstr "adloc'hañ xfs"

#: standalone/drakfont:430
#, c-format
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
"\n"
"-You can install the fonts the normal way. In rare cases, bogus fonts may "
"hang up your X Server."
msgstr ""

#: standalone/drakfont:474 standalone/drakfont:483
#, c-format
msgid "DrakFont"
msgstr "DrakFont"

#: standalone/drakfont:484
#, c-format
msgid "Font List"
msgstr "Listenn nodrezhoù"

#: standalone/drakfont:490
#, c-format
msgid "About"
msgstr "A-brepoz"

#: standalone/drakfont:492 standalone/drakfont:688 standalone/drakfont:726
#, c-format
msgid "Uninstall"
msgstr "Distaliañ"

#: standalone/drakfont:493
#, c-format
msgid "Import"
msgstr "Enporzh"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: standalone/drakfont:511
#, c-format
msgid ""
"Copyright (C) 2001-2002 by Mandriva \n"
"\n"
"\n"
"       DUPONT Sebastien (original version)\n"
"\n"
"       CHAUMETTE Damien <dchaumette@mandriva.com>\n"
"\n"
"       VIGNAUD Thierry <tvignaud@mandriva.com>"
msgstr ""

#: standalone/drakfont:520
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
" the Free Software Foundation; either version 2, or (at your option)\n"
" any later version.\n"
"\n"
"\n"
" This program is distributed in the hope that it will be useful,\n"
" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
" GNU General Public License for more details.\n"
"\n"
"\n"
" You should have received a copy of the GNU General Public License\n"
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""

#: standalone/drakfont:536
#, c-format
msgid ""
"Thanks:\n"
"\n"
"    -  pfm2afm:   \n"
"\t by Ken Borgendale:\n"
"\t    Convert a Windows .pfm  file to a .afm (Adobe Font Metrics)\n"
"\n"
"    -  type1inst:\n"
"\t by James Macnicol: \n"
"\t    type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
"\n"
"    -  ttf2pt1:   \n"
"\t  by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin  \n"
"             Convert ttf font files to afm and pfb fonts\n"
msgstr ""

#: standalone/drakfont:555
#, fuzzy, c-format
msgid "Choose the applications that will support the fonts:"
msgstr "Dibabit ar parzhadur a vennit furmadiñ"

#: standalone/drakfont:556
#, c-format
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
"\n"
"You can install the fonts the normal way. In rare cases, bogus fonts may "
"hang up your X Server."
msgstr ""

#: standalone/drakfont:566
#, c-format
msgid "Ghostscript"
msgstr "Ghostscript"

#: standalone/drakfont:567
#, c-format
msgid "StarOffice"
msgstr "StarOffice"

#: standalone/drakfont:568
#, c-format
msgid "Abiword"
msgstr "Abiword"

#: standalone/drakfont:569
#, fuzzy, c-format
msgid "Generic Printers"
msgstr "Moullerez"

#: standalone/drakfont:585
#, c-format
msgid "Select the font file or directory and click on 'Add'"
msgstr "Dibabit restr pe renkell ar nodrezh ha klikit ouzh « Ouzhpennañ »"

#: standalone/drakfont:586
#, c-format
msgid "File Selection"
msgstr "Choazh ar restr"

#: standalone/drakfont:590
#, c-format
msgid "Fonts"
msgstr "Nodrezhoù"

#: standalone/drakfont:653
#, c-format
msgid "Import fonts"
msgstr "Enporzh an nodrezhoù"

#: standalone/drakfont:658
#, c-format
msgid "Install fonts"
msgstr "Staliañ ar nodezhoù"

#: standalone/drakfont:693
#, c-format
msgid "click here if you are sure."
msgstr "klikit amañ ma 'z oc'h sur."

#: standalone/drakfont:695
#, c-format
msgid "here if no."
msgstr "amañ ma n'oc'h ket sur."

#: standalone/drakfont:734
#, c-format
msgid "Unselected All"
msgstr "Andiuz an holl re"

#: standalone/drakfont:737
#, c-format
msgid "Selected All"
msgstr "Diuz an holl re"

#: standalone/drakfont:740
#, c-format
msgid "Remove List"
msgstr "Dilemel al listenn"

#: standalone/drakfont:751 standalone/drakfont:770
#, c-format
msgid "Importing fonts"
msgstr "Emaon oc'h enporzh an nodrezhoù"

#: standalone/drakfont:755 standalone/drakfont:775
#, c-format
msgid "Initial tests"
msgstr ""

#: standalone/drakfont:756
#, c-format
msgid "Copy fonts on your system"
msgstr ""

#: standalone/drakfont:757
#, fuzzy, c-format
msgid "Install & convert Fonts"
msgstr "Staliañ an nodrezhoù"

#: standalone/drakfont:758
#, c-format
msgid "Post Install"
msgstr "Pa vez echu ar staliadur"

#: standalone/drakfont:776
#, c-format
msgid "Remove fonts on your system"
msgstr "Lemel an nodrezhoù eus ho reizhiad"

#: standalone/drakfont:777
#, c-format
msgid "Post Uninstall"
msgstr "Goude an distaliadur"

#: standalone/drakgw:50 standalone/drakvpn:51
#, c-format
msgid "Sorry, we support only 2.4 and above kernels."
msgstr ""

#: standalone/drakgw:75
#, fuzzy, c-format
msgid "Internet Connection Sharing"
msgstr "Lugerezh ar voullerez"

#: standalone/drakgw:79
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
"this computer's Internet connection.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""

#: standalone/drakgw:95
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""

#: standalone/drakgw:99
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""

#: standalone/drakgw:105
#, fuzzy, c-format
msgid "Reconfigure"
msgstr "adgefluniañ"

#: standalone/drakgw:145
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
"%s\n"
"\n"
"I am about to setup your Local Area Network with that adapter."
msgstr ""

#: standalone/drakgw:156
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""

#: standalone/drakgw:177
#, fuzzy, c-format
msgid "Local Area Network setings"
msgstr "Chomlec'h ar rouedad lec'hel"

#: standalone/drakgw:180
#, c-format
msgid "Local Network adress"
msgstr "Chomlec'h ar rouedad lec'hel"

#: standalone/drakgw:182
#, fuzzy, c-format
msgid "The internal domain name"
msgstr "Moullerez lec'hel"

#: standalone/drakgw:188
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""

#: standalone/drakgw:204
#, fuzzy, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "Kefluniadur ar servijer termenell"

#: standalone/drakgw:208
#, c-format
msgid "Use this gateway as domain name server"
msgstr ""

#: standalone/drakgw:209
#, c-format
msgid "The DNS Server IP"
msgstr "IP ar servijer DNS"

#: standalone/drakgw:241
#, fuzzy, c-format
msgid ""
"DHCP Server Configuration.\n"
"\n"
"Here you can select different options for the DHCP server configuration.\n"
"If you do not know the meaning of an option, simply leave it as it is."
msgstr ""
"Kefluniadur ar servijer DHCP.\n"
"\n"

#: standalone/drakgw:248
#, fuzzy, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "Adgefluniadur emgefreek"

#: standalone/drakgw:249
#, c-format
msgid "The DHCP start range"
msgstr "Ar skeul DHCP kentañ"

#: standalone/drakgw:250
#, c-format
msgid "The DHCP end range"
msgstr "Ar skeul DHCP diwezhañ"

#: standalone/drakgw:251
#, c-format
msgid "The default lease (in seconds)"
msgstr ""

#: standalone/drakgw:252
#, c-format
msgid "The maximum lease (in seconds)"
msgstr ""

#: standalone/drakgw:278
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr ""

#: standalone/drakgw:282
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr ""

#: standalone/drakgw:283
#, c-format
msgid "Admin mail"
msgstr ""

#: standalone/drakgw:284
#, fuzzy, c-format
msgid "Visible hostname"
msgstr "Anv an ostiz a-bell"

#: standalone/drakgw:285
#, fuzzy, c-format
msgid "Proxy port"
msgstr "Perzhioù"

#: standalone/drakgw:286
#, fuzzy, c-format
msgid "Cache size (MB)"
msgstr "Ment ar grubuilh"

#: standalone/drakgw:311
#, fuzzy, c-format
msgid "Broadcast printer information"
msgstr "Titouroù ar bladenn"

#: standalone/drakgw:328
#, fuzzy, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr "Lugerezh ar voullerez"

#: standalone/drakgw:334
#, fuzzy, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "Lugerezh ar voullerez"

#: standalone/drakgw:340
#, c-format
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP) and\n"
" a Transparent Proxy Cache server (SQUID)."
msgstr ""

#: standalone/drakgw:375
#, c-format
msgid "Disabling servers..."
msgstr "O varvaat ar servijerien ..."

#: standalone/drakgw:389
#, c-format
msgid "Firewalling configuration detected!"
msgstr "Kefluniadur kavet ar moger tan :"

#: standalone/drakgw:390
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""

#: standalone/drakgw:393
#, c-format
msgid "Configuring..."
msgstr "O kefluskañ ..."

#: standalone/drakgw:394
#, c-format
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""

#: standalone/drakhelp:17
#, c-format
msgid ""
" drakhelp 0.1\n"
"Copyright (C) 2003-2005 Mandriva.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"Usage: \n"
msgstr ""

#: standalone/drakhelp:22
#, c-format
msgid " --help                - display this help     \n"
msgstr ""

#: standalone/drakhelp:23
#, c-format
msgid ""
" --id <id_label>       - load the html help page which refers to id_label\n"
msgstr ""

#: standalone/drakhelp:24
#, c-format
msgid ""
" --doc <link>          - link to another web page ( for WM welcome "
"frontend)\n"
msgstr ""

#: standalone/drakhelp:36
#, c-format
msgid "Mandriva Linux Help Center"
msgstr "Kreizenn sikourMandriva Linux"

#: standalone/drakhelp:36
#, c-format
msgid ""
"%s cannot be displayed \n"
". No Help entry of this type\n"
msgstr ""

#: standalone/drakperm:21
#, c-format
msgid "System settings"
msgstr "Dibarzhoù ar reizhiad"

#: standalone/drakperm:22
#, c-format
msgid "Custom settings"
msgstr "Kefluniadur diouzhoc'h"

#: standalone/drakperm:23
#, c-format
msgid "Custom & system settings"
msgstr "Kefluniadur diouzhoc'h ha reizhiad"

#: standalone/drakperm:43
#, fuzzy, c-format
msgid "Editable"
msgstr "Taolenn"

#: standalone/drakperm:48 standalone/drakperm:323
#, c-format
msgid "Path"
msgstr "Hent"

#: standalone/drakperm:48 standalone/drakperm:250
#, c-format
msgid "User"
msgstr "Arveriad"

#: standalone/drakperm:48 standalone/drakperm:250
#, c-format
msgid "Group"
msgstr "Strollad"

#: standalone/drakperm:48 standalone/drakperm:335
#, c-format
msgid "Permissions"
msgstr "Reizhan"

#: standalone/drakperm:57
#, c-format
msgid "Add a new rule"
msgstr "Ouzhpennañ ur reollin nevez"

#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
#, c-format
msgid "Edit current rule"
msgstr "Aozañ ar reollen red"

#: standalone/drakperm:106
#, c-format
msgid ""
"Here you can see files to use in order to fix permissions, owners, and "
"groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""

#: standalone/drakperm:109
#, c-format
msgid ""
"The current security level is %s.\n"
"Select permissions to see/edit"
msgstr ""

#: standalone/drakperm:120
#, c-format
msgid "Up"
msgstr "Sevel"

#: standalone/drakperm:120
#, c-format
msgid "Move selected rule up one level"
msgstr ""

#: standalone/drakperm:121
#, c-format
msgid "Down"
msgstr "Diskenn"

#: standalone/drakperm:121
#, c-format
msgid "Move selected rule down one level"
msgstr ""

#: standalone/drakperm:122
#, c-format
msgid "Add a rule"
msgstr "Ouzhpennañ ur reollin"

#: standalone/drakperm:122
#, c-format
msgid "Add a new rule at the end"
msgstr "Ouzhpennañ ur reollin nevez d'ar fin"

#: standalone/drakperm:123
#, c-format
msgid "Delete selected rule"
msgstr "Lemel ar reollin dibabet"

#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: standalone/drakperm:124 standalone/drakups:302 standalone/drakups:362
#: standalone/drakups:382 standalone/drakvpn:319 standalone/drakvpn:680
#: standalone/printerdrake:232
#, c-format
msgid "Edit"
msgstr "Kemmañ"

#: standalone/drakperm:242
#, c-format
msgid "browse"
msgstr "ergerzhet"

#: standalone/drakperm:247
#, c-format
msgid "user"
msgstr "arveriad"

#: standalone/drakperm:247
#, c-format
msgid "group"
msgstr "strollad"

#: standalone/drakperm:247
#, c-format
msgid "other"
msgstr "all"

#: standalone/drakperm:252
#, c-format
msgid "Read"
msgstr "Lenn"

#. -PO: here %s will be either "user", "group" or "other"
#: standalone/drakperm:255
#, c-format
msgid "Enable \"%s\" to read the file"
msgstr ""

#: standalone/drakperm:259
#, c-format
msgid "Write"
msgstr "Skriv"

#. -PO: here %s will be either "user", "group" or "other"
#: standalone/drakperm:262
#, c-format
msgid "Enable \"%s\" to write the file"
msgstr ""

#: standalone/drakperm:266
#, c-format
msgid "Execute"
msgstr "Seveniñ"

#. -PO: here %s will be either "user", "group" or "other"
#: standalone/drakperm:269
#, c-format
msgid "Enable \"%s\" to execute the file"
msgstr ""

#: standalone/drakperm:272
#, c-format
msgid "Sticky-bit"
msgstr ""

#: standalone/drakperm:272
#, c-format
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""

#: standalone/drakperm:273
#, c-format
msgid "Set-UID"
msgstr ""

#: standalone/drakperm:273
#, c-format
msgid "Use owner id for execution"
msgstr ""

#: standalone/drakperm:274
#, c-format
msgid "Set-GID"
msgstr ""

#: standalone/drakperm:274
#, c-format
msgid "Use group id for execution"
msgstr ""

#: standalone/drakperm:292 standalone/drakxtv:89
#, c-format
msgid "User:"
msgstr "Arveriad :"

#: standalone/drakperm:294
#, c-format
msgid "Group:"
msgstr "Strollad :"

#: standalone/drakperm:298
#, c-format
msgid "Current user"
msgstr "Arveriad red"

#: standalone/drakperm:299
#, c-format
msgid "When checked, owner and group will not be changed"
msgstr ""

#: standalone/drakperm:309
#, c-format
msgid "Path selection"
msgstr "Diuzadenn an hent"

#: standalone/drakperm:329
#, c-format
msgid "Property"
msgstr "Perzhioù"

#: standalone/drakroam:41
#, c-format
msgid ""
"You do not have any wireless interface.\n"
"Run the \"%s\" assistant from the Mandriva Linux Control Center"
msgstr ""

#: standalone/drakroam:141
#, c-format
msgid "ESSID"
msgstr "ESSID"

#: standalone/drakroam:142 standalone/drakvpn:1129
#, c-format
msgid "Mode"
msgstr "Mod"

#: standalone/drakroam:143 standalone/harddrake2:97
#, c-format
msgid "Channel"
msgstr "Kanol"

#: standalone/drakroam:145
#, c-format
msgid "Key"
msgstr "Alc'hwez"

#: standalone/drakroam:161
#, c-format
msgid "Network:"
msgstr "Rouedad:"

#: standalone/drakroam:162
#, c-format
msgid "IP:"
msgstr "IP:"

#: standalone/drakroam:164
#, c-format
msgid "Mode:"
msgstr "Giz :"

#: standalone/drakroam:165
#, c-format
msgid "Encryption:"
msgstr "Enrinegadur:"

#: standalone/drakroam:166
#, c-format
msgid "Signal:"
msgstr "Arhent:"

#: standalone/drakroam:180
#, c-format
msgid "Roaming"
msgstr ""

#: standalone/drakroam:183 standalone/drakroam:266
#, c-format
msgid "Roaming: %s"
msgstr ""

#: standalone/drakroam:183 standalone/drakroam:265 standalone/drakvpn:1047
#: standalone/drakvpn:1063 standalone/drakvpn:1076
#, c-format
msgid "off"
msgstr "dioberiant"

#: standalone/drakroam:190
#, c-format
msgid "Scan interval (sec): "
msgstr ""

#: standalone/drakroam:193
#, c-format
msgid "Set"
msgstr "Lakaat"

#: standalone/drakroam:198
#, c-format
msgid "Known Networks (Drag up/down or edit)"
msgstr ""

#: standalone/drakroam:206
#, c-format
msgid "Connect"
msgstr "Kevreañ"

#: standalone/drakroam:214
#, c-format
msgid "Available Networks"
msgstr "Rouedadoù da gaout"

#: standalone/drakroam:229
#, c-format
msgid "Rescan"
msgstr ""

#: standalone/drakroam:233
#, c-format
msgid "Status"
msgstr "Stad"

#: standalone/drakroam:240
#, c-format
msgid "Disconnect"
msgstr "Digevreañ"

#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: standalone/drakroam:241 standalone/net_applet:89
#: standalone/printerdrake:238
#, c-format
msgid "Refresh"
msgstr "Adtresañ"

#: standalone/drakroam:265 standalone/drakvpn:1047 standalone/drakvpn:1063
#: standalone/drakvpn:1076
#, c-format
msgid "on"
msgstr "oberiant"

#: standalone/draksec:49
#, c-format
msgid "ALL"
msgstr "HOLL"

#: standalone/draksec:50
#, c-format
msgid "LOCAL"
msgstr "LEC'HEL"

#: standalone/draksec:53
#, c-format
msgid "Ignore"
msgstr "Tremen e-biou"

#. -PO: Do not alter the <span ..> and </span> tags.
#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
#: standalone/draksec:101
#, c-format
msgid ""
"Here, you can setup the security level and administrator of your machine.\n"
"\n"
"\n"
"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
"will receive security alerts if the\n"
"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
"username or an email.\n"
"\n"
"\n"
"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
"one of the six preconfigured security levels\n"
"provided with msec. These levels range from '<span weight=\"bold\">poor</"
"span>' security and ease of use, to\n"
"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
"server applications:\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
"very\n"
"easy to use security level. It should only be used for machines not "
"connected to\n"
"any network and that are not accessible to everybody.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
"security\n"
"recommended for a computer that will be used to connect to the Internet as "
"a\n"
"client.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">High</span>: There are already some\n"
"restrictions, and more automatic checks are run every night.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
"enough\n"
"to use the system as a server which can accept connections from many "
"clients. If\n"
"your machine is only a client on the Internet, you should choose a lower "
"level.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
"previous\n"
"level, but the system is entirely closed and security features are at their\n"
"maximum"
msgstr ""
"Amañ e c'hellit kefluniañ al live surantez hag melestradur an surentez\n"
"hoc'h urziataer.\n"
"\n"
"\n"
"Ar « Melestradur an surentez » a vo o resev posteloù surantez ma vez\n"
"bev an dibarzh « <span weight=\"bold\">Posteloù surantez</span> ». Un\n"
"anv arveriad pe ur chomlec'h postel e c'hell bezañ.\n"
"\n"
"\n"
"Gant ar meuziad « <span weight=\"bold\">Live surantez</span> », possubl\n"
"eo dibab unan eus ar c'hwec'h live surantez hag a zo pourvezet. Etre\n"
"« <span weight=\"bold\">Paour</span> » hag « <span\n"
"weight=\"bold\">Ankeniet</span> » eo al live surantez. Aes da implij eo\n"
"« Paour ». Evit ar servijerien eo « Ankeniet ».\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Paour</span> : N'eo ket surantezet ar\n"
"reizhiat met aez da implij eo gant al live-surantez-mañ. Gwell deoc'h\n"
"implij kement-mañ evit un urzhiatazer hag na vez ket ouzh ur rouedad.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Skouer</span> : Setu al live surentez\n"
"standard a vez erbedet evit un urzhiataer a vo implijet evit kevreañ\n"
"evel kliant ouzh ar Genrouedad.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Uhel</span> : Bremañ ez eus gwiriadennoù\n"
"surentez hag a zo sevenet d'an noz.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Uheloc'h</span> : Uhel a-walc'h eo\n"
"bremañ ar surentez evit implijout ar reizhiad evel ur servijer o\n"
"tigemer kevreadennoù a-berzh kliantoù niverus. Ma vez ur c'hliant\n"
"kenrouedad hepken, neuze e vefe moarvat gwelloc'h deoc'h dibab ul live\n"
"izeloc'h.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Ankeniet</span> : Kemer a reomp\n"
"arc'hweloù al live diaraok, hogen bremañ eo peurserret ar reizhiad hag\n"
"an arc'hweloù surentez a zo en o muiañ."

#: standalone/draksec:154 standalone/harddrake2:208
#, c-format
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""

#: standalone/draksec:168
#, c-format
msgid "(default value: %s)"
msgstr "(gwerzh dre ziouer : %s)"

#: standalone/draksec:210
#, c-format
msgid "Security Level:"
msgstr "Live Surentez :"

#: standalone/draksec:217
#, c-format
msgid "Security Administrator:"
msgstr "Merour surentez :"

#: standalone/draksec:219
#, c-format
msgid "Basic options"
msgstr "Dibarzhoù diazeg"

#: standalone/draksec:233
#, c-format
msgid "Network Options"
msgstr "Dibarzhoù ar rouedad"

#: standalone/draksec:233
#, c-format
msgid "System Options"
msgstr "Dibarzhoù ar reizhiad"

#: standalone/draksec:268
#, c-format
msgid "Periodic Checks"
msgstr ""

#: standalone/draksec:298
#, c-format
msgid "Please wait, setting security level..."
msgstr "Emaon o lakaat al live surentez, gortoz mar plij ..."

#: standalone/draksec:304
#, c-format
msgid "Please wait, setting security options..."
msgstr "Emaon o lakaat an dibarzhoù surentez, gortoz mar plij ..."

#: standalone/draksound:47
#, c-format
msgid "No Sound Card detected!"
msgstr "Kartenn gwelet ebet !"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: standalone/draksound:50
#, c-format
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
"\n"
"\n"
"You can visit our hardware database at:\n"
"\n"
"\n"
"http://www.mandrivalinux.com/en/hardware.php3"
msgstr ""

#: standalone/draksound:57
#, c-format
msgid ""
"\n"
"\n"
"\n"
"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
"the sndconfig program.  Just type \"alsaconf\" or \"sndconfig\" in a console."
msgstr ""

#: standalone/draksplash:15
#, c-format
msgid ""
"package 'ImageMagick' is required to be able to complete configuration.\n"
"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""

#: standalone/draksplash:34
#, c-format
msgid ""
"x coordinate of text box\n"
"in number of characters"
msgstr ""

#: standalone/draksplash:35
#, c-format
msgid ""
"y coordinate of text box\n"
"in number of characters"
msgstr ""

#: standalone/draksplash:36
#, c-format
msgid "text width"
msgstr "Lec'hed ar testenn"

#: standalone/draksplash:37
#, c-format
msgid "text box height"
msgstr ""

#: standalone/draksplash:38
#, c-format
msgid ""
"the progress bar x coordinate\n"
"of its upper left corner"
msgstr ""

#: standalone/draksplash:39
#, c-format
msgid ""
"the progress bar y coordinate\n"
"of its upper left corner"
msgstr ""

#: standalone/draksplash:40
#, c-format
msgid "the width of the progress bar"
msgstr ""

#: standalone/draksplash:41
#, c-format
msgid "the height of the progress bar"
msgstr ""

#: standalone/draksplash:58 standalone/draksplash:63
#, c-format
msgid "Choose progress bar color"
msgstr ""

#: standalone/draksplash:59 standalone/draksplash:64
#, c-format
msgid "Choose picture"
msgstr ""

#: standalone/draksplash:60
#, c-format
msgid "Silent bootsplash"
msgstr ""

#: standalone/draksplash:65
#, c-format
msgid "Verbose bootsplash"
msgstr ""

#: standalone/draksplash:67
#, c-format
msgid "Display logo on Console"
msgstr ""

#: standalone/draksplash:70
#, c-format
msgid "Console bootsplash"
msgstr ""

#: standalone/draksplash:76
#, c-format
msgid "Theme name"
msgstr "Anv ar giz"

#: standalone/draksplash:79
#, c-format
msgid "final resolution"
msgstr "spister diwezhañ"

#: standalone/draksplash:84
#, c-format
msgid "Save theme"
msgstr "Enrollañ ar c'hiz"

#: standalone/draksplash:145
#, c-format
msgid "saving Bootsplash theme..."
msgstr "emon oc'h enrollañ ar c'hiz Bootsplash ..."

#: standalone/draksplash:165
#, c-format
msgid "choose image"
msgstr "dibabit ur skeudenn"

#: standalone/draksplash:182
#, fuzzy, c-format
msgid "ProgressBar color selection"
msgstr "Lugerezh ar voullerez"

#: standalone/drakups:74
#, c-format
msgid "Connected through a serial port or an usb cable"
msgstr ""

#: standalone/drakups:80
#, c-format
msgid "Add an UPS device"
msgstr "Ouzhpennañ un drobarzhell UPS"

#: standalone/drakups:83
#, c-format
msgid ""
"Welcome to the UPS configuration utility.\n"
"\n"
"Here, you'll add a new UPS to your system.\n"
msgstr ""

#: standalone/drakups:90
#, c-format
msgid ""
"We're going to add an UPS device.\n"
"\n"
"Do you want to autodetect UPS devices connected to this machine or to "
"manually select them?"
msgstr ""

#: standalone/drakups:93
#, c-format
msgid "Autodetection"
msgstr "Dinoiñ dre ardivink"

#: standalone/drakups:101 standalone/harddrake2:245
#, c-format
msgid "Detection in progress"
msgstr "Emaon o klask"

#: standalone/drakups:120 standalone/drakups:159 standalone/logdrake:449
#: standalone/logdrake:455
#, c-format
msgid "Congratulations"
msgstr "Brav !"

#: standalone/drakups:121
#, c-format
msgid "The wizard successfully added the following UPS devices:"
msgstr ""

#: standalone/drakups:123
#, c-format
msgid "No new UPS devices was found"
msgstr "N'eus trobarzhelloù UPS nevez kavet"

#: standalone/drakups:128 standalone/drakups:140
#, c-format
msgid "UPS driver configuration"
msgstr "Kefluniadur ar sturier UPS"

#: standalone/drakups:128
#, c-format
msgid "Please select your UPS model."
msgstr "Dibabit seurt hoc'h UPS, mar plij."

#: standalone/drakups:129
#, c-format
msgid "Manufacturer / Model:"
msgstr "Farder / Gobari :"

#: standalone/drakups:140
#, c-format
msgid ""
"We are configuring the \"%s\" UPS from \"%s\".\n"
"Please fill in its name, its driver and its port."
msgstr ""

#: standalone/drakups:145
#, c-format
msgid "Name:"
msgstr "Anv :"

#: standalone/drakups:145
#, c-format
msgid "The name of your ups"
msgstr ""

#: standalone/drakups:146
#, c-format
msgid "The driver that manages your ups"
msgstr ""

#: standalone/drakups:147
#, c-format
msgid "Port:"
msgstr "Porzh :"

#: standalone/drakups:149
#, c-format
msgid "The port on which is connected your ups"
msgstr "Ar porzh a-steud m'eo luget ho ups outañ"

#: standalone/drakups:159
#, c-format
msgid "The wizard successfully configured the new \"%s\" UPS device."
msgstr ""

#: standalone/drakups:250
#, c-format
msgid "UPS devices"
msgstr "Trobarzhelloù UPS"

#: standalone/drakups:251 standalone/drakups:270 standalone/drakups:286
#: standalone/harddrake2:85 standalone/harddrake2:111
#: standalone/harddrake2:118
#, c-format
msgid "Name"
msgstr "Anv"

#: standalone/drakups:269
#, c-format
msgid "UPS users"
msgstr "Arveriaded UPS"

#: standalone/drakups:285
#, c-format
msgid "Access Control Lists"
msgstr ""

#: standalone/drakups:286
#, c-format
msgid "IP mask"
msgstr ""

#: standalone/drakups:298
#, c-format
msgid "Rules"
msgstr "Reolennoù"

#: standalone/drakups:299
#, c-format
msgid "Action"
msgstr "Gwezhiad"

#: standalone/drakups:299 standalone/drakvpn:1132 standalone/harddrake2:82
#, c-format
msgid "Level"
msgstr "Live"

#: standalone/drakups:299
#, c-format
msgid "ACL name"
msgstr "Anv an ACL"

#: standalone/drakups:329 standalone/drakups:333 standalone/drakups:342
#, c-format
msgid "DrakUPS"
msgstr "DrakUPS"

#: standalone/drakups:339
#, c-format
msgid "Welcome to the UPS configuration tools"
msgstr "Degemer en ostilh ar c'hefluniadur UPS"

#: standalone/drakvpn:73
#, c-format
msgid "DrakVPN"
msgstr "DrakVPN"

#: standalone/drakvpn:95
#, c-format
msgid "The VPN connection is enabled."
msgstr "Bev eo ar gevreadenn VPN."

#: standalone/drakvpn:96
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
"\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""

#: standalone/drakvpn:101
#, c-format
msgid "disable"
msgstr "marvaat"

#: standalone/drakvpn:101 standalone/drakvpn:127
#, c-format
msgid "reconfigure"
msgstr "adgefluniañ"

#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
#: standalone/drakvpn:721
#, c-format
msgid "dismiss"
msgstr ""

#: standalone/drakvpn:105
#, c-format
msgid "Disabling VPN..."
msgstr "O varvaat ar VPN ..."

#: standalone/drakvpn:114
#, c-format
msgid "The VPN connection is now disabled."
msgstr "Marv eo ar gevreadenn VPN bremañ."

#: standalone/drakvpn:121
#, c-format
msgid "VPN connection currently disabled"
msgstr "Marv eo ar gevreadenn VPN bremañ."

#: standalone/drakvpn:122
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
"\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""

#: standalone/drakvpn:127
#, c-format
msgid "enable"
msgstr "bevaat"

#: standalone/drakvpn:135
#, c-format
msgid "Enabling VPN..."
msgstr "O bevaat ar VPN ..."

#: standalone/drakvpn:141
#, c-format
msgid "The VPN connection is now enabled."
msgstr "Bev eo ar gevreadenn VPN bremañ."

#: standalone/drakvpn:155 standalone/drakvpn:183
#, c-format
msgid "Simple VPN setup."
msgstr ""

#: standalone/drakvpn:156
#, c-format
msgid ""
"You are about to configure your computer to use a VPN connection.\n"
"\n"
"With this feature, computers on your local private network and computers\n"
"on some other remote private networks, can share resources, through\n"
"their respective firewalls, over the Internet, in a secure manner. \n"
"\n"
"The communication over the Internet is encrypted. The local and remote\n"
"computers look as if they were on the same network.\n"
"\n"
"Make sure you have configured your Network/Internet access using\n"
"drakconnect before going any further."
msgstr ""

#: standalone/drakvpn:184
#, c-format
msgid ""
"VPN connection.\n"
"\n"
"This program is based on the following projects:\n"
" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
" - the docs and man pages coming with the %s package\n"
"\n"
"Please read AT LEAST the ipsec-howto docs\n"
"before going any further."
msgstr ""

#: standalone/drakvpn:196
#, c-format
msgid "Kernel module."
msgstr "Mollad ar galon."

#: standalone/drakvpn:197
#, c-format
msgid ""
"The kernel needs to have ipsec support.\n"
"\n"
"You're running a %s kernel version.\n"
"\n"
"This kernel has '%s' support."
msgstr ""

#: standalone/drakvpn:264
#, c-format
msgid "Problems installing package %s"
msgstr "Fazioù en ur staliañ ar pakad %s"

#: standalone/drakvpn:278
#, c-format
msgid "Security Policies"
msgstr "Politikerezhioù ar surentez"

#: standalone/drakvpn:278
#, c-format
msgid "IKE daemon racoon"
msgstr ""

#: standalone/drakvpn:281 standalone/drakvpn:292
#, c-format
msgid "Configuration file"
msgstr "Restr ar c'hefluniadur"

#: standalone/drakvpn:282
#, c-format
msgid ""
"Configuration step!\n"
"\n"
"You need to define the Security Policies and then to \n"
"configure the automatic key exchange (IKE) daemon. \n"
"The KAME IKE daemon we're using is called 'racoon'.\n"
"\n"
"What would you like to configure?\n"
msgstr ""

#: standalone/drakvpn:293
#, c-format
msgid ""
"Next, we will configure the %s file.\n"
"\n"
"\n"
"Simply click on Next.\n"
msgstr ""

#: standalone/drakvpn:311 standalone/drakvpn:671
#, c-format
msgid "%s entries"
msgstr "%s bouetadur"

#: standalone/drakvpn:312
#, c-format
msgid ""
"The %s file contents\n"
"is divided into sections.\n"
"\n"
"You can now:\n"
"\n"
"  - display, add, edit, or remove sections, then\n"
"  - commit the changes\n"
"\n"
"What would you like to do?\n"
msgstr ""

#: standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid ""
"_:display here is a verb\n"
"Display"
msgstr "Diskouez"

#: standalone/drakvpn:319 standalone/drakvpn:680
#, fuzzy, c-format
msgid "Commit"
msgstr "fetis"

#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
#: standalone/drakvpn:699
#, c-format
msgid ""
"_:display here is a verb\n"
"Display configuration"
msgstr "Kefluniadur an diskwel"

#: standalone/drakvpn:338
#, c-format
msgid ""
"The %s file does not exist.\n"
"\n"
"This must be a new configuration.\n"
"\n"
"You'll have to go back and choose 'add'.\n"
msgstr ""

#: standalone/drakvpn:354
#, c-format
msgid "ipsec.conf entries"
msgstr ""

#: standalone/drakvpn:355
#, c-format
msgid ""
"The %s file contains different sections.\n"
"\n"
"Here is its skeleton:\t'config setup' \n"
"\t\t\t\t\t'conn default' \n"
"\t\t\t\t\t'normal1'\n"
"\t\t\t\t\t'normal2' \n"
"\n"
"You can now add one of these sections.\n"
"\n"
"Choose the section you would like to add.\n"
msgstr ""

#: standalone/drakvpn:362
#, c-format
msgid "config setup"
msgstr "kefluniadur"

#: standalone/drakvpn:362
#, fuzzy, c-format
msgid "conn %default"
msgstr "dre ziouer"

#: standalone/drakvpn:362
#, fuzzy, c-format
msgid "normal conn"
msgstr "Boas"

#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
#, c-format
msgid "Exists!"
msgstr "Endeo eo !"

#: standalone/drakvpn:369 standalone/drakvpn:410
#, c-format
msgid ""
"A section with this name already exists.\n"
"The section names have to be unique.\n"
"\n"
"You'll have to go back and add another section\n"
"or change its name.\n"
msgstr ""

#: standalone/drakvpn:386
#, c-format
msgid ""
"This section has to be on top of your\n"
"%s file.\n"
"\n"
"Make sure all other sections follow this config\n"
"setup section.\n"
"\n"
"Choose continue or previous when you are done.\n"
msgstr ""

#: standalone/drakvpn:391
#, c-format
msgid "interfaces"
msgstr "etrefasoù"

#: standalone/drakvpn:392
#, c-format
msgid "klipsdebug"
msgstr ""

#: standalone/drakvpn:393
#, c-format
msgid "plutodebug"
msgstr ""

#: standalone/drakvpn:394
#, c-format
msgid "plutoload"
msgstr ""

#: standalone/drakvpn:395
#, c-format
msgid "plutostart"
msgstr ""

#: standalone/drakvpn:396
#, c-format
msgid "uniqueids"
msgstr ""

#: standalone/drakvpn:430
#, c-format
msgid ""
"This is the first section after the config\n"
"setup one.\n"
"\n"
"Here you define the default settings. \n"
"All the other sections will follow this one.\n"
"The left settings are optional. If do not define\n"
"them here, globally, you can define them in each\n"
"section.\n"
msgstr ""

#: standalone/drakvpn:437
#, c-format
msgid "PFS"
msgstr "PFS"

#: standalone/drakvpn:438
#, c-format
msgid "keyingtries"
msgstr ""

#: standalone/drakvpn:439
#, c-format
msgid "compress"
msgstr ""

#: standalone/drakvpn:440
#, c-format
msgid "disablearrivalcheck"
msgstr ""

#: standalone/drakvpn:441 standalone/drakvpn:480
#, c-format
msgid "left"
msgstr "a-gleiz"

#: standalone/drakvpn:442 standalone/drakvpn:481
#, c-format
msgid "leftcert"
msgstr ""

#: standalone/drakvpn:443 standalone/drakvpn:482
#, c-format
msgid "leftrsasigkey"
msgstr ""

#: standalone/drakvpn:444 standalone/drakvpn:483
#, c-format
msgid "leftsubnet"
msgstr ""

#: standalone/drakvpn:445 standalone/drakvpn:484
#, c-format
msgid "leftnexthop"
msgstr ""

#: standalone/drakvpn:474
#, c-format
msgid ""
"Your %s file has several sections, or connections.\n"
"\n"
"You can now add a new section.\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: standalone/drakvpn:477
#, c-format
msgid "section name"
msgstr "anv an dachenn"

#: standalone/drakvpn:478
#, c-format
msgid "authby"
msgstr ""

#: standalone/drakvpn:479
#, c-format
msgid "auto"
msgstr "emgefreek"

#: standalone/drakvpn:485
#, c-format
msgid "right"
msgstr "a-zehoù"

#: standalone/drakvpn:486
#, fuzzy, c-format
msgid "rightcert"
msgstr "Uheloc'h"

#: standalone/drakvpn:487
#, c-format
msgid "rightrsasigkey"
msgstr ""

#: standalone/drakvpn:488
#, c-format
msgid "rightsubnet"
msgstr ""

#: standalone/drakvpn:489
#, c-format
msgid "rightnexthop"
msgstr ""

#: standalone/drakvpn:497
#, c-format
msgid ""
"A section with this name already exists.\n"
"The section names have to be unique.\n"
"\n"
"You'll have to go back and add another section\n"
"or change the name of the section.\n"
msgstr ""

#: standalone/drakvpn:529
#, c-format
msgid ""
"Add a Security Policy.\n"
"\n"
"You can now add a Security Policy.\n"
"\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: standalone/drakvpn:562 standalone/drakvpn:812
#, c-format
msgid "Edit section"
msgstr "Aozañ an dachenn"

#: standalone/drakvpn:563
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
"\n"
"You can choose here below the one you want to edit \n"
"and then click on next.\n"
msgstr ""

#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
#: standalone/drakvpn:863
#, c-format
msgid "Section names"
msgstr "Anvioù an tachennoù"

#: standalone/drakvpn:576
#, c-format
msgid "Can not edit!"
msgstr "N'hellan ket aozañ !"

#: standalone/drakvpn:577
#, c-format
msgid ""
"You cannot edit this section.\n"
"\n"
"This section is mandatory for Freeswan 2.X.\n"
"One has to specify version 2.0 on the top\n"
"of the %s file, and eventually, disable or\n"
"enable the opportunistic encryption.\n"
msgstr ""

#: standalone/drakvpn:586
#, c-format
msgid ""
"Your %s file has several sections.\n"
"\n"
"You can now edit the config setup section entries.\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: standalone/drakvpn:597
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
"\n"
"You can now edit the default section entries.\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: standalone/drakvpn:610
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
"\n"
"You can now edit the normal section entries.\n"
"\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: standalone/drakvpn:631
#, c-format
msgid ""
"Edit a Security Policy.\n"
"\n"
"You can now edit a Security Policy.\n"
"\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: standalone/drakvpn:642 standalone/drakvpn:859
#, c-format
msgid "Remove section"
msgstr "Lemel an dachenn"

#: standalone/drakvpn:643 standalone/drakvpn:860
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
"\n"
"You can choose here below the one you want to remove\n"
"and then click on next.\n"
msgstr ""

#: standalone/drakvpn:672
#, c-format
msgid ""
"The racoon.conf file configuration.\n"
"\n"
"The contents of this file is divided into sections.\n"
"You can now:\n"
"  - display \t\t (display the file contents)\n"
"  - add\t\t\t (add one section)\n"
"  - edit \t\t\t (modify parameters of an existing section)\n"
"  - remove \t\t (remove an existing section)\n"
"  - commit \t\t (writes the changes to the real file)"
msgstr ""

#: standalone/drakvpn:700
#, c-format
msgid ""
"The %s file does not exist\n"
"\n"
"This must be a new configuration.\n"
"\n"
"You'll have to go back and choose configure.\n"
msgstr ""

#: standalone/drakvpn:714
#, c-format
msgid "racoonf.conf entries"
msgstr ""

#: standalone/drakvpn:715
#, c-format
msgid ""
"The 'add' sections step.\n"
"\n"
"Here below is the racoon.conf file skeleton:\n"
"\t'path'\n"
"\t'remote'\n"
"\t'sainfo' \n"
"\n"
"Choose the section you would like to add.\n"
msgstr ""

#: standalone/drakvpn:721
#, c-format
msgid "path"
msgstr "hent"

#: standalone/drakvpn:721
#, c-format
msgid "remote"
msgstr "a-bell"

#: standalone/drakvpn:721
#, c-format
msgid "sainfo"
msgstr "sainfo"

#: standalone/drakvpn:729
#, c-format
msgid ""
"The 'add path' section step.\n"
"\n"
"The path sections have to be on top of your racoon.conf file.\n"
"\n"
"Put your mouse over the certificate entry to obtain online help."
msgstr ""

#: standalone/drakvpn:732
#, c-format
msgid "path type"
msgstr "seurt an hent"

#: standalone/drakvpn:736
#, c-format
msgid ""
"path include path: specifies a path to include\n"
"a file. See File Inclusion.\n"
"\tExample: path include '/etc/racoon'\n"
"\n"
"path pre_shared_key file: specifies a file containing\n"
"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
"\n"
"path certificate path: racoon(8) will search this directory\n"
"if a certificate or certificate request is received.\n"
"\tExample: path certificate '/etc/cert' ;\n"
"\n"
"File Inclusion: include file \n"
"other configuration files can be included.\n"
"\tExample: include \"remote.conf\" ;\n"
"\n"
"Pre-shared key File: Pre-shared key file defines a pair\n"
"of the identifier and the shared secret key which are used at\n"
"Pre-shared key authentication method in phase 1."
msgstr ""

#: standalone/drakvpn:756 standalone/drakvpn:849
#, c-format
msgid "real file"
msgstr "gwir restr"

#: standalone/drakvpn:779
#, c-format
msgid ""
"Make sure you already have the path sections\n"
"on the top of your racoon.conf file.\n"
"\n"
"You can now choose the remote settings.\n"
"Choose continue or previous when you are done.\n"
msgstr ""

#: standalone/drakvpn:796
#, c-format
msgid ""
"Make sure you already have the path sections\n"
"on the top of your %s file.\n"
"\n"
"You can now choose the sainfo settings.\n"
"Choose continue or previous when you are done.\n"
msgstr ""

#: standalone/drakvpn:813
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
"\n"
"You can choose here in the list below the one you want\n"
"to edit and then click on next.\n"
msgstr ""

#: standalone/drakvpn:824
#, c-format
msgid ""
"Your %s file has several sections.\n"
"\n"
"\n"
"You can now edit the remote section entries.\n"
"\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: standalone/drakvpn:833
#, c-format
msgid ""
"Your %s file has several sections.\n"
"\n"
"You can now edit the sainfo section entries.\n"
"\n"
"Choose continue when you are done to write the data."
msgstr ""

#: standalone/drakvpn:841
#, c-format
msgid ""
"This section has to be on top of your\n"
"%s file.\n"
"\n"
"Make sure all other sections follow these path\n"
"sections.\n"
"\n"
"You can now edit the path entries.\n"
"\n"
"Choose continue or previous when you are done.\n"
msgstr ""

#: standalone/drakvpn:848
#, c-format
msgid "path_type"
msgstr "seurt_an_hent"

#: standalone/drakvpn:889
#, c-format
msgid ""
"Everything has been configured.\n"
"\n"
"You may now share resources through the Internet,\n"
"in a secure way, using a VPN connection.\n"
"\n"
"You should make sure that that the tunnels shorewall\n"
"section is configured."
msgstr ""

#: standalone/drakvpn:909
#, c-format
msgid "Sainfo source address"
msgstr ""

#: standalone/drakvpn:910
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
"defines the parameters of the IKE phase 2\n"
"(IPsec-SA establishment).\n"
"\n"
"source_id and destination_id are constructed like:\n"
"\n"
"\taddress address [/ prefix] [[port]] ul_proto\n"
"\n"
"Examples: \n"
"\n"
"sainfo anonymous (accepts connections from anywhere)\n"
"\tleave blank this entry if you want anonymous\n"
"\n"
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\t203.178.141.209 is the source address\n"
"\n"
"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
"\t172.16.1.0/24 is the source address"
msgstr ""

#: standalone/drakvpn:927
#, c-format
msgid "Sainfo source protocol"
msgstr ""

#: standalone/drakvpn:928
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
"defines the parameters of the IKE phase 2\n"
"(IPsec-SA establishment).\n"
"\n"
"source_id and destination_id are constructed like:\n"
"\n"
"\taddress address [/ prefix] [[port]] ul_proto\n"
"\n"
"Examples: \n"
"\n"
"sainfo anonymous (accepts connections from anywhere)\n"
"\tleave blank this entry if you want anonymous\n"
"\n"
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\tthe first 'any' allows any protocol for the source"
msgstr ""

#: standalone/drakvpn:942
#, c-format
msgid "Sainfo destination address"
msgstr ""

#: standalone/drakvpn:943
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
"defines the parameters of the IKE phase 2\n"
"(IPsec-SA establishment).\n"
"\n"
"source_id and destination_id are constructed like:\n"
"\n"
"\taddress address [/ prefix] [[port]] ul_proto\n"
"\n"
"Examples: \n"
"\n"
"sainfo anonymous (accepts connections from anywhere)\n"
"\tleave blank this entry if you want anonymous\n"
"\n"
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\t203.178.141.218 is the destination address\n"
"\n"
"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
"\t172.16.2.0/24 is the destination address"
msgstr ""

#: standalone/drakvpn:960
#, fuzzy, c-format
msgid "Sainfo destination protocol"
msgstr "Titouroù"

#: standalone/drakvpn:961
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
"defines the parameters of the IKE phase 2\n"
"(IPsec-SA establishment).\n"
"\n"
"source_id and destination_id are constructed like:\n"
"\n"
"\taddress address [/ prefix] [[port]] ul_proto\n"
"\n"
"Examples: \n"
"\n"
"sainfo anonymous (accepts connections from anywhere)\n"
"\tleave blank this entry if you want anonymous\n"
"\n"
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\tthe last 'any' allows any protocol for the destination"
msgstr ""

#: standalone/drakvpn:975
#, c-format
msgid "PFS group"
msgstr "Strollad PFS"

#: standalone/drakvpn:977
#, c-format
msgid ""
"define the group of Diffie-Hellman exponentiations.\n"
"If you do not require PFS then you can omit this directive.\n"
"Any proposal will be accepted if you do not specify one.\n"
"group is one of the following: modp768, modp1024, modp1536.\n"
"Or you can define 1, 2, or 5 as the DH group number."
msgstr ""

#: standalone/drakvpn:982
#, fuzzy, c-format
msgid "Lifetime number"
msgstr "ur niverenn"

#: standalone/drakvpn:983
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
"posed in the phase 1 negotiations.  Any proposal will be\n"
"accepted, and the attribute(s) will not be proposed to\n"
"the peer if you do not specify it(them).  They can be\n"
"individually specified in each proposal.\n"
"\n"
"Examples: \n"
"\n"
"        lifetime time 1 min;    # sec,min,hour\n"
"        lifetime time 1 min;    # sec,min,hour\n"
"        lifetime time 30 sec;\n"
"        lifetime time 30 sec;\n"
"        lifetime time 60 sec;\n"
"\tlifetime time 12 hour;\n"
"\n"
"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
msgstr ""

#: standalone/drakvpn:999
#, c-format
msgid "Lifetime unit"
msgstr ""

#: standalone/drakvpn:1001
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
"posed in the phase 1 negotiations.  Any proposal will be\n"
"accepted, and the attribute(s) will not be proposed to\n"
"the peer if you do not specify it(them).  They can be\n"
"individually specified in each proposal.\n"
"\n"
"Examples: \n"
"\n"
"        lifetime time 1 min;    # sec,min,hour\n"
"        lifetime time 1 min;    # sec,min,hour\n"
"        lifetime time 30 sec;\n"
"        lifetime time 30 sec;\n"
"        lifetime time 60 sec;\n"
"\tlifetime time 12 hour;\n"
"\n"
"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
"'hour'.\n"
msgstr ""

#: standalone/drakvpn:1019
#, fuzzy, c-format
msgid "Authentication algorithm"
msgstr "dilesadur"

#: standalone/drakvpn:1021
#, c-format
msgid "Compression algorithm"
msgstr ""

#: standalone/drakvpn:1022
#, fuzzy, c-format
msgid "deflate"
msgstr "dre ziouer"

#: standalone/drakvpn:1029
#, c-format
msgid "Remote"
msgstr "A-bell"

#: standalone/drakvpn:1030
#, c-format
msgid ""
"remote (address | anonymous) [[port]] { statements }\n"
"specifies the parameters for IKE phase 1 for each remote node.\n"
"The default port is 500.  If anonymous is specified, the state-\n"
"ments apply to all peers which do not match any other remote\n"
"directive.\n"
"\n"
"Examples: \n"
"\n"
"remote anonymous\n"
"remote ::1 [8000]"
msgstr ""

#: standalone/drakvpn:1038
#, fuzzy, c-format
msgid "Exchange mode"
msgstr "Anv domani"

#: standalone/drakvpn:1040
#, c-format
msgid ""
"defines the exchange mode for phase 1 when racoon is the\n"
"initiator. Also it means the acceptable exchange mode\n"
"when racoon is responder. More than one mode can be\n"
"specified by separating them with a comma. All of the\n"
"modes are acceptable. The first exchange mode is what\n"
"racoon uses when it is the initiator.\n"
msgstr ""

#: standalone/drakvpn:1046
#, c-format
msgid "Generate policy"
msgstr "Krouiñ ar politikerez"

#: standalone/drakvpn:1048
#, c-format
msgid ""
"This directive is for the responder.  Therefore you\n"
"should set passive on in order that racoon(8) only\n"
"becomes a responder.  If the responder does not have any\n"
"policy in SPD during phase 2 negotiation, and the direc-\n"
"tive is set on, then racoon(8) will choice the first pro-\n"
"posal in the SA payload from the initiator, and generate\n"
"policy entries from the proposal.  It is useful to nego-\n"
"tiate with the client which is allocated IP address\n"
"dynamically.  Note that inappropriate policy might be\n"
"installed into the responder's SPD by the initiator.  So\n"
"that other communication might fail if such policies\n"
"installed due to some policy mismatches between the ini-\n"
"tiator and the responder.  This directive is ignored in\n"
"the initiator case.  The default value is off."
msgstr ""

#: standalone/drakvpn:1062
#, fuzzy, c-format
msgid "Passive"
msgstr "Palestin"

#: standalone/drakvpn:1064
#, c-format
msgid ""
"If you do not want to initiate the negotiation, set this\n"
"to on.  The default value is off.  It is useful for a\n"
"server."
msgstr ""

#: standalone/drakvpn:1067
#, c-format
msgid "Certificate type"
msgstr "Seurt an testeni"

#: standalone/drakvpn:1069
#, c-format
msgid "My certfile"
msgstr "Ma restr testeni"

#: standalone/drakvpn:1070
#, c-format
msgid "Name of the certificate"
msgstr "Anv an testeni"

#: standalone/drakvpn:1071
#, c-format
msgid "My private key"
msgstr "Ma alc'hwez sekred"

#: standalone/drakvpn:1072
#, c-format
msgid "Name of the private key"
msgstr "Anv an alc'hwez sekred"

#: standalone/drakvpn:1073
#, fuzzy, c-format
msgid "Peers certfile"
msgstr "Dibabit ar restr"

#: standalone/drakvpn:1074
#, c-format
msgid "Name of the peers certificate"
msgstr ""

#: standalone/drakvpn:1075
#, c-format
msgid "Verify cert"
msgstr "Gwiriekaat an testeni"

#: standalone/drakvpn:1077
#, c-format
msgid ""
"If you do not want to verify the peer's certificate for\n"
"some reason, set this to off.  The default is on."
msgstr ""

#: standalone/drakvpn:1079
#, c-format
msgid "My identifier"
msgstr "Ma niverenn"

#: standalone/drakvpn:1080
#, c-format
msgid ""
"specifies the identifier sent to the remote host and the\n"
"type to use in the phase 1 negotiation.  address, FQDN,\n"
"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
"they are used like:\n"
"\tmy_identifier address [address];\n"
"\t\tthe type is the IP address.  This is the default\n"
"\t\ttype if you do not specify an identifier to use.\n"
"\tmy_identifier user_fqdn string;\n"
"\t\tthe type is a USER_FQDN (user fully-qualified\n"
"\t\tdomain name).\n"
"\tmy_identifier FQDN string;\n"
"\t\tthe type is a FQDN (fully-qualified domain name).\n"
"\tmy_identifier keyid file;\n"
"\t\tthe type is a KEY_ID.\n"
"\tmy_identifier asn1dn [string];\n"
"\t\tthe type is an ASN.1 distinguished name.  If\n"
"\t\tstring is omitted, racoon(8) will get DN from\n"
"\t\tSubject field in the certificate.\n"
"\n"
"Examples: \n"
"\n"
"my_identifier user_fqdn \"myemail@mydomain.com\""
msgstr ""

#: standalone/drakvpn:1100
#, fuzzy, c-format
msgid "Peers identifier"
msgstr "Moullerez"

#: standalone/drakvpn:1101
#, c-format
msgid "Proposal"
msgstr ""

#: standalone/drakvpn:1103
#, c-format
msgid ""
"specify the encryption algorithm used for the\n"
"phase 1 negotiation. This directive must be defined. \n"
"algorithm is one of the following: \n"
"\n"
"DES, 3DES, blowfish, cast128 for oakley.\n"
"\n"
"For other transforms, this statement should not be used."
msgstr ""

#: standalone/drakvpn:1110
#, c-format
msgid "Hash algorithm"
msgstr ""

#: standalone/drakvpn:1112
#, c-format
msgid "DH group"
msgstr "Strollad DH"

#: standalone/drakvpn:1119
#, c-format
msgid "Command"
msgstr "Urzhiad"

#: standalone/drakvpn:1120
#, c-format
msgid "Source IP range"
msgstr ""

#: standalone/drakvpn:1121
#, c-format
msgid "Destination IP range"
msgstr ""

#: standalone/drakvpn:1122
#, c-format
msgid "Upper-layer protocol"
msgstr ""

#: standalone/drakvpn:1122 standalone/drakvpn:1129
#, c-format
msgid "any"
msgstr "un dra bennak"

#: standalone/drakvpn:1124
#, c-format
msgid "Flag"
msgstr "Banniel"

#: standalone/drakvpn:1125
#, c-format
msgid "Direction"
msgstr "Keñver"

#: standalone/drakvpn:1126
#, c-format
msgid "IPsec policy"
msgstr "Politikerez IPsec"

#: standalone/drakvpn:1126
#, c-format
msgid "ipsec"
msgstr "ipsec"

#: standalone/drakvpn:1126
#, c-format
msgid "discard"
msgstr "lemel"

#: standalone/drakvpn:1129
#, c-format
msgid "tunnel"
msgstr "tunnel"

#: standalone/drakvpn:1129
#, fuzzy, c-format
msgid "transport"
msgstr "Porzhioù all"

#: standalone/drakvpn:1131
#, c-format
msgid "Source/destination"
msgstr "Tizh/dehaezadur"

#: standalone/drakvpn:1132
#, c-format
msgid "require"
msgstr ""

#: standalone/drakvpn:1132
#, c-format
msgid "default"
msgstr "dre ziouer"

#: standalone/drakvpn:1132
#, c-format
msgid "use"
msgstr "implij"

#: standalone/drakvpn:1132
#, c-format
msgid "unique"
msgstr "dieil"

#: standalone/drakxtv:45
#, c-format
msgid "USA (broadcast)"
msgstr "SUA (skignañ)"

#: standalone/drakxtv:45
#, c-format
msgid "USA (cable)"
msgstr "SUA (fun)"

#: standalone/drakxtv:45
#, c-format
msgid "USA (cable-hrc)"
msgstr "SUA (cable-hrc)"

#: standalone/drakxtv:45
#, c-format
msgid "Canada (cable)"
msgstr "Kanada (fun)"

#: standalone/drakxtv:46
#, c-format
msgid "Japan (broadcast)"
msgstr "Japon (skignañ)"

#: standalone/drakxtv:46
#, c-format
msgid "Japan (cable)"
msgstr "Japon (fun)"

#: standalone/drakxtv:46
#, c-format
msgid "China (broadcast)"
msgstr "Sina (skignañ)"

#: standalone/drakxtv:47
#, c-format
msgid "West Europe"
msgstr "Europa-Heol"

#: standalone/drakxtv:47
#, c-format
msgid "East Europe"
msgstr "Europa reter"

#: standalone/drakxtv:47
#, c-format
msgid "France [SECAM]"
msgstr "Gall [SECAM]"

#: standalone/drakxtv:48
#, c-format
msgid "Newzealand"
msgstr "Zeland nevez"

#: standalone/drakxtv:51
#, c-format
msgid "Australian Optus cable TV"
msgstr ""

#: standalone/drakxtv:85
#, c-format
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""

#: standalone/drakxtv:87
#, c-format
msgid "TV norm:"
msgstr "Seurt ar skinwel :"

#: standalone/drakxtv:88
#, c-format
msgid "Area:"
msgstr "Bro :"

#: standalone/drakxtv:93
#, c-format
msgid "Scanning for TV channels in progress..."
msgstr "Emaon o klask kanolioù ar skinwell"

#: standalone/drakxtv:103
#, c-format
msgid "Scanning for TV channels"
msgstr "O klask kanolioù ar skinwell"

#: standalone/drakxtv:107
#, c-format
msgid "There was an error while scanning for TV channels"
msgstr "Degouezhet ez eus ur fazi en ur klask kanolioù ar skinwell"

#: standalone/drakxtv:110
#, c-format
msgid "Have a nice day!"
msgstr ""

#: standalone/drakxtv:111
#, c-format
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""

#: standalone/drakxtv:149
#, c-format
msgid "No TV Card detected!"
msgstr "Kartenn TV ebet !"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: standalone/drakxtv:151
#, c-format
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
"\n"
"\n"
"You can visit our hardware database at:\n"
"\n"
"\n"
"http://www.mandrivalinux.com/en/hardware.php3"
msgstr ""

#: standalone/harddrake2:25
#, c-format
msgid "Alternative drivers"
msgstr "Sturierien all"

#: standalone/harddrake2:26
#, c-format
msgid "the list of alternative drivers for this sound card"
msgstr "roll ar sturierien all evit ar gartenn gwelet-mañ"

#: standalone/harddrake2:29
#, c-format
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""

#: standalone/harddrake2:31 standalone/harddrake2:146
#, fuzzy, c-format
msgid "Bus identification"
msgstr "Dilesadur"

#: standalone/harddrake2:32
#, c-format
msgid ""
"- PCI and USB devices: this lists the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""

#: standalone/harddrake2:35
#, c-format
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""

#: standalone/harddrake2:38
#, c-format
msgid "Drive capacity"
msgstr ""

#: standalone/harddrake2:38
#, c-format
msgid "special capacities of the driver (burning ability and or DVD support)"
msgstr ""

#: standalone/harddrake2:39
#, c-format
msgid "this field describes the device"
msgstr ""

#: standalone/harddrake2:40
#, c-format
msgid "Old device file"
msgstr "Trobarzhell kozh ar restr"

#: standalone/harddrake2:41
#, c-format
msgid "old static device name used in dev package"
msgstr ""

#: standalone/harddrake2:42
#, c-format
msgid "New devfs device"
msgstr "Trobarzhell devfs nevez"

#: standalone/harddrake2:43
#, c-format
msgid "new dynamic device name generated by core kernel devfs"
msgstr ""

#. -PO: here "module" is the "jargon term" for a kernel driver
#: standalone/harddrake2:46
#, c-format
msgid "Module"
msgstr "Mollad"

#: standalone/harddrake2:46
#, c-format
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr ""

#: standalone/harddrake2:47
#, c-format
msgid "Extended partitions"
msgstr "Parzhadurioù astennet"

#: standalone/harddrake2:47
#, c-format
msgid "the number of extended partitions"
msgstr "niver a parzhadurioù astennet"

#: standalone/harddrake2:48
#, c-format
msgid "Geometry"
msgstr "Mentoniezh"

#: standalone/harddrake2:48
#, c-format
msgid "Cylinder/head/sectors geometry of the disk"
msgstr ""

#: standalone/harddrake2:49
#, c-format
msgid "Disk controller"
msgstr "Kontroller pladenn"

#: standalone/harddrake2:49
#, c-format
msgid "the disk controller on the host side"
msgstr "ar gontroller pladenn ouzh an ostiz"

#: standalone/harddrake2:50
#, c-format
msgid "class of hardware device"
msgstr ""

#: standalone/harddrake2:51 standalone/harddrake2:83
#: standalone/printerdrake:211
#, c-format
msgid "Model"
msgstr "Gobari"

#: standalone/harddrake2:51
#, c-format
msgid "hard disk model"
msgstr "Gobari ar bladenn"

#: standalone/harddrake2:52
#, c-format
msgid "network printer port"
msgstr "porzh ar voullerez rouedad"

#: standalone/harddrake2:53
#, c-format
msgid "Primary partitions"
msgstr "Parzhadurioù kentañ"

#: standalone/harddrake2:53
#, c-format
msgid "the number of the primary partitions"
msgstr "niver a parzhadurioù kentañ"

#: standalone/harddrake2:54
#, c-format
msgid "the vendor name of the device"
msgstr "anv gwerzher an drobarzhell"

#: standalone/harddrake2:55
#, c-format
msgid "Bus PCI #"
msgstr "Bus PCI #"

#: standalone/harddrake2:55
#, fuzzy, c-format
msgid "the PCI bus on which the device is plugged"
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."

#: standalone/harddrake2:56
#, c-format
msgid "PCI device #"
msgstr "Trobarzhell PCI #"

#: standalone/harddrake2:56
#, c-format
msgid "PCI device number"
msgstr "niverenn an drobarzhell PCI"

#: standalone/harddrake2:57
#, c-format
msgid "PCI function #"
msgstr ""

#: standalone/harddrake2:57
#, fuzzy, c-format
msgid "PCI function number"
msgstr "Anv ar gevreadenn"

#: standalone/harddrake2:58
#, c-format
msgid "Vendor ID"
msgstr "ID ar werzher"

#: standalone/harddrake2:58
#, c-format
msgid "this is the standard numerical identifier of the vendor"
msgstr ""

#: standalone/harddrake2:59
#, c-format
msgid "Device ID"
msgstr "ID an drobarzhell"

#: standalone/harddrake2:59
#, fuzzy, c-format
msgid "this is the numerical identifier of the device"
msgstr "anv gwerzher an drobarzhell"

#: standalone/harddrake2:60
#, c-format
msgid "Sub vendor ID"
msgstr ""

#: standalone/harddrake2:60
#, c-format
msgid "this is the minor numerical identifier of the vendor"
msgstr ""

#: standalone/harddrake2:61
#, fuzzy, c-format
msgid "Sub device ID"
msgstr "trobarzhell"

#: standalone/harddrake2:61
#, fuzzy, c-format
msgid "this is the minor numerical identifier of the device"
msgstr "anv gwerzher an drobarzhell"

#: standalone/harddrake2:62
#, c-format
msgid "Device USB ID"
msgstr "ID an drobarzhell USB"

#: standalone/harddrake2:62
#, c-format
msgid ".."
msgstr ".."

#: standalone/harddrake2:66
#, c-format
msgid "Bogomips"
msgstr ""

#: standalone/harddrake2:66
#, c-format
msgid ""
"the GNU/Linux kernel needs to run a calculation loop at boot time to "
"initialize a timer counter.  Its result is stored as bogomips as a way to "
"\"benchmark\" the cpu."
msgstr ""

#: standalone/harddrake2:67
#, c-format
msgid "Cache size"
msgstr "Ment ar grubuilh"

#: standalone/harddrake2:67
#, c-format
msgid "size of the (second level) cpu cache"
msgstr ""

#. -PO: here "comas" is the medical coma, not the lexical coma!!
#: standalone/harddrake2:70
#, c-format
msgid "Coma bug"
msgstr ""

#: standalone/harddrake2:70
#, c-format
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""

#: standalone/harddrake2:71
#, c-format
msgid "Cpuid family"
msgstr ""

#: standalone/harddrake2:71
#, c-format
msgid "family of the cpu (eg: 6 for i686 class)"
msgstr ""

#: standalone/harddrake2:72
#, c-format
msgid "Cpuid level"
msgstr "Live cpuid"

#: standalone/harddrake2:72
#, c-format
msgid "information level that can be obtained through the cpuid instruction"
msgstr ""

#: standalone/harddrake2:73
#, c-format
msgid "Frequency (MHz)"
msgstr "Frekañs (Mhz)"

#: standalone/harddrake2:73
#, c-format
msgid ""
"the CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""

#: standalone/harddrake2:74
#, c-format
msgid "Flags"
msgstr "Bannielloù"

#: standalone/harddrake2:74
#, c-format
msgid "CPU flags reported by the kernel"
msgstr ""

#: standalone/harddrake2:75
#, c-format
msgid "Fdiv bug"
msgstr ""

#: standalone/harddrake2:76
#, c-format
msgid ""
"Early Intel Pentium chips manufactured have a bug in their floating point "
"processor which did not achieve the required precision when performing a "
"Floating point DIVision (FDIV)"
msgstr ""

#: standalone/harddrake2:77
#, c-format
msgid "Is FPU present"
msgstr ""

#: standalone/harddrake2:77
#, c-format
msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""

#: standalone/harddrake2:78
#, c-format
msgid "Whether the FPU has an irq vector"
msgstr ""

#: standalone/harddrake2:78
#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""

#: standalone/harddrake2:79
#, c-format
msgid "F00f bug"
msgstr ""

#: standalone/harddrake2:79
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""

#: standalone/harddrake2:80
#, c-format
msgid "Halt bug"
msgstr ""

#: standalone/harddrake2:81
#, c-format
msgid ""
"Some of the early i486DX-100 chips cannot reliably return to operating mode "
"after the \"halt\" instruction is used"
msgstr ""

#: standalone/harddrake2:82
#, c-format
msgid "sub generation of the cpu"
msgstr ""

#: standalone/harddrake2:83
#, c-format
msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
msgstr ""

#: standalone/harddrake2:84
#, c-format
msgid "Model name"
msgstr "Anv ar gobari"

#: standalone/harddrake2:84
#, c-format
msgid "official vendor name of the cpu"
msgstr ""

#: standalone/harddrake2:85
#, c-format
msgid "the name of the CPU"
msgstr ""

#: standalone/harddrake2:86
#, c-format
msgid "Processor ID"
msgstr ""

#: standalone/harddrake2:86
#, c-format
msgid "the number of the processor"
msgstr ""

#: standalone/harddrake2:87
#, fuzzy, c-format
msgid "Model stepping"
msgstr "O furmadiñ"

#: standalone/harddrake2:87
#, c-format
msgid "stepping of the cpu (sub model (generation) number)"
msgstr ""

#: standalone/harddrake2:88
#, c-format
msgid "the vendor name of the processor"
msgstr ""

#: standalone/harddrake2:89
#, fuzzy, c-format
msgid "Write protection"
msgstr "Dilesadur"

#: standalone/harddrake2:89
#, c-format
msgid ""
"the WP flag in the CR0 register of the cpu enforce write protection at the "
"memory page level, thus enabling the processor to prevent unchecked kernel "
"accesses to user memory (aka this is a bug guard)"
msgstr ""

#: standalone/harddrake2:93
#, c-format
msgid "Floppy format"
msgstr "Furmad ar bladennig"

#: standalone/harddrake2:93
#, c-format
msgid "format of floppies supported by the drive"
msgstr ""

#: standalone/harddrake2:97
#, c-format
msgid "EIDE/SCSI channel"
msgstr "Kanol EIDE/SCSI"

#: standalone/harddrake2:98
#, fuzzy, c-format
msgid "Disk identifier"
msgstr "Moullerez"

#: standalone/harddrake2:98
#, c-format
msgid "usually the disk serial number"
msgstr ""

#: standalone/harddrake2:99
#, fuzzy, c-format
msgid "Logical unit number"
msgstr "Anv al levrenn poellek "

#: standalone/harddrake2:99
#, c-format
msgid ""
"the SCSI target number (LUN). SCSI devices connected to a host are uniquely "
"identified by a\n"
"channel number, a target id and a logical unit number"
msgstr ""

#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
#: standalone/harddrake2:106
#, c-format
msgid "Installed size"
msgstr "Ment staliet"

#: standalone/harddrake2:106
#, c-format
msgid "Installed size of the memory bank"
msgstr ""

#: standalone/harddrake2:107
#, c-format
msgid "Enabled Size"
msgstr "Ment bev"

#: standalone/harddrake2:107
#, c-format
msgid "Enabled size of the memory bank"
msgstr ""

#: standalone/harddrake2:108
#, c-format
msgid "type of the memory device"
msgstr "seurt an drobarzhell vemor"

#: standalone/harddrake2:109
#, c-format
msgid "Speed"
msgstr "Tizh"

#: standalone/harddrake2:109
#, c-format
msgid "Speed of the memory bank"
msgstr ""

#: standalone/harddrake2:110
#, fuzzy, c-format
msgid "Bank connections"
msgstr "Meran liammoù"

#: standalone/harddrake2:111
#, c-format
msgid "Socket designation of the memory bank"
msgstr ""

#: standalone/harddrake2:115
#, c-format
msgid "Device file"
msgstr "Restr ar drobarzhell"

#: standalone/harddrake2:115
#, c-format
msgid ""
"the device file used to communicate with the kernel driver for the mouse"
msgstr ""

#: standalone/harddrake2:116
#, c-format
msgid "Emulated wheel"
msgstr ""

#: standalone/harddrake2:116
#, fuzzy, c-format
msgid "whether the wheel is emulated or not"
msgstr "Logitech MouseMan+/FirstMouse+"

#: standalone/harddrake2:117
#, c-format
msgid "the type of the mouse"
msgstr "seurt al logodenn"

#: standalone/harddrake2:118
#, c-format
msgid "the name of the mouse"
msgstr "anv al logodenn"

#: standalone/harddrake2:119
#, c-format
msgid "Number of buttons"
msgstr "Niver a nozelioù"

#: standalone/harddrake2:119
#, c-format
msgid "the number of buttons the mouse has"
msgstr "niver a nozelioù gand al logodenn"

#: standalone/harddrake2:120
#, fuzzy, c-format
msgid "the type of bus on which the mouse is connected"
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."

#: standalone/harddrake2:121
#, c-format
msgid "Mouse protocol used by X11"
msgstr ""

#: standalone/harddrake2:121
#, c-format
msgid "the protocol that the graphical desktop use with the mouse"
msgstr ""

#: standalone/harddrake2:128 standalone/harddrake2:137
#: standalone/harddrake2:144 standalone/harddrake2:152
#: standalone/harddrake2:318
#, c-format
msgid "Identification"
msgstr "Dilesadur"

#: standalone/harddrake2:129 standalone/harddrake2:145
#, c-format
msgid "Connection"
msgstr "Kevreadenn"

#: standalone/harddrake2:138
#, fuzzy, c-format
msgid "Performances"
msgstr "Dibarzhoù"

#: standalone/harddrake2:139
#, c-format
msgid "Bugs"
msgstr "Bugoù"

#: standalone/harddrake2:140
#, c-format
msgid "FPU"
msgstr ""

#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
msgstr "Parzhadurioù"

#: standalone/harddrake2:153
#, c-format
msgid "Features"
msgstr "Arc'hweloù"

#. -PO: please keep all "/" characters !!!
#: standalone/harddrake2:176 standalone/logdrake:76
#: standalone/printerdrake:134 standalone/printerdrake:147
#, c-format
msgid "/_Options"
msgstr "/_Dibarzhoù"

#: standalone/harddrake2:177 standalone/harddrake2:203 standalone/logdrake:78
#: standalone/printerdrake:159 standalone/printerdrake:161
#: standalone/printerdrake:164 standalone/printerdrake:166
#, c-format
msgid "/_Help"
msgstr "/_Skoazell"

#: standalone/harddrake2:181
#, c-format
msgid "/Autodetect _printers"
msgstr "/Kavout _moullerezioù"

#: standalone/harddrake2:182
#, c-format
msgid "/Autodetect _modems"
msgstr "/Kavout m_odemioù"

#: standalone/harddrake2:183
#, c-format
msgid "/Autodetect _jaz drives"
msgstr "/Kavout an drobarzhelloù _jaz "

#: standalone/harddrake2:184
#, c-format
msgid "/Autodetect parallel _zip drives"
msgstr ""

#: standalone/harddrake2:191
#, c-format
msgid "/_Upload the hardware list"
msgstr "/_Ezkargañ roll ar perientel"

#: standalone/harddrake2:192 standalone/printerdrake:140
#, c-format
msgid "/_Quit"
msgstr "/_Kuitaat"

#: standalone/harddrake2:205
#, c-format
msgid "/_Fields description"
msgstr "/Deskrivadur an _tachennoù"

#: standalone/harddrake2:207
#, c-format
msgid "Harddrake help"
msgstr "Skoazell Harddrake"

#: standalone/harddrake2:216
#, c-format
msgid ""
"Once you've selected a device, you'll be able to see the device information "
"in fields displayed on the right frame (\"Information\")"
msgstr ""

#: standalone/harddrake2:222 standalone/printerdrake:164
#, c-format
msgid "/_Report Bug"
msgstr "/_Reiñ da c'houzout ur gudenn"

#: standalone/harddrake2:224 standalone/printerdrake:166
#, c-format
msgid "/_About..."
msgstr "/_A-brepoz ..."

#: standalone/harddrake2:225
#, c-format
msgid "About Harddrake"
msgstr "A-brepoz Harddrake"

#. -PO: Do not alter the <span ..> and </span> tags
#: standalone/harddrake2:227
#, c-format
msgid ""
"This is HardDrake, a %s hardware configuration tool.\n"
"<span foreground=\"royalblue3\">Version:</span> %s\n"
"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
"tvignaud@mandriva.com&gt;\n"
"\n"
msgstr ""

#: standalone/harddrake2:241
#, c-format
msgid "Harddrake2"
msgstr "Harddrake2"

#: standalone/harddrake2:255
#, c-format
msgid "Detected hardware"
msgstr "Periantel kavet"

#: standalone/harddrake2:260
#, c-format
msgid "Configure module"
msgstr "Kefluniañ ar mollad"

#: standalone/harddrake2:267
#, c-format
msgid "Run config tool"
msgstr ""

#: standalone/harddrake2:305 standalone/net_monitor:103
#: standalone/net_monitor:104 standalone/net_monitor:109
#, c-format
msgid "unknown"
msgstr "anavez"

#: standalone/harddrake2:306 standalone/printerdrake:298
#: standalone/printerdrake:336
#, c-format
msgid "Unknown"
msgstr "Anavez"

#: standalone/harddrake2:326
#, c-format
msgid "Misc"
msgstr "A bep seurt"

#: standalone/harddrake2:341
#, c-format
msgid ""
"Click on a device in the left tree in order to display its information here."
msgstr ""
"Klikit ouzh un drobarzhell e-barzh ar wezenn a-gleiz a-benn ma ziskouez "
"titouroù anezhañ amañ."

#: standalone/harddrake2:393
#, c-format
msgid "secondary"
msgstr "eil derez"

#: standalone/harddrake2:393
#, c-format
msgid "primary"
msgstr "kentañ"

#: standalone/harddrake2:397
#, c-format
msgid "burner"
msgstr "engraver"

#: standalone/harddrake2:397
#, c-format
msgid "DVD"
msgstr "DVD"

#: standalone/harddrake2:543 standalone/harddrake2:546
#, c-format
msgid "Upload the hardware list"
msgstr "Ezkargañ roll ar perientel"

#: standalone/harddrake2:548
#, c-format
msgid "Account:"
msgstr "Kont :"

#: standalone/harddrake2:549
#, c-format
msgid "Password:"
msgstr "Tremenger :"

#: standalone/harddrake2:550
#, c-format
msgid "Hostname:"
msgstr "Anv an ostiz :"

#: standalone/keyboarddrake:30
#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."

#: standalone/keyboarddrake:45
#, c-format
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""

#: standalone/localedrake:38
#, c-format
msgid "LocaleDrake"
msgstr "LocaleDrake"

#: standalone/localedrake:43
#, c-format
msgid "The change is done, but to be effective you must logout"
msgstr ""

#: standalone/logdrake:49
#, fuzzy, c-format
msgid "Mandriva Linux Tools Logs"
msgstr "Mandriva Linux Control Center"

#: standalone/logdrake:50
#, c-format
msgid "Logdrake"
msgstr "Logdrake"

#: standalone/logdrake:63
#, c-format
msgid "Show only for the selected day"
msgstr "Diskouez hepken an deiz dibabet"

#: standalone/logdrake:70
#, c-format
msgid "/File/_New"
msgstr "/Rest/_Nevez"

#: standalone/logdrake:70
#, c-format
msgid "<control>N"
msgstr "<control>N"

#: standalone/logdrake:71
#, c-format
msgid "/File/_Open"
msgstr "/Restr/_Digoriñ"

#: standalone/logdrake:71
#, c-format
msgid "<control>O"
msgstr "<control>D"

#: standalone/logdrake:72
#, c-format
msgid "/File/_Save"
msgstr "/Restr/_Enrollañ"

#: standalone/logdrake:72
#, c-format
msgid "<control>S"
msgstr "<control>G"

#: standalone/logdrake:73
#, c-format
msgid "/File/Save _As"
msgstr "/Restr/_Gwarediñ dindan"

#: standalone/logdrake:74
#, c-format
msgid "/File/-"
msgstr "/Restr/-"

#: standalone/logdrake:77
#, c-format
msgid "/Options/Test"
msgstr "/Dibarzhoù/Arnodenn"

#: standalone/logdrake:79
#, c-format
msgid "/Help/_About..."
msgstr "/Skoazell/_A-brepoz ..."

#: standalone/logdrake:108
#, c-format
msgid ""
"_:this is the auth.log log file\n"
"Authentication"
msgstr "Dilesadur"

#: standalone/logdrake:109
#, c-format
msgid ""
"_:this is the user.log log file\n"
"User"
msgstr "Arveriad"

#: standalone/logdrake:110
#, c-format
msgid ""
"_:this is the /var/log/messages log file\n"
"Messages"
msgstr "Kemenandoù"

#: standalone/logdrake:111
#, c-format
msgid ""
"_:this is the /var/log/syslog log file\n"
"Syslog"
msgstr "Reizhiad"

#: standalone/logdrake:115
#, c-format
msgid "search"
msgstr "klask"

#: standalone/logdrake:127
#, c-format
msgid "A tool to monitor your logs"
msgstr ""

#: standalone/logdrake:128 standalone/net_monitor:94
#, c-format
msgid "Settings"
msgstr "Dibarzhoù"

#: standalone/logdrake:133
#, fuzzy, c-format
msgid "Matching"
msgstr "O vrasjediñ"

#: standalone/logdrake:134
#, c-format
msgid "but not matching"
msgstr ""

#: standalone/logdrake:138
#, c-format
msgid "Choose file"
msgstr "Dibabit ur restr"

#: standalone/logdrake:147
#, c-format
msgid "Calendar"
msgstr "Deiziadur"

#: standalone/logdrake:157
#, c-format
msgid "Content of the file"
msgstr "Restrad"

#: standalone/logdrake:161 standalone/logdrake:399
#, c-format
msgid "Mail alert"
msgstr ""

#: standalone/logdrake:168
#, c-format
msgid "The alert wizard has failed unexpectedly:"
msgstr ""

#: standalone/logdrake:221
#, c-format
msgid "please wait, parsing file: %s"
msgstr "gortozit mar plij, emaon o lenn ar restr : %s"

#: standalone/logdrake:376
#, c-format
msgid "Apache World Wide Web Server"
msgstr ""

#: standalone/logdrake:377
#, fuzzy, c-format
msgid "Domain Name Resolver"
msgstr "Anv ar domani"

#: standalone/logdrake:378
#, c-format
msgid "Ftp Server"
msgstr "Servijer FTP"

#: standalone/logdrake:379
#, c-format
msgid "Postfix Mail Server"
msgstr "Servijer Mailh Postfix"

#: standalone/logdrake:380
#, c-format
msgid "Samba Server"
msgstr "Servijer Samba"

#: standalone/logdrake:382
#, c-format
msgid "Webmin Service"
msgstr "Servijer Webmin"

#: standalone/logdrake:383
#, c-format
msgid "Xinetd Service"
msgstr "Servijer xinetd"

#: standalone/logdrake:394
#, fuzzy, c-format
msgid "Configure the mail alert system"
msgstr "Kefluniañ ur rouedad"

#: standalone/logdrake:395
#, c-format
msgid "Stop the mail alert system"
msgstr ""

#: standalone/logdrake:402
#, fuzzy, c-format
msgid "Mail alert configuration"
msgstr "Kefluniañ ar proksioù"

#: standalone/logdrake:403
#, c-format
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""

#: standalone/logdrake:406
#, c-format
msgid "What do you want to do?"
msgstr "Petra e fell deoc'h da ober ?"

#: standalone/logdrake:413
#, c-format
msgid "Services settings"
msgstr "Dibarzhoù ar serjivioù"

#: standalone/logdrake:414
#, c-format
msgid ""
"You will receive an alert if one of the selected services is no longer "
"running"
msgstr ""

#: standalone/logdrake:421
#, c-format
msgid "Load setting"
msgstr "Kargañ an dibarzhoù"

#: standalone/logdrake:422
#, c-format
msgid "You will receive an alert if the load is higher than this value"
msgstr ""

#: standalone/logdrake:423
#, c-format
msgid ""
"_: load here is a noun, the load of the system\n"
"Load"
msgstr "Sammad"

#: standalone/logdrake:428
#, fuzzy, c-format
msgid "Alert configuration"
msgstr "Kefluniañ ar proksioù"

#: standalone/logdrake:429
#, c-format
msgid "Please enter your email address below "
msgstr "Roit ho chomlec'h postel mar plij"

#: standalone/logdrake:430
#, c-format
msgid "and enter the name (or the IP) of the SMTP server you wish to use"
msgstr ""

#: standalone/logdrake:449
#, c-format
msgid "The wizard successfully configured the mail alert."
msgstr ""

#: standalone/logdrake:455
#, c-format
msgid "The wizard successfully disabled the mail alert."
msgstr ""

#: standalone/logdrake:514
#, c-format
msgid "Save as.."
msgstr "Enrollañ e ..."

#: standalone/mousedrake:31
#, c-format
msgid "Please choose your mouse type."
msgstr "Dibabit seurt ho logodenn, mar plij."

#: standalone/mousedrake:44
#, c-format
msgid "Emulate third button?"
msgstr "Kendarvan an trede nozelenn ?"

#: standalone/mousedrake:61
#, c-format
msgid "Mouse test"
msgstr "Testañ al logodenn"

#: standalone/mousedrake:64
#, c-format
msgid "Please test your mouse:"
msgstr "Testit ho logodenn mar plij :"

#: standalone/net_applet:43
#, c-format
msgid "Network is up on interface %s"
msgstr "Bev eo ar rouedad war an etrefas %s"

#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
#: standalone/net_applet:51
#, c-format
msgid "Network is down on interface %s. Click on \"Configure Network\""
msgstr ""
"Marv eo ar rouedad war an etrefas %s. Klikit ouzh « Kefluniañ ar Rouedad »"

#: standalone/net_applet:66 standalone/net_monitor:469
#, c-format
msgid "Connect %s"
msgstr "Kevreañ %s"

#: standalone/net_applet:67 standalone/net_monitor:469
#, c-format
msgid "Disconnect %s"
msgstr "Digevreañ %s"

#: standalone/net_applet:68
#, fuzzy, c-format
msgid "Monitor Network"
msgstr "Adaozañ adalek ar restr"

#: standalone/net_applet:69
#, c-format
msgid "Manage wireless networks"
msgstr ""

#: standalone/net_applet:70
#, c-format
msgid "Configure Network"
msgstr "Kefluniañ ar Rouedad"

#: standalone/net_applet:72
#, c-format
msgid "Watched interface"
msgstr "Etrefasoù sellet"

#: standalone/net_applet:81
#, c-format
msgid "Profiles"
msgstr "Profiloù"

#: standalone/net_applet:90
#, c-format
msgid "Get Online Help"
msgstr "Skoazell enlinenn"

#: standalone/net_applet:213
#, fuzzy, c-format
msgid "Interactive intrusion detection"
msgstr "Dinoiñ dre ardivink moullerezioù"

#: standalone/net_applet:217
#, c-format
msgid "Always launch on startup"
msgstr ""

#: standalone/net_applet:270
#, c-format
msgid "A port scanning attack has been attempted by %s."
msgstr ""

#: standalone/net_applet:271
#, c-format
msgid "The %s service has been attacked by %s."
msgstr ""

#: standalone/net_applet:272
#, c-format
msgid "A password cracking attack has been attempted by %s."
msgstr ""

#: standalone/net_applet:280
#, fuzzy, c-format
msgid "Active Firewall: intrusion detected"
msgstr "Kefluniadur kavet ar moger tan :"

#: standalone/net_applet:291
#, fuzzy, c-format
msgid "Do you want to blacklist the attacker?"
msgstr "Mennout a rit implijout an arc'hwel-mañ ?"

#: standalone/net_applet:305
#, c-format
msgid "Always blacklist (do not ask again)"
msgstr ""

#: standalone/net_applet:308
#, fuzzy, c-format
msgid "Attack details"
msgstr "Munudoù ebet"

#: standalone/net_applet:312
#, c-format
msgid "Attack time: %s"
msgstr ""

#: standalone/net_applet:313
#, c-format
msgid "Network interface: %s"
msgstr "Etrefas rouedad: %s"

#: standalone/net_applet:314
#, fuzzy, c-format
msgid "Attack type: %s"
msgstr "seurt : %s"

#: standalone/net_applet:315
#, c-format
msgid "Protocol: %s"
msgstr "Komenad: %s"

#: standalone/net_applet:316
#, fuzzy, c-format
msgid "Attacker IP address: %s"
msgstr "Chomlec'h IP ar dreuzell"

#: standalone/net_applet:317
#, fuzzy, c-format
msgid "Attacker hostname: %s"
msgstr "Anv ostiz ar proksi :"

#: standalone/net_applet:318
#, fuzzy, c-format
msgid "Service attacked: %s"
msgstr "Merour ar servijoù"

#: standalone/net_applet:319
#, fuzzy, c-format
msgid "Port attacked: %s"
msgstr "Porzh : %s"

#: standalone/net_applet:320
#, c-format
msgid "Type of ICMP attack: %s"
msgstr ""

#: standalone/net_monitor:58 standalone/net_monitor:63
#, fuzzy, c-format
msgid "Network Monitoring"
msgstr "Kefluniadur ar rouedad"

#: standalone/net_monitor:99
#, c-format
msgid "Global statistics"
msgstr ""

#: standalone/net_monitor:102
#, c-format
msgid "Instantaneous"
msgstr ""

#: standalone/net_monitor:102
#, c-format
msgid "Average"
msgstr "Etread"

#: standalone/net_monitor:103
#, c-format
msgid ""
"Sending\n"
"speed:"
msgstr "Tizh kas :"

#: standalone/net_monitor:104
#, c-format
msgid ""
"Receiving\n"
"speed:"
msgstr "Tizh tigas :"

#: standalone/net_monitor:108
#, c-format
msgid ""
"Connection\n"
"time: "
msgstr ""
"Amzer ar\n"
"gevreadenn :"

#: standalone/net_monitor:115
#, c-format
msgid "Use same scale for received and transmitted"
msgstr ""

#: standalone/net_monitor:134
#, c-format
msgid "Wait please, testing your connection..."
msgstr "Gortoz mar plij, o arnodiñ ho gevreadenn ..."

#: standalone/net_monitor:183 standalone/net_monitor:196
#, c-format
msgid "Disconnecting from Internet "
msgstr "Digevreañ diwar an Internet "

#: standalone/net_monitor:183 standalone/net_monitor:196
#, c-format
msgid "Connecting to Internet "
msgstr "Kevreañ diwar an Internet "

#: standalone/net_monitor:227
#, c-format
msgid "Disconnection from Internet failed."
msgstr "Sac'het eo digevreañ diwar an Internet"

#: standalone/net_monitor:228
#, c-format
msgid "Disconnection from Internet complete."
msgstr "Echu eo digevreañ diwar an Internet"

#: standalone/net_monitor:230
#, c-format
msgid "Connection complete."
msgstr "Echu eo ar gevreadenn"

#: standalone/net_monitor:231
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandriva Linux Control Center."
msgstr ""

#: standalone/net_monitor:336
#, c-format
msgid "Color configuration"
msgstr "Kefluniañ ar Livioù"

#: standalone/net_monitor:384 standalone/net_monitor:404
#, c-format
msgid "sent: "
msgstr "kaset : "

#: standalone/net_monitor:391 standalone/net_monitor:408
#, c-format
msgid "received: "
msgstr "enkarget : "

#: standalone/net_monitor:398
#, c-format
msgid "average"
msgstr "well-wazh"

#: standalone/net_monitor:401
#, fuzzy, c-format
msgid "Local measure"
msgstr "Restroù lec'hel"

#: standalone/net_monitor:462
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""

#: standalone/net_monitor:473
#, c-format
msgid "No internet connection configured"
msgstr "Kevreadenn Internet ebet"

#: standalone/printerdrake:68
#, c-format
msgid "Reading data of installed printers..."
msgstr "O lenn roadoù diwar-benn ar moullerezioù staliet ..."

#: standalone/printerdrake:116
#, c-format
msgid "%s Printer Management Tool"
msgstr "Ostihl melestradur ar moullerezioù %s"

#: standalone/printerdrake:130 standalone/printerdrake:131
#: standalone/printerdrake:132 standalone/printerdrake:133
#: standalone/printerdrake:141 standalone/printerdrake:142
#: standalone/printerdrake:146
#, c-format
msgid "/_Actions"
msgstr "/_Oberoù"

#: standalone/printerdrake:130 standalone/printerdrake:142
#, c-format
msgid "/_Add Printer"
msgstr "/_Ouzhpennañ ur voullerez"

#: standalone/printerdrake:131
#, c-format
msgid "/Set as _Default"
msgstr "/Lakaat dre _ziouer"

#: standalone/printerdrake:132
#, c-format
msgid "/_Edit"
msgstr "/_Aozañ"

#: standalone/printerdrake:133
#, c-format
msgid "/_Delete"
msgstr "/_Dilemel"

#: standalone/printerdrake:134
#, c-format
msgid "/_Expert mode"
msgstr "/Mod _mailh"

#: standalone/printerdrake:139
#, c-format
msgid "/_Refresh"
msgstr "/_Adtresañ"

#: standalone/printerdrake:146
#, c-format
msgid "/_Configure CUPS"
msgstr "/Kefluniañ _CUPS"

#: standalone/printerdrake:181
#, c-format
msgid "Search:"
msgstr "Klask :"

#: standalone/printerdrake:184
#, c-format
msgid "Apply filter"
msgstr "Arloañ ar sil"

#: standalone/printerdrake:211 standalone/printerdrake:218
#, c-format
msgid "Def."
msgstr ""

#: standalone/printerdrake:211 standalone/printerdrake:218
#, c-format
msgid "Printer Name"
msgstr "Anv ar Voulerez"

#: standalone/printerdrake:211
#, c-format
msgid "Connection Type"
msgstr "Seurt ar gevreadenn"

#: standalone/printerdrake:218
#, c-format
msgid "Server Name"
msgstr "Anv ar servijer"

#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: standalone/printerdrake:226
#, c-format
msgid "Add Printer"
msgstr "Ouzhpennañ ur voullerez"

#: standalone/printerdrake:226
#, c-format
msgid "Add a new printer to the system"
msgstr "Ouzpennañ ur voullerez nevez war ar reizhiad"

#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: standalone/printerdrake:229
#, fuzzy, c-format
msgid "Set as default"
msgstr "dre ziouer"

#: standalone/printerdrake:229
#, fuzzy, c-format
msgid "Set selected printer as the default printer"
msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"

#: standalone/printerdrake:232
#, c-format
msgid "Edit selected printer"
msgstr "Kemmañ ar voulerez diuzet"

#: standalone/printerdrake:235
#, c-format
msgid "Delete selected printer"
msgstr "Lemel ar voulerez diuzet"

#: standalone/printerdrake:238
#, c-format
msgid "Refresh the list"
msgstr "Adtresañ ar roll"

#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: standalone/printerdrake:241
#, c-format
msgid "Configure CUPS"
msgstr "Kefluniañ CUPS"

#: standalone/printerdrake:241
#, c-format
msgid "Configure CUPS printing system"
msgstr "Kefluniañ ar reizhiad moullañ CUPS"

#: standalone/printerdrake:299 standalone/printerdrake:337
#, c-format
msgid "Enabled"
msgstr "Bev"

#: standalone/printerdrake:300 standalone/printerdrake:338
#, c-format
msgid "Disabled"
msgstr "Marv"

#: standalone/printerdrake:560
#, c-format
msgid "Authors: "
msgstr "Obererour : "

#. -PO: here %s is the version number
#: standalone/printerdrake:570
#, c-format
msgid "Printer Management %s"
msgstr "Melestradur ar moullerezioù %s"

#: standalone/scannerdrake:51
#, fuzzy, c-format
msgid ""
"SANE packages need to be installed to use scanners.\n"
"\n"
"Do you want to install the SANE packages?"
msgstr ""
"Bremanaet e tle bezañ ar pabak-mañ\n"
"Ha sur oc'h e mennit e ziuzañ ?"

#: standalone/scannerdrake:55
#, c-format
msgid "Aborting Scannerdrake."
msgstr "O terriñ Scannerdrake"

#: standalone/scannerdrake:60
#, c-format
msgid ""
"Could not install the packages needed to set up a scanner with Scannerdrake."
msgstr ""

#: standalone/scannerdrake:61
#, c-format
msgid "Scannerdrake will not be started now."
msgstr ""

#: standalone/scannerdrake:67 standalone/scannerdrake:491
#, c-format
msgid "Searching for configured scanners..."
msgstr "O klask an eiltreseroù kefluniet ..."

#: standalone/scannerdrake:71 standalone/scannerdrake:495
#, c-format
msgid "Searching for new scanners..."
msgstr "O klask eiltreseroù nevez ..."

#: standalone/scannerdrake:79 standalone/scannerdrake:517
#, c-format
msgid "Re-generating list of configured scanners..."
msgstr ""

#: standalone/scannerdrake:101
#, c-format
msgid "The %s is not supported by this version of %s."
msgstr ""

#: standalone/scannerdrake:104
#, fuzzy, c-format
msgid "%s found on %s, configure it automatically?"
msgstr "Mennout a rit kefluniañ ur voullerez ?"

#: standalone/scannerdrake:116
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
msgstr ""

#: standalone/scannerdrake:131
#, fuzzy, c-format
msgid "Select a scanner model"
msgstr "Dibabit ur gobari c'hrafek"

#: standalone/scannerdrake:132
#, c-format
msgid " ("
msgstr " ("

#: standalone/scannerdrake:133
#, c-format
msgid "Detected model: %s"
msgstr "Doare kavet : %s"

#: standalone/scannerdrake:136
#, c-format
msgid "Port: %s"
msgstr "Porzh : %s"

#: standalone/scannerdrake:138 standalone/scannerdrake:141
#, c-format
msgid " (UNSUPPORTED)"
msgstr " (N'EO KET SKORAET)"

#: standalone/scannerdrake:144
#, c-format
msgid "The %s is not supported under Linux."
msgstr "N'eo ket skoraet gant Linux %s."

#: standalone/scannerdrake:171 standalone/scannerdrake:185
#, c-format
msgid "Do not install firmware file"
msgstr "Ne staliit ket restr ar meriant"

#: standalone/scannerdrake:175 standalone/scannerdrake:227
#, c-format
msgid ""
"It is possible that your %s needs its firmware to be uploaded everytime when "
"it is turned on."
msgstr ""

#: standalone/scannerdrake:176 standalone/scannerdrake:228
#, c-format
msgid "If this is the case, you can make this be done automatically."
msgstr ""

#: standalone/scannerdrake:177 standalone/scannerdrake:231
#, c-format
msgid ""
"To do so, you need to supply the firmware file for your scanner so that it "
"can be installed."
msgstr ""

#: standalone/scannerdrake:178 standalone/scannerdrake:232
#, c-format
msgid ""
"You find the file on the CD or floppy coming with the scanner, on the "
"manufacturer's home page, or on your Windows partition."
msgstr ""

#: standalone/scannerdrake:180 standalone/scannerdrake:239
#, c-format
msgid "Install firmware file from"
msgstr "Staliañ restr ar meriant eus"

#: standalone/scannerdrake:200
#, c-format
msgid "Select firmware file"
msgstr "Dibabit restr ar meriant"

#: standalone/scannerdrake:203 standalone/scannerdrake:262
#, c-format
msgid "The firmware file %s does not exist or is unreadable!"
msgstr ""

#: standalone/scannerdrake:226
#, c-format
msgid ""
"It is possible that your scanners need their firmware to be uploaded "
"everytime when they are turned on."
msgstr ""

#: standalone/scannerdrake:230
#, c-format
msgid ""
"To do so, you need to supply the firmware files for your scanners so that it "
"can be installed."
msgstr ""

#: standalone/scannerdrake:233
#, c-format
msgid ""
"If you have already installed your scanner's firmware you can update the "
"firmware here by supplying the new firmware file."
msgstr ""

#: standalone/scannerdrake:235
#, c-format
msgid "Install firmware for the"
msgstr "Staliañ restroù ar meriant evit"

#: standalone/scannerdrake:258
#, c-format
msgid "Select firmware file for the %s"
msgstr "Dibabit restr ar meriant evit %s"

#: standalone/scannerdrake:276
#, c-format
msgid "Could not install the firmware file for the %s!"
msgstr "Ne m'eus ket staliañ restroù ar meriant evit %s !"

#: standalone/scannerdrake:289
#, c-format
msgid "The firmware file for your %s was successfully installed."
msgstr ""

#: standalone/scannerdrake:299
#, c-format
msgid "The %s is unsupported"
msgstr "N'eo ket skoraet %s"

#: standalone/scannerdrake:304
#, c-format
msgid ""
"The %s must be configured by printerdrake.\n"
"You can launch printerdrake from the %s Control Center in Hardware section."
msgstr ""

#: standalone/scannerdrake:308 standalone/scannerdrake:315
#: standalone/scannerdrake:345
#, c-format
msgid "Auto-detect available ports"
msgstr ""

#: standalone/scannerdrake:310 standalone/scannerdrake:356
#, c-format
msgid "Please select the device where your %s is attached"
msgstr ""

#: standalone/scannerdrake:311
#, c-format
msgid "(Note: Parallel ports cannot be auto-detected)"
msgstr ""

#: standalone/scannerdrake:313 standalone/scannerdrake:358
#, c-format
msgid "choose device"
msgstr "dibabit ur drobarzhell"

#: standalone/scannerdrake:347
#, c-format
msgid "Searching for scanners..."
msgstr "O klask eiltreseroù ..."

#: standalone/scannerdrake:383
#, c-format
msgid "Setting up kernel modules..."
msgstr "O lakaat molladoù ar c'halon ..."

#: standalone/scannerdrake:390 standalone/scannerdrake:397
#, c-format
msgid "Attention!"
msgstr "Ho evezh !"

#: standalone/scannerdrake:391
#, c-format
msgid ""
"Your %s cannot be configured fully automatically.\n"
"\n"
"Manual adjustments are required. Please edit the configuration file /etc/"
"sane.d/%s.conf. "
msgstr ""

#: standalone/scannerdrake:392 standalone/scannerdrake:401
#, c-format
msgid ""
"More info in the driver's manual page. Run the command \"man sane-%s\" to "
"read it."
msgstr ""

#: standalone/scannerdrake:394 standalone/scannerdrake:403
#, c-format
msgid ""
"After that you may scan documents using \"XSane\" or \"Kooka\" from "
"Multimedia/Graphics in the applications menu."
msgstr ""

#: standalone/scannerdrake:398
#, c-format
msgid ""
"Your %s has been configured, but it is possible that additional manual "
"adjustments are needed to get it to work. "
msgstr ""

#: standalone/scannerdrake:399
#, c-format
msgid ""
"If it does not appear in the list of configured scanners in the main window "
"of Scannerdrake or if it does not work correctly, "
msgstr ""

#: standalone/scannerdrake:400
#, c-format
msgid "edit the configuration file /etc/sane.d/%s.conf. "
msgstr ""

#: standalone/scannerdrake:406
#, c-format
msgid ""
"Your %s has been configured.\n"
"You may now scan documents using \"XSane\" or \"Kooka\" from Multimedia/"
"Graphics in the applications menu."
msgstr ""

#: standalone/scannerdrake:431
#, fuzzy, c-format
msgid ""
"The following scanners\n"
"\n"
"%s\n"
"are available on your system.\n"
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"

#: standalone/scannerdrake:432
#, fuzzy, c-format
msgid ""
"The following scanner\n"
"\n"
"%s\n"
"is available on your system.\n"
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"

#: standalone/scannerdrake:435 standalone/scannerdrake:438
#, c-format
msgid "There are no scanners found which are available on your system.\n"
msgstr ""

#: standalone/scannerdrake:452
#, c-format
msgid "Search for new scanners"
msgstr "Klask an eiltreserien nevez"

#: standalone/scannerdrake:458
#, c-format
msgid "Add a scanner manually"
msgstr "Ouzhpennañ un eiltreser gant an dorn"

#: standalone/scannerdrake:465
#, c-format
msgid "Install/Update firmware files"
msgstr "Staliañ/Bremañaat ar restroù meriant"

#: standalone/scannerdrake:471
#, c-format
msgid "Scanner sharing"
msgstr ""

#: standalone/scannerdrake:530 standalone/scannerdrake:695
#, c-format
msgid "All remote machines"
msgstr "Reizhiadoù a-bell holl"

#: standalone/scannerdrake:542 standalone/scannerdrake:845
#, c-format
msgid "This machine"
msgstr "Ar reizhiad-mañ"

#: standalone/scannerdrake:582
#, c-format
msgid ""
"Here you can choose whether the scanners connected to this machine should be "
"accessible by remote machines and by which remote machines."
msgstr ""

#: standalone/scannerdrake:583
#, c-format
msgid ""
"You can also decide here whether scanners on remote machines should be made "
"available on this machine."
msgstr ""

#: standalone/scannerdrake:586
#, c-format
msgid "The scanners on this machine are available to other computers"
msgstr ""

#: standalone/scannerdrake:588
#, c-format
msgid "Scanner sharing to hosts: "
msgstr ""

#: standalone/scannerdrake:602
#, c-format
msgid "Use scanners on remote computers"
msgstr ""

#: standalone/scannerdrake:605
#, c-format
msgid "Use the scanners on hosts: "
msgstr ""

#: standalone/scannerdrake:632 standalone/scannerdrake:704
#: standalone/scannerdrake:854
#, c-format
msgid "Sharing of local scanners"
msgstr ""

#: standalone/scannerdrake:633
#, c-format
msgid ""
"These are the machines on which the locally connected scanner(s) should be "
"available:"
msgstr ""

#: standalone/scannerdrake:644 standalone/scannerdrake:794
#, c-format
msgid "Add host"
msgstr "Ouzhpennañ un ostiz"

#: standalone/scannerdrake:650 standalone/scannerdrake:800
#, c-format
msgid "Edit selected host"
msgstr "Kemmañ an ostiz diuzet"

#: standalone/scannerdrake:659 standalone/scannerdrake:809
#, c-format
msgid "Remove selected host"
msgstr "Lemel ar ostiz diuzet"

#: standalone/scannerdrake:683 standalone/scannerdrake:691
#: standalone/scannerdrake:696 standalone/scannerdrake:742
#: standalone/scannerdrake:833 standalone/scannerdrake:841
#: standalone/scannerdrake:846 standalone/scannerdrake:892
#, c-format
msgid "Name/IP address of host:"
msgstr "Chomlec'h IP/Anv ar oztiz :"

#: standalone/scannerdrake:705 standalone/scannerdrake:855
#, c-format
msgid "Choose the host on which the local scanners should be made available:"
msgstr ""

#: standalone/scannerdrake:716 standalone/scannerdrake:866
#, c-format
msgid "You must enter a host name or an IP address.\n"
msgstr "Ret eo deoc'h reiñ an anv-ostiz pe ur chomlec'h IP.\n"

#: standalone/scannerdrake:727 standalone/scannerdrake:877
#, c-format
msgid "This host is already in the list, it cannot be added again.\n"
msgstr ""

#: standalone/scannerdrake:782
#, fuzzy, c-format
msgid "Usage of remote scanners"
msgstr "Implij da saveteiñ"

#: standalone/scannerdrake:783
#, c-format
msgid "These are the machines from which the scanners should be used:"
msgstr ""

#: standalone/scannerdrake:940
#, fuzzy, c-format
msgid ""
"saned needs to be installed to share the local scanner(s).\n"
"\n"
"Do you want to install the saned package?"
msgstr ""
"Bremanaet e tle bezañ ar pabak-mañ\n"
"Ha sur oc'h e mennit e ziuzañ ?"

#: standalone/scannerdrake:944 standalone/scannerdrake:948
#, c-format
msgid "Your scanner(s) will not be available on the network."
msgstr ""

#: standalone/service_harddrake:105
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""

#: standalone/service_harddrake:106
#, c-format
msgid "- %s was removed\n"
msgstr "- Dilemet oa %s\n"

#: standalone/service_harddrake:109
#, c-format
msgid "Some devices were added: %s\n"
msgstr "Ouzhpennet oa an trobarzhelloù zo : %s\n"

#: standalone/service_harddrake:110
#, c-format
msgid "- %s was added\n"
msgstr "- Ouzhpennet oa %s\n"

#: standalone/service_harddrake:207
#, c-format
msgid "Hardware probing in progress"
msgstr "Emaon o klask ar perientel"

#: standalone/service_harddrake_confirm:7
#, c-format
msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
msgstr ""

#: standalone/service_harddrake_confirm:8
#, c-format
msgid "Do you want to run the appropriate config tool?"
msgstr "Mennout a rit lañsañ an ostilh dereat ?"

#: steps.pm:14
#, c-format
msgid "Language"
msgstr "Yezh"

#: steps.pm:15
#, c-format
msgid "License"
msgstr "Aotre"

#: steps.pm:16
#, c-format
msgid "Configure mouse"
msgstr "Kefluniañ al logodenn"

#: steps.pm:17
#, c-format
msgid "Hard drive detection"
msgstr "Dinoiñ ar bladenn galet"

#: steps.pm:18
#, c-format
msgid "Select installation class"
msgstr "Dibabit renkad ar staliadur"

#: steps.pm:19
#, c-format
msgid "Choose your keyboard"
msgstr "Dibabit ho stokellaoueg"

#: steps.pm:21
#, c-format
msgid "Partitioning"
msgstr "O parzhañ"

#: steps.pm:22
#, c-format
msgid "Format partitions"
msgstr "Furmadiñ parzhadurioù"

#: steps.pm:23
#, c-format
msgid "Choose packages to install"
msgstr "Dibabit pakadoù da staliañ"

#: steps.pm:24
#, c-format
msgid "Install system"
msgstr "Staliañ ar reizhiad"

#: steps.pm:25
#, c-format
msgid "Administrator password"
msgstr "Tremenger ar merour"

#: steps.pm:26
#, c-format
msgid "Add a user"
msgstr "Ouzhpennañ un arveriad"

#: steps.pm:27
#, c-format
msgid "Configure networking"
msgstr "Kefluniañ ar rouedad"

#: steps.pm:28
#, c-format
msgid "Install bootloader"
msgstr "Staliañ ar c'harger loc'hañ"

#: steps.pm:29
#, c-format
msgid "Configure X"
msgstr "Kefluniañ X"

#: steps.pm:31
#, c-format
msgid "Configure services"
msgstr "Kefluniañ servijoù"

#: steps.pm:32
#, fuzzy, c-format
msgid "Install updates"
msgstr "Staliañ ar reizhiad"

#: steps.pm:33
#, c-format
msgid "Exit install"
msgstr "Dilezel ar staliadur"

#: ugtk2.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Ha reizh eo ?"

#: ugtk2.pm:968
#, c-format
msgid "No file chosen"
msgstr "N'eus restr dibabet ebet"

#: ugtk2.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""

#: ugtk2.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr ""

#: ugtk2.pm:974
#, c-format
msgid "No such directory"
msgstr "Hevelep renkell ebet"

#: ugtk2.pm:974
#, c-format
msgid "No such file"
msgstr "Hevelep restr ebet"

#: ugtk2.pm:1055
#, c-format
msgid "Expand Tree"
msgstr "Astenn ar wezenn"

#: ugtk2.pm:1056
#, c-format
msgid "Collapse Tree"
msgstr "Plegañ ar wezenn"

#: ugtk2.pm:1057
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Gwintañ etre kompez ha rummet dre strollad"

#: wizards.pm:95
#, c-format
msgid ""
"%s is not installed\n"
"Click \"Next\" to install or \"Cancel\" to quit"
msgstr ""
"N'eo ket staliadet %s\n"
"Klikit ouzh « A heul » evit staliañ pe ouzh « Nullañ » evit guitaat"

#: wizards.pm:99
#, c-format
msgid "Installation failed"
msgstr " Sac'het eo ar staliadur"

#~ msgid "use PPPoE"
#~ msgstr "implijit PPPoE"

#~ msgid "use PPTP"
#~ msgstr "implijit PPTP"

#~ msgid "use DHCP"
#~ msgstr "implijit DHCP"

#~ msgid "Alcatel Speedtouch USB"
#~ msgstr "Alcatel Speedtouch USB"

#~ msgid " - detected"
#~ msgstr "- kavet"

#~ msgid "Sagem (using PPPoA) USB"
#~ msgstr "Sagem (gant PPPoA) USB"

#~ msgid "Sagem (using DHCP) USB"
#~ msgstr "Sagem (gant DHCP) USB"

#~ msgid "PXE Server Configuration"
#~ msgstr "Kefluniadur ar Servijer PXE"

#~ msgid "Installation Server Configuration"
#~ msgstr "Kefluniadur ar servijer staliadur"

#~ msgid "Choose the network interface"
#~ msgstr "Dibabit an etrefas rouedad"

#~ msgid ""
#~ "Please choose which network interface will be used for the dhcp server."
#~ msgstr ""
#~ "Dibabit an etrefas rouedad m'eo implijet ar servijer dhcp outañ, mar plij."

#~ msgid "Interface %s (on network %s)"
#~ msgstr "Etrefas %s (war rouedad %s)"

#~ msgid "The DHCP start ip"
#~ msgstr "An IP DHCP kentañ"

#~ msgid "The DHCP end ip"
#~ msgstr "An IP DHCP diwezhañ"

#~ msgid "Installation image directory"
#~ msgstr "Renkell ar skeudennoù staliadur"

#~ msgid "No image found"
#~ msgstr "N'eo ket kavet ar skeudenn"

#~ msgid "Location of auto_install.cfg file"
#~ msgstr "Lec'hiadur ar restr auto_install.cfg"

#~ msgid "Do it later"
#~ msgstr "Ober a rit ur wech all"

#~ msgid "Enabling servers..."
#~ msgstr "Emaon o bevaat ar servijerien ..."

#~ msgid "Interface %s (using module %s)"
#~ msgstr "Etrefas %s (gant ar mollad %s)"

#~ msgid "Interface %s"
#~ msgstr "C'hetal %s"

#~ msgid "Network interface"
#~ msgstr "Etrefas rouedad"

#~ msgid "Network interface already configured"
#~ msgstr "Kefluniet eo an etrefas rouedad c'hoazh"

#~ msgid "Show current interface configuration"
#~ msgstr "Diskouez kefluniadur red an etrefas"

#~ msgid "Current interface configuration"
#~ msgstr "Kefluniadur red an etrefas"

#~ msgid "(This) DHCP Server IP"
#~ msgstr "IP ar servijer DHCP(-se)"

#~ msgid "Re-configure interface and DHCP server"
#~ msgstr "Adgefluniañ an etrefas hag ar servijer DHCP"

#~ msgid "hd"
#~ msgstr "hd"

#~ msgid "tape"
#~ msgstr "bandenn"

#~ msgid "\t-Network by webdav.\n"
#~ msgstr "\t-Rouedad gant webdav.\n"

#~ msgid "Use graphical boot"
#~ msgstr "Loc'hañ gant grafikoù"

#~ msgid "choose image file"
#~ msgstr "Dibabit ur restr skeudenn"

#~ msgid "Browse"
#~ msgstr "Ergerzhet"

#~ msgid "Configure bootsplash picture"
#~ msgstr "Kefluniañ ho skeudenn loc'hañ"

#~ msgid "Preview"
#~ msgstr "Rakgwel"

#~ msgid "Choose color"
#~ msgstr "Dibabit ur liv"

#~ msgid "Notice"
#~ msgstr "Kemenn"

#~ msgid "You must choose an image file first!"
#~ msgstr "Ret eo deoc'h dibab restr ur skeudenn da gentañ !"

#~ msgid "Generating preview..."
#~ msgstr "Emaon o krouiñ ar rakgwel ..."

#~ msgid "%s BootSplash (%s) preview"
#~ msgstr "Rakgwel BootSplash %s (%s)"

#~ msgid "No floppy drive available"
#~ msgstr "Lenner pladennig hegerz ebet"

#, fuzzy
#~ msgid "Please insert the Update Modules floppy in drive %s"
#~ msgstr "Lakait ur bladennig gwerc'h el lenner %s"

#~ msgid "No network card"
#~ msgstr "Kartenn rouedad ebet"

#~ msgid ""
#~ "The following protocols can be used to configure an ethernet connection. "
#~ "Please choose the one you want to use"
#~ msgstr ""
#~ "Ar c'homennadoù-mañ a c'hell bezañ implijet da gefluniañ ur gevreadenn "
#~ "rouedad.\n"
#~ "Dibabit unan e fell deoc'h implij mar plij"

#~ msgid "Use already installed driver (%s)"
#~ msgstr "Implijit ur sturier a zo staliet c'hoazh (%s)"

#~ msgid "You've not selected any font"
#~ msgstr "N'oc'h eus ket dibabet un nodrezh bennak"

#~ msgid "No browser available! Please install one"
#~ msgstr "N'eus furcher da gaout ebet ! Stalit unan mar plij"

#~ msgid ""
#~ "Insert a floppy in drive\n"
#~ "All data on this floppy will be lost"
#~ msgstr ""
#~ "Lakait ur bladennig el lenner\n"
#~ "Kollet e vo holl roadoù ar bladennig-se"

#~ msgid "Insert a FAT formatted floppy in drive %s"
#~ msgstr "Lakait ur bladennig FAT el lenner %s"

#~ msgid "This floppy is not FAT formatted"
#~ msgstr "N'eo ket ur bladennig FAT"

#~ msgid "Load/Save on floppy"
#~ msgstr "Kargañ eus/Enrollañ war ar bladennig"

#~ msgid "Load from floppy"
#~ msgstr "Assevel adalek ar bladennig"

#~ msgid "Save on floppy"
#~ msgstr "Enrollañ war bladennig"

#~ msgid "Package selection"
#~ msgstr "Diuzadenn pakadoù"

#~ msgid "Loading from floppy"
#~ msgstr "Assevelañ adalek ar bladennig"

#~ msgid "Insert a floppy containing package selection"
#~ msgstr "Lakait ur bladennig gant dibab ar pakadoù"

#~ msgid "Can not find hdlist file on this mirror"
#~ msgstr "N'hellan ket kavout ar restr hdlist war ar melezour-se"

#~ msgid "Summary: "
#~ msgstr "Diverrañ :"

#~ msgid "YOUR TEXT HERE"
#~ msgstr "Ho'ch testenn amañ"

#~ msgid "Loading printer configuration... Please wait"
#~ msgstr "O kargañ ar kefluniadur ar moullerezioù ... Gortozit mar plij"

#~ msgid "Root password"
#~ msgstr "Termeniñ tremenger root"

#~ msgid "Which disk do you want to move it to?"
#~ msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"

#~ msgid "Sector"
#~ msgstr "Rann"

#~ msgid "Which sector do you want to move it to?"
#~ msgstr "Da beseurt rann e mennit dilec'hiañ ?"

#~ msgid "Moving partition..."
#~ msgstr "O tilec'hiañ ur parzhadur ..."

#~ msgid "Error opening %s for writing: %s"
#~ msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"

#~ msgid "Server Information:"
#~ msgstr "Titouroù war ar servijer :"

#~ msgid "Use SSL connection"
#~ msgstr "Implifit ur gevreadenn SSL"

#~ msgid "Czech (QWERTZ)"
#~ msgstr "Tchek (QWERTZ)"

#~ msgid "German"
#~ msgstr "Alaman"

#~ msgid "Dvorak"
#~ msgstr "Dvorak"

#~ msgid "Spanish"
#~ msgstr "Spagnol"

#~ msgid "Finnish"
#~ msgstr "Finnek"

#~ msgid "French"
#~ msgstr "Gall"

#~ msgid "Norwegian"
#~ msgstr "Norvegek"

#~ msgid "Polish"
#~ msgstr "Polonek"

#~ msgid "Russian"
#~ msgstr "Rusiek"

#~ msgid "Swedish"
#~ msgstr "Svedek"

#~ msgid "Albanian"
#~ msgstr "Albaniek"

#~ msgid "Armenian (old)"
#~ msgstr "Armeniek (kozh)"

#~ msgid "Armenian (typewriter)"
#~ msgstr "Armeniek (skriverez)"

#~ msgid "Armenian (phonetic)"
#~ msgstr "Armeniek (soniadel)"

#~ msgid "Arabic"
#~ msgstr "Arabek"

#~ msgid "Azerbaidjani (latin)"
#~ msgstr "Azerbaidjanek (latin)"

#~ msgid "Belgian"
#~ msgstr "Belgian"

#~ msgid "Bengali"
#~ msgstr "Bengal"

#~ msgid "Bulgarian (phonetic)"
#~ msgstr "Bulgariek (soniadel)"

#~ msgid "Bulgarian (BDS)"
#~ msgstr "Bulgarek (BDS)"

#~ msgid "Brazilian (ABNT-2)"
#~ msgstr "Brasilek (ABNT-2)"

#~ msgid "Bosnian"
#~ msgstr "Bosnieg"

#~ msgid "Swiss (German layout)"
#~ msgstr "Suis (reizhadur alaman)"

#~ msgid "Swiss (French layout)"
#~ msgstr "Suis (reizhadur gall)"

#~ msgid "Czech (QWERTY)"
#~ msgstr "Tchek (QWERTY)"

#~ msgid "German (no dead keys)"
#~ msgstr "Alaman (stokell marv ebet)"

#~ msgid "Danish"
#~ msgstr "Danek"

#~ msgid "Dvorak (US)"
#~ msgstr "Dvorak (US)"

#~ msgid "Dvorak (Norwegian)"
#~ msgstr "Dvorak (Norvegek)"

#~ msgid "Dvorak (Swedish)"
#~ msgstr "Dvorak (Svedek)"

#~ msgid "Estonian"
#~ msgstr "Estoniek"

#~ msgid "Georgian (\"Russian\" layout)"
#~ msgstr "Jorjiek (reizhadur \"Rusiek\")"

#~ msgid "Georgian (\"Latin\" layout)"
#~ msgstr "Jorjiek (reizhadur \"Latin\")"

#~ msgid "Greek"
#~ msgstr "Gresianek"

#~ msgid "Greek (polytonic)"
#~ msgstr "Gresianek"

#~ msgid "Hungarian"
#~ msgstr "Hungareg"

#~ msgid "Croatian"
#~ msgstr "Kroatek"

#~ msgid "Irish"
#~ msgstr "Iwerzhoneg"

#~ msgid "Israeli"
#~ msgstr "Israelian"

#~ msgid "Israeli (Phonetic)"
#~ msgstr "Israelian (soniadel)"

#~ msgid "Iranian"
#~ msgstr "Iraniek"

#~ msgid "Icelandic"
#~ msgstr "Islandek"

#~ msgid "Italian"
#~ msgstr "Italianek"

#~ msgid "Japanese 106 keys"
#~ msgstr "Japonek (106 stokell)"

#~ msgid "Kannada"
#~ msgstr "Kanadian"

#~ msgid "Korean keyboard"
#~ msgstr "Stokellaoueg korean"

#~ msgid "Latin American"
#~ msgstr "Amerikan Latin"

#~ msgid "Laotian"
#~ msgstr "Laosiek"

#~ msgid "Lithuanian AZERTY (old)"
#~ msgstr "Lituaniek AZERTY (kozh)"

#~ msgid "Lithuanian AZERTY (new)"
#~ msgstr "Lituaniek AZERTY (nevez)"

#~ msgid "Lithuanian \"number row\" QWERTY"
#~ msgstr "Lituaniek QUERTY \"linenn sifroù\""

#~ msgid "Lithuanian \"phonetic\" QWERTY"
#~ msgstr "Lituaniek QUERTY \"soniadel\""

#~ msgid "Macedonian"
#~ msgstr "Makedonia"

#~ msgid "Mongolian (cyrillic)"
#~ msgstr "Mongoliek (lizherenneg ar ruseg)"

#~ msgid "Dutch"
#~ msgstr "Hollandek"

#~ msgid "Polish (qwerty layout)"
#~ msgstr "Polonek (reizhadur qwerty)"

#~ msgid "Polish (qwertz layout)"
#~ msgstr "Polonek (reizhadur qwerty)"

#~ msgid "Portuguese"
#~ msgstr "Portugalek"

#~ msgid "Canadian (Quebec)"
#~ msgstr "Kanadian (Kebek)"

#~ msgid "Romanian (qwertz)"
#~ msgstr "Romaniek (Yawertz)"

#~ msgid "Romanian (qwerty)"
#~ msgstr "Romaniek (qwerty)"

#~ msgid "Russian (Phonetic)"
#~ msgstr "Russian (soniadel)"

#~ msgid "Saami (norwegian)"
#~ msgstr "Sami (Norvegek)"

#~ msgid "Slovenian"
#~ msgstr "Slovek"

#~ msgid "Slovakian (QWERTZ)"
#~ msgstr "Slovakek (QWERTZ)"

#~ msgid "Slovakian (QWERTY)"
#~ msgstr "Slovakek (QWERTY)"

#~ msgid "Serbian (cyrillic)"
#~ msgstr "Serbiek (lizherenneg ar ruseg)"

#~ msgid "Syriac"
#~ msgstr "Siriak"

#~ msgid "Syriac (phonetic)"
#~ msgstr "Siriak (soniadel)"

#~ msgid "Telugu"
#~ msgstr "Telegu"

#~ msgid "Turkish (traditional \"F\" model)"
#~ msgstr "Turkek (hengounel doare \"F\")"

#~ msgid "Turkish (modern \"Q\" model)"
#~ msgstr "Turkek (arnevez doare \"Q\")"

#~ msgid "Ukrainian"
#~ msgstr "Ukrainiek"

#~ msgid "Uzbek (cyrillic)"
#~ msgstr "Ouzbek (lizherenneg ar ruseg)"

#~ msgid "Vietnamese \"numeric row\" QWERTY"
#~ msgstr "Yezh ar Viet-Nam QUERTY \"linenn sifroù\""

#~ msgid "Yugoslavian (latin)"
#~ msgstr "Yougoslaviek (latin)"

#~ msgid "No devices found"
#~ msgstr "N'eo ket trobarzhell ebet !"

#~ msgid "Enable multiple profiles"
#~ msgstr "Aotren lies trolinenn"

#~ msgid "\t* browse the Web"
#~ msgstr "\t* ergerzhet ar Web"

#~ msgid "\t* <b>GDB</b>: the GNU Project debugger"
#~ msgstr "\t* <b>GDB</b> : an Dizraener GNU"

#~ msgid "Installation of %s failed. The following error occurred:"
#~ msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heul :"

#~ msgid "Delay before booting the default image"
#~ msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"

#~ msgid "Can not add a partition to _formatted_ RAID md%d"
#~ msgstr "N'hellan ket ouzhpennañ ur parzhadur da RAID md%d _furmadet_"

#~ msgid "mkraid failed (maybe raidtools are missing?)"
#~ msgstr "mkraid sac'het (raidtools a vank emichañs ?)"

#~ msgid "First sector of boot partition"
#~ msgstr "Rann gentañ ar parzhadur loc'hañ"

#~ msgid "Bootloader installation"
#~ msgstr "Staliadur c'harger loc'hañ"

#~ msgid "The package %s is going to be removed."
#~ msgstr "Ar pakad %s a zo war-nes bezañ lamet."