aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/composer.lock
blob: c83ff7aa510369bbe0e6d9c134b71e701ee3294c (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
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
{
    "_readme": [
        "This file locks the dependencies of your project to a known state",
        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
        "This file is @generated automatically"
    ],
    "hash": "620519ab8cf439078c08f8a4fb49efb8",
    "content-hash": "c843abc1344cd9df37f63c08a125cad0",
    "packages": [
        {
            "name": "bantu/ini-get-wrapper",
            "version": "v1.0.1",
            "source": {
                "type": "git",
                "url": "https://github.com/bantuXorg/php-ini-get-wrapper.git",
                "reference": "4770c7feab370c62e23db4f31c112b7c6d90aee2"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/bantuXorg/php-ini-get-wrapper/zipball/4770c7feab370c62e23db4f31c112b7c6d90aee2",
                "reference": "4770c7feab370c62e23db4f31c112b7c6d90aee2",
                "shasum": ""
            },
            "require-dev": {
                "phpunit/phpunit": "3.7.*"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "bantu\\IniGetWrapper\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "description": "Convenience wrapper around ini_get()",
            "time": "2014-09-15 13:12:35"
        },
        {
            "name": "google/recaptcha",
            "version": "1.1.2",
            "source": {
                "type": "git",
                "url": "https://github.com/google/recaptcha.git",
                "reference": "2b7e00566afca82a38a1d3adb8e42c118006296e"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/google/recaptcha/zipball/2b7e00566afca82a38a1d3adb8e42c118006296e",
                "reference": "2b7e00566afca82a38a1d3adb8e42c118006296e",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.2"
            },
            "require-dev": {
                "phpunit/phpunit": "4.5.*"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.1.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "ReCaptcha\\": "src/ReCaptcha"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "description": "Client library for reCAPTCHA, a free service that protect websites from spam and abuse.",
            "homepage": "http://www.google.com/recaptcha/",
            "keywords": [
                "Abuse",
                "captcha",
                "recaptcha",
                "spam"
            ],
            "time": "2015-09-02 17:23:59"
        },
        {
            "name": "guzzlehttp/guzzle",
            "version": "5.3.3",
            "source": {
                "type": "git",
                "url": "https://github.com/guzzle/guzzle.git",
                "reference": "93bbdb30d59be6cd9839495306c65f2907370eb9"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/93bbdb30d59be6cd9839495306c65f2907370eb9",
                "reference": "93bbdb30d59be6cd9839495306c65f2907370eb9",
                "shasum": ""
            },
            "require": {
                "guzzlehttp/ringphp": "^1.1",
                "php": ">=5.4.0",
                "react/promise": "^2.2"
            },
            "require-dev": {
                "ext-curl": "*",
                "phpunit/phpunit": "^4.0"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "GuzzleHttp\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Michael Dowling",
                    "email": "mtdowling@gmail.com",
                    "homepage": "https://github.com/mtdowling"
                }
            ],
            "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
            "homepage": "http://guzzlephp.org/",
            "keywords": [
                "client",
                "curl",
                "framework",
                "http",
                "http client",
                "rest",
                "web service"
            ],
            "time": "2018-07-31 13:33:10"
        },
        {
            "name": "guzzlehttp/ringphp",
            "version": "1.1.1",
            "source": {
                "type": "git",
                "url": "https://github.com/guzzle/RingPHP.git",
                "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/5e2a174052995663dd68e6b5ad838afd47dd615b",
                "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b",
                "shasum": ""
            },
            "require": {
                "guzzlehttp/streams": "~3.0",
                "php": ">=5.4.0",
                "react/promise": "~2.0"
            },
            "require-dev": {
                "ext-curl": "*",
                "phpunit/phpunit": "~4.0"
            },
            "suggest": {
                "ext-curl": "Guzzle will use specific adapters if cURL is present"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.1-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "GuzzleHttp\\Ring\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Michael Dowling",
                    "email": "mtdowling@gmail.com",
                    "homepage": "https://github.com/mtdowling"
                }
            ],
            "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
            "time": "2018-07-31 13:22:33"
        },
        {
            "name": "guzzlehttp/streams",
            "version": "3.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/guzzle/streams.git",
                "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/guzzle/streams/zipball/47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
                "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
                "shasum": ""
            },
            "require": {
                "php": ">=5.4.0"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "3.0-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "GuzzleHttp\\Stream\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Michael Dowling",
                    "email": "mtdowling@gmail.com",
                    "homepage": "https://github.com/mtdowling"
                }
            ],
            "description": "Provides a simple abstraction over streams of data",
            "homepage": "http://guzzlephp.org/",
            "keywords": [
                "Guzzle",
                "stream"
            ],
            "time": "2014-10-12 19:18:40"
        },
        {
            "name": "ircmaxell/password-compat",
            "version": "v1.0.4",
            "source": {
                "type": "git",
                "url": "https://github.com/ircmaxell/password_compat.git",
                "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/5c5cde8822a69545767f7c7f3058cb15ff84614c",
                "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c",
                "shasum": ""
            },
            "require-dev": {
                "phpunit/phpunit": "4.*"
            },
            "type": "library",
            "autoload": {
                "files": [
                    "lib/password.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Anthony Ferrara",
                    "email": "ircmaxell@php.net",
                    "homepage": "http://blog.ircmaxell.com"
                }
            ],
            "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
            "homepage": "https://github.com/ircmaxell/password_compat",
            "keywords": [
                "hashing",
                "password"
            ],
            "time": "2014-11-20 16:49:30"
        },
        {
            "name": "lusitanian/oauth",
            "version": "v0.8.11",
            "source": {
                "type": "git",
                "url": "https://github.com/Lusitanian/PHPoAuthLib.git",
                "reference": "fc11a53db4b66da555a6a11fce294f574a8374f9"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/Lusitanian/PHPoAuthLib/zipball/fc11a53db4b66da555a6a11fce294f574a8374f9",
                "reference": "fc11a53db4b66da555a6a11fce294f574a8374f9",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.0"
            },
            "require-dev": {
                "phpunit/phpunit": "3.7.*",
                "predis/predis": "0.8.*@dev",
                "squizlabs/php_codesniffer": "2.*",
                "symfony/http-foundation": "~2.1"
            },
            "suggest": {
                "ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client.",
                "predis/predis": "Allows using the Redis storage backend.",
                "symfony/http-foundation": "Allows using the Symfony Session storage backend."
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "0.1-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "OAuth": "src",
                    "OAuth\\Unit": "tests"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "David Desberg",
                    "email": "david@daviddesberg.com"
                },
                {
                    "name": "Elliot Chance",
                    "email": "elliotchance@gmail.com"
                },
                {
                    "name": "Pieter Hordijk",
                    "email": "info@pieterhordijk.com"
                }
            ],
            "description": "PHP 5.3+ oAuth 1/2 Library",
            "keywords": [
                "Authentication",
                "authorization",
                "oauth",
                "security"
            ],
            "time": "2016-07-12 22:15:00"
        },
        {
            "name": "marc1706/fast-image-size",
            "version": "v1.1.4",
            "source": {
                "type": "git",
                "url": "https://github.com/marc1706/fast-image-size.git",
                "reference": "c4ded0223a4e49ae45a2183a69f6afac5baf7250"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/marc1706/fast-image-size/zipball/c4ded0223a4e49ae45a2183a69f6afac5baf7250",
                "reference": "c4ded0223a4e49ae45a2183a69f6afac5baf7250",
                "shasum": ""
            },
            "require": {
                "ext-mbstring": "*",
                "php": ">=5.3.0"
            },
            "require-dev": {
                "phpunit/phpunit": "4.*"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "FastImageSize\\": "lib",
                    "FastImageSize\\tests\\": "tests"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Marc Alexander",
                    "email": "admin@m-a-styles.de",
                    "homepage": "https://www.m-a-styles.de",
                    "role": "Developer"
                }
            ],
            "description": "fast-image-size is a PHP library that does almost everything PHP's getimagesize() does but without the large overhead of downloading the complete file.",
            "homepage": "https://www.m-a-styles.de",
            "keywords": [
                "fast",
                "getimagesize",
                "image",
                "imagesize",
                "php",
                "size"
            ],
            "time": "2017-10-23 18:52:01"
        },
        {
            "name": "ocramius/proxy-manager",
            "version": "1.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/Ocramius/ProxyManager.git",
                "reference": "57e9272ec0e8deccf09421596e0e2252df440e11"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/57e9272ec0e8deccf09421596e0e2252df440e11",
                "reference": "57e9272ec0e8deccf09421596e0e2252df440e11",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3",
                "zendframework/zend-code": ">2.2.5,<3.0"
            },
            "require-dev": {
                "ext-phar": "*",
                "phpunit/phpunit": "~4.0",
                "squizlabs/php_codesniffer": "1.5.*"
            },
            "suggest": {
                "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
                "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
                "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)",
                "zendframework/zend-stdlib": "To use the hydrator proxy",
                "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.0.x-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "ProxyManager\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Marco Pivetta",
                    "email": "ocramius@gmail.com",
                    "homepage": "http://ocramius.github.com/"
                }
            ],
            "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
            "homepage": "https://github.com/Ocramius/ProxyManager",
            "keywords": [
                "aop",
                "lazy loading",
                "proxy",
                "proxy pattern",
                "service proxies"
            ],
            "time": "2015-08-09 04:28:19"
        },
        {
            "name": "paragonie/random_compat",
            "version": "v1.4.3",
            "source": {
                "type": "git",
                "url": "https://github.com/paragonie/random_compat.git",
                "reference": "9b3899e3c3ddde89016f576edb8c489708ad64cd"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/9b3899e3c3ddde89016f576edb8c489708ad64cd",
                "reference": "9b3899e3c3ddde89016f576edb8c489708ad64cd",
                "shasum": ""
            },
            "require": {
                "php": ">=5.2.0"
            },
            "require-dev": {
                "phpunit/phpunit": "4.*|5.*"
            },
            "suggest": {
                "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
            },
            "type": "library",
            "autoload": {
                "files": [
                    "lib/random.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Paragon Initiative Enterprises",
                    "email": "security@paragonie.com",
                    "homepage": "https://paragonie.com"
                }
            ],
            "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
            "keywords": [
                "csprng",
                "pseudorandom",
                "random"
            ],
            "time": "2017-03-13 16:22:52"
        },
        {
            "name": "patchwork/utf8",
            "version": "v1.3.1",
            "source": {
                "type": "git",
                "url": "https://github.com/tchwork/utf8.git",
                "reference": "30ec6451aec7d2536f0af8fe535f70c764f2c47a"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/tchwork/utf8/zipball/30ec6451aec7d2536f0af8fe535f70c764f2c47a",
                "reference": "30ec6451aec7d2536f0af8fe535f70c764f2c47a",
                "shasum": ""
            },
            "require": {
                "lib-pcre": ">=7.3",
                "php": ">=5.3.0"
            },
            "suggest": {
                "ext-iconv": "Use iconv for best performance",
                "ext-intl": "Use Intl for best performance",
                "ext-mbstring": "Use Mbstring for best performance",
                "ext-wfio": "Use WFIO for UTF-8 filesystem access on Windows"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.3-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Patchwork\\": "src/Patchwork/"
                },
                "classmap": [
                    "src/Normalizer.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "(Apache-2.0 or GPL-2.0)"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                }
            ],
            "description": "Portable and performant UTF-8, Unicode and Grapheme Clusters for PHP",
            "homepage": "https://github.com/tchwork/utf8",
            "keywords": [
                "grapheme",
                "i18n",
                "unicode",
                "utf-8",
                "utf8"
            ],
            "time": "2016-05-18 13:57:10"
        },
        {
            "name": "psr/log",
            "version": "1.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/php-fig/log.git",
                "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
                "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Psr\\Log\\": "Psr/Log/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "PHP-FIG",
                    "homepage": "http://www.php-fig.org/"
                }
            ],
            "description": "Common interface for logging libraries",
            "homepage": "https://github.com/php-fig/log",
            "keywords": [
                "log",
                "psr",
                "psr-3"
            ],
            "time": "2016-10-10 12:19:37"
        },
        {
            "name": "react/promise",
            "version": "v2.7.0",
            "source": {
                "type": "git",
                "url": "https://github.com/reactphp/promise.git",
                "reference": "f4edc2581617431aea50430749db55cc3fc031b3"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/reactphp/promise/zipball/f4edc2581617431aea50430749db55cc3fc031b3",
                "reference": "f4edc2581617431aea50430749db55cc3fc031b3",
                "shasum": ""
            },
            "require": {
                "php": ">=5.4.0"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.8"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "React\\Promise\\": "src/"
                },
                "files": [
                    "src/functions_include.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Jan Sorgalla",
                    "email": "jsorgalla@gmail.com"
                }
            ],
            "description": "A lightweight implementation of CommonJS Promises/A for PHP",
            "keywords": [
                "promise",
                "promises"
            ],
            "time": "2018-06-13 15:59:06"
        },
        {
            "name": "s9e/text-formatter",
            "version": "0.13.1",
            "source": {
                "type": "git",
                "url": "https://github.com/s9e/TextFormatter.git",
                "reference": "804ed8fdfa9fd0c8d99f5a33000d4f7e5ed90c6f"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/s9e/TextFormatter/zipball/804ed8fdfa9fd0c8d99f5a33000d4f7e5ed90c6f",
                "reference": "804ed8fdfa9fd0c8d99f5a33000d4f7e5ed90c6f",
                "shasum": ""
            },
            "require": {
                "ext-dom": "*",
                "ext-filter": "*",
                "lib-pcre": ">=7.2",
                "php": ">=5.4.7"
            },
            "require-dev": {
                "matthiasmullie/minify": "*",
                "php": ">=5.4.7",
                "s9e/regexp-builder": ">=1.3.0"
            },
            "suggest": {
                "ext-curl": "Improves the performance of the MediaEmbed plugin and some JavaScript minifiers",
                "ext-intl": "Allows international URLs to be accepted by the URL filter",
                "ext-json": "Enables the generation of a JavaScript parser",
                "ext-mbstring": "Improves the performance of the PHP renderer",
                "ext-tokenizer": "Improves the performance of the PHP renderer",
                "ext-xsl": "Enables the XSLT renderer",
                "ext-zlib": "Enables gzip compression when scraping content via the MediaEmbed plugin"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "s9e\\TextFormatter\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "description": "Multi-purpose text formatting and markup library. Plugins offer support for BBCodes, Markdown, emoticons, HTML, embedding media (YouTube, etc...), enhanced typography and more.",
            "homepage": "https://github.com/s9e/TextFormatter/",
            "keywords": [
                "bbcode",
                "bbcodes",
                "blog",
                "censor",
                "embed",
                "emoji",
                "emoticons",
                "engine",
                "forum",
                "html",
                "markdown",
                "markup",
                "media",
                "parser",
                "shortcodes"
            ],
            "time": "2017-12-10 00:55:53"
        },
        {
            "name": "symfony/config",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/config.git",
                "reference": "06c0be4cdd8363f3ec8d592c9a4d1b981d5052af"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/config/zipball/06c0be4cdd8363f3ec8d592c9a4d1b981d5052af",
                "reference": "06c0be4cdd8363f3ec8d592c9a4d1b981d5052af",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "symfony/filesystem": "~2.3|~3.0.0",
                "symfony/polyfill-ctype": "~1.8"
            },
            "require-dev": {
                "symfony/yaml": "~2.7|~3.0.0"
            },
            "suggest": {
                "symfony/yaml": "To use the yaml reference dumper"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Config\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Config Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 11:13:39"
        },
        {
            "name": "symfony/console",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/console.git",
                "reference": "0c1fcbb9afb5cff992c982ff99c0434f0146dcfc"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/console/zipball/0c1fcbb9afb5cff992c982ff99c0434f0146dcfc",
                "reference": "0c1fcbb9afb5cff992c982ff99c0434f0146dcfc",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "symfony/debug": "^2.7.2|~3.0.0",
                "symfony/polyfill-mbstring": "~1.0"
            },
            "require-dev": {
                "psr/log": "~1.0",
                "symfony/event-dispatcher": "~2.1|~3.0.0",
                "symfony/process": "~2.1|~3.0.0"
            },
            "suggest": {
                "psr/log-implementation": "For using the console logger",
                "symfony/event-dispatcher": "",
                "symfony/process": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Console\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Console Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 11:13:39"
        },
        {
            "name": "symfony/debug",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/debug.git",
                "reference": "cbb8a5f212148964efbc414838c527229f9951b7"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/debug/zipball/cbb8a5f212148964efbc414838c527229f9951b7",
                "reference": "cbb8a5f212148964efbc414838c527229f9951b7",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "psr/log": "~1.0"
            },
            "conflict": {
                "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
            },
            "require-dev": {
                "symfony/class-loader": "~2.2|~3.0.0",
                "symfony/http-kernel": "~2.3.24|~2.5.9|^2.6.2|~3.0.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Debug\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Debug Component",
            "homepage": "https://symfony.com",
            "time": "2018-08-03 09:45:57"
        },
        {
            "name": "symfony/dependency-injection",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/dependency-injection.git",
                "reference": "ad2446d39d11c3daaa7f147d957941a187e47357"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/ad2446d39d11c3daaa7f147d957941a187e47357",
                "reference": "ad2446d39d11c3daaa7f147d957941a187e47357",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9"
            },
            "conflict": {
                "symfony/expression-language": "<2.6"
            },
            "require-dev": {
                "symfony/config": "~2.2|~3.0.0",
                "symfony/expression-language": "~2.6|~3.0.0",
                "symfony/yaml": "~2.3.42|~2.7.14|~2.8.7|~3.0.7"
            },
            "suggest": {
                "symfony/config": "",
                "symfony/expression-language": "For using expressions in service container configuration",
                "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
                "symfony/yaml": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\DependencyInjection\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony DependencyInjection Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 11:13:39"
        },
        {
            "name": "symfony/event-dispatcher",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/event-dispatcher.git",
                "reference": "84ae343f39947aa084426ed1138bb96bf94d1f12"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/84ae343f39947aa084426ed1138bb96bf94d1f12",
                "reference": "84ae343f39947aa084426ed1138bb96bf94d1f12",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9"
            },
            "require-dev": {
                "psr/log": "~1.0",
                "symfony/config": "^2.0.5|~3.0.0",
                "symfony/dependency-injection": "~2.6|~3.0.0",
                "symfony/expression-language": "~2.6|~3.0.0",
                "symfony/stopwatch": "~2.3|~3.0.0"
            },
            "suggest": {
                "symfony/dependency-injection": "",
                "symfony/http-kernel": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\EventDispatcher\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony EventDispatcher Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 09:03:18"
        },
        {
            "name": "symfony/filesystem",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/filesystem.git",
                "reference": "0b252f4e25b7da17abb5a98eb60755b71d082c9c"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/filesystem/zipball/0b252f4e25b7da17abb5a98eb60755b71d082c9c",
                "reference": "0b252f4e25b7da17abb5a98eb60755b71d082c9c",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "symfony/polyfill-ctype": "~1.8"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Filesystem\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Filesystem Component",
            "homepage": "https://symfony.com",
            "time": "2018-08-07 09:12:42"
        },
        {
            "name": "symfony/finder",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/finder.git",
                "reference": "f0de0b51913eb2caab7dfed6413b87e14fca780e"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/finder/zipball/f0de0b51913eb2caab7dfed6413b87e14fca780e",
                "reference": "f0de0b51913eb2caab7dfed6413b87e14fca780e",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Finder\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Finder Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 11:13:39"
        },
        {
            "name": "symfony/http-foundation",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/http-foundation.git",
                "reference": "dc02e684171d0696edb6d4266e9d93af5e3f44d3"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/dc02e684171d0696edb6d4266e9d93af5e3f44d3",
                "reference": "dc02e684171d0696edb6d4266e9d93af5e3f44d3",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "symfony/polyfill-mbstring": "~1.1",
                "symfony/polyfill-php54": "~1.0",
                "symfony/polyfill-php55": "~1.0"
            },
            "require-dev": {
                "symfony/expression-language": "~2.4|~3.0.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\HttpFoundation\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony HttpFoundation Component",
            "homepage": "https://symfony.com",
            "time": "2018-08-27 15:52:41"
        },
        {
            "name": "symfony/http-kernel",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/http-kernel.git",
                "reference": "5424d38f10dc62752e655740224681a478d9f5bb"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5424d38f10dc62752e655740224681a478d9f5bb",
                "reference": "5424d38f10dc62752e655740224681a478d9f5bb",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "psr/log": "~1.0",
                "symfony/debug": "^2.6.2",
                "symfony/event-dispatcher": "^2.6.7|~3.0.0",
                "symfony/http-foundation": "~2.7.36|~2.8.29|~3.1.6",
                "symfony/polyfill-ctype": "~1.8"
            },
            "conflict": {
                "symfony/config": "<2.7",
                "twig/twig": "<1.34|<2.4,>=2"
            },
            "require-dev": {
                "symfony/browser-kit": "~2.3|~3.0.0",
                "symfony/class-loader": "~2.1|~3.0.0",
                "symfony/config": "~2.8",
                "symfony/console": "~2.3|~3.0.0",
                "symfony/css-selector": "^2.0.5|~3.0.0",
                "symfony/dependency-injection": "~2.8|~3.0.0",
                "symfony/dom-crawler": "^2.0.5|~3.0.0",
                "symfony/expression-language": "~2.4|~3.0.0",
                "symfony/finder": "^2.0.5|~3.0.0",
                "symfony/process": "^2.0.5|~3.0.0",
                "symfony/routing": "~2.8|~3.0.0",
                "symfony/stopwatch": "~2.3|~3.0.0",
                "symfony/templating": "~2.2|~3.0.0",
                "symfony/translation": "^2.0.5|~3.0.0",
                "symfony/var-dumper": "~2.6|~3.0.0"
            },
            "suggest": {
                "symfony/browser-kit": "",
                "symfony/class-loader": "",
                "symfony/config": "",
                "symfony/console": "",
                "symfony/dependency-injection": "",
                "symfony/finder": "",
                "symfony/var-dumper": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\HttpKernel\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony HttpKernel Component",
            "homepage": "https://symfony.com",
            "time": "2018-08-27 17:33:38"
        },
        {
            "name": "symfony/polyfill-ctype",
            "version": "v1.9.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-ctype.git",
                "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
                "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3"
            },
            "suggest": {
                "ext-ctype": "For best performance"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.9-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Polyfill\\Ctype\\": ""
                },
                "files": [
                    "bootstrap.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                },
                {
                    "name": "Gert de Pagter",
                    "email": "BackEndTea@gmail.com"
                }
            ],
            "description": "Symfony polyfill for ctype functions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "ctype",
                "polyfill",
                "portable"
            ],
            "time": "2018-08-06 14:22:27"
        },
        {
            "name": "symfony/polyfill-mbstring",
            "version": "v1.9.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-mbstring.git",
                "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8",
                "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3"
            },
            "suggest": {
                "ext-mbstring": "For best performance"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.9-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Polyfill\\Mbstring\\": ""
                },
                "files": [
                    "bootstrap.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill for the Mbstring extension",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "mbstring",
                "polyfill",
                "portable",
                "shim"
            ],
            "time": "2018-08-06 14:22:27"
        },
        {
            "name": "symfony/polyfill-php54",
            "version": "v1.9.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-php54.git",
                "reference": "412977e090c6a8472dc39d50d1beb7d59495a965"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-php54/zipball/412977e090c6a8472dc39d50d1beb7d59495a965",
                "reference": "412977e090c6a8472dc39d50d1beb7d59495a965",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.9-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Polyfill\\Php54\\": ""
                },
                "files": [
                    "bootstrap.php"
                ],
                "classmap": [
                    "Resources/stubs"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "polyfill",
                "portable",
                "shim"
            ],
            "time": "2018-08-06 14:22:27"
        },
        {
            "name": "symfony/polyfill-php55",
            "version": "v1.9.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-php55.git",
                "reference": "578b8528da843de0fc65ec395900fa3181f2ead7"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-php55/zipball/578b8528da843de0fc65ec395900fa3181f2ead7",
                "reference": "578b8528da843de0fc65ec395900fa3181f2ead7",
                "shasum": ""
            },
            "require": {
                "ircmaxell/password-compat": "~1.0",
                "php": ">=5.3.3"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.9-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Polyfill\\Php55\\": ""
                },
                "files": [
                    "bootstrap.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "polyfill",
                "portable",
                "shim"
            ],
            "time": "2018-08-06 14:22:27"
        },
        {
            "name": "symfony/proxy-manager-bridge",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/proxy-manager-bridge.git",
                "reference": "0fd7ab039e26a33c5e3d1e00642bc83412c0896a"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/0fd7ab039e26a33c5e3d1e00642bc83412c0896a",
                "reference": "0fd7ab039e26a33c5e3d1e00642bc83412c0896a",
                "shasum": ""
            },
            "require": {
                "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
                "php": ">=5.3.9",
                "symfony/dependency-injection": "~2.8|~3.0.0"
            },
            "require-dev": {
                "symfony/config": "~2.3|~3.0.0"
            },
            "type": "symfony-bridge",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Bridge\\ProxyManager\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony ProxyManager Bridge",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 09:03:18"
        },
        {
            "name": "symfony/routing",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/routing.git",
                "reference": "e26f791e8669603e9dc0a601e75a50f914eaa144"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/routing/zipball/e26f791e8669603e9dc0a601e75a50f914eaa144",
                "reference": "e26f791e8669603e9dc0a601e75a50f914eaa144",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9"
            },
            "conflict": {
                "symfony/config": "<2.7"
            },
            "require-dev": {
                "doctrine/annotations": "~1.0",
                "psr/log": "~1.0",
                "symfony/config": "~2.7|~3.0.0",
                "symfony/expression-language": "~2.4|~3.0.0",
                "symfony/http-foundation": "~2.3|~3.0.0",
                "symfony/yaml": "^2.0.5|~3.0.0"
            },
            "suggest": {
                "doctrine/annotations": "For using the annotation loader",
                "symfony/config": "For using the all-in-one router or any loader",
                "symfony/dependency-injection": "For loading routes from a service",
                "symfony/expression-language": "For using expression matching",
                "symfony/http-foundation": "For using a Symfony Request object",
                "symfony/yaml": "For using the YAML loader"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Routing\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Routing Component",
            "homepage": "https://symfony.com",
            "keywords": [
                "router",
                "routing",
                "uri",
                "url"
            ],
            "time": "2018-07-26 11:13:39"
        },
        {
            "name": "symfony/twig-bridge",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/twig-bridge.git",
                "reference": "2bb814a4554a7188275be36503dc27c0dd12cd2f"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/2bb814a4554a7188275be36503dc27c0dd12cd2f",
                "reference": "2bb814a4554a7188275be36503dc27c0dd12cd2f",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "twig/twig": "~1.34|~2.4"
            },
            "conflict": {
                "symfony/form": "<2.8.23"
            },
            "require-dev": {
                "symfony/asset": "~2.7|~3.0.0",
                "symfony/console": "~2.8|~3.0.0",
                "symfony/expression-language": "~2.4|~3.0.0",
                "symfony/finder": "~2.3|~3.0.0",
                "symfony/form": "^2.8.23",
                "symfony/http-foundation": "^2.8.29|~3.0.0",
                "symfony/http-kernel": "~2.8|~3.0.0",
                "symfony/polyfill-intl-icu": "~1.0",
                "symfony/routing": "~2.2|~3.0.0",
                "symfony/security": "^2.8.31|^3.3.13",
                "symfony/security-acl": "~2.6|~3.0.0",
                "symfony/stopwatch": "~2.2|~3.0.0",
                "symfony/templating": "~2.1|~3.0.0",
                "symfony/translation": "~2.7|~3.0.0",
                "symfony/var-dumper": "~2.7.16|~2.8.9|~3.0.9",
                "symfony/yaml": "^2.0.5|~3.0.0"
            },
            "suggest": {
                "symfony/asset": "For using the AssetExtension",
                "symfony/expression-language": "For using the ExpressionExtension",
                "symfony/finder": "",
                "symfony/form": "For using the FormExtension",
                "symfony/http-kernel": "For using the HttpKernelExtension",
                "symfony/routing": "For using the RoutingExtension",
                "symfony/security": "For using the SecurityExtension",
                "symfony/stopwatch": "For using the StopwatchExtension",
                "symfony/templating": "For using the TwigEngine",
                "symfony/translation": "For using the TranslationExtension",
                "symfony/var-dumper": "For using the DumpExtension",
                "symfony/yaml": "For using the YamlExtension"
            },
            "type": "symfony-bridge",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Bridge\\Twig\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Twig Bridge",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 11:13:39"
        },
        {
            "name": "symfony/yaml",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/yaml.git",
                "reference": "fbf876678e29dc634430dcf0096e216eb0004467"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/yaml/zipball/fbf876678e29dc634430dcf0096e216eb0004467",
                "reference": "fbf876678e29dc634430dcf0096e216eb0004467",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "symfony/polyfill-ctype": "~1.8"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Yaml\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Yaml Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 09:03:18"
        },
        {
            "name": "twig/twig",
            "version": "v1.35.4",
            "source": {
                "type": "git",
                "url": "https://github.com/twigphp/Twig.git",
                "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
                "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3",
                "symfony/polyfill-ctype": "^1.8"
            },
            "require-dev": {
                "psr/container": "^1.0",
                "symfony/debug": "^2.7",
                "symfony/phpunit-bridge": "^3.3"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.35-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "Twig_": "lib/"
                },
                "psr-4": {
                    "Twig\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com",
                    "homepage": "http://fabien.potencier.org",
                    "role": "Lead Developer"
                },
                {
                    "name": "Armin Ronacher",
                    "email": "armin.ronacher@active-4.com",
                    "role": "Project Founder"
                },
                {
                    "name": "Twig Team",
                    "homepage": "https://twig.symfony.com/contributors",
                    "role": "Contributors"
                }
            ],
            "description": "Twig, the flexible, fast, and secure template language for PHP",
            "homepage": "https://twig.symfony.com",
            "keywords": [
                "templating"
            ],
            "time": "2018-07-13 07:12:17"
        },
        {
            "name": "zendframework/zend-code",
            "version": "2.5.1",
            "source": {
                "type": "git",
                "url": "https://github.com/zendframework/zend-code.git",
                "reference": "5d998f261ec2a55171c71da57a11622745680153"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/zendframework/zend-code/zipball/5d998f261ec2a55171c71da57a11622745680153",
                "reference": "5d998f261ec2a55171c71da57a11622745680153",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.23",
                "zendframework/zend-eventmanager": "~2.5"
            },
            "require-dev": {
                "doctrine/common": ">=2.1",
                "fabpot/php-cs-fixer": "1.7.*",
                "phpunit/phpunit": "~4.0",
                "zendframework/zend-stdlib": "~2.5",
                "zendframework/zend-version": "~2.5"
            },
            "suggest": {
                "doctrine/common": "Doctrine\\Common >=2.1 for annotation features",
                "zendframework/zend-stdlib": "Zend\\Stdlib component"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.5-dev",
                    "dev-develop": "2.6-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Zend\\Code\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "description": "provides facilities to generate arbitrary code using an object oriented interface",
            "homepage": "https://github.com/zendframework/zend-code",
            "keywords": [
                "code",
                "zf2"
            ],
            "time": "2015-06-03 15:31:59"
        },
        {
            "name": "zendframework/zend-eventmanager",
            "version": "2.5.1",
            "source": {
                "type": "git",
                "url": "https://github.com/zendframework/zend-eventmanager.git",
                "reference": "d94a16039144936f107f906896349900fd634443"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/d94a16039144936f107f906896349900fd634443",
                "reference": "d94a16039144936f107f906896349900fd634443",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.23",
                "zendframework/zend-stdlib": "~2.5"
            },
            "require-dev": {
                "fabpot/php-cs-fixer": "1.7.*",
                "phpunit/phpunit": "~4.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.5-dev",
                    "dev-develop": "2.6-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Zend\\EventManager\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "homepage": "https://github.com/zendframework/zend-eventmanager",
            "keywords": [
                "eventmanager",
                "zf2"
            ],
            "time": "2015-06-03 15:32:01"
        },
        {
            "name": "zendframework/zend-stdlib",
            "version": "2.5.1",
            "source": {
                "type": "git",
                "url": "https://github.com/zendframework/zend-stdlib.git",
                "reference": "cc8e90a60dd5d44b9730b77d07b97550091da1ae"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/cc8e90a60dd5d44b9730b77d07b97550091da1ae",
                "reference": "cc8e90a60dd5d44b9730b77d07b97550091da1ae",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.23"
            },
            "require-dev": {
                "fabpot/php-cs-fixer": "1.7.*",
                "phpunit/phpunit": "~4.0",
                "zendframework/zend-config": "~2.5",
                "zendframework/zend-eventmanager": "~2.5",
                "zendframework/zend-filter": "~2.5",
                "zendframework/zend-inputfilter": "~2.5",
                "zendframework/zend-serializer": "~2.5",
                "zendframework/zend-servicemanager": "~2.5"
            },
            "suggest": {
                "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
                "zendframework/zend-filter": "To support naming strategy hydrator usage",
                "zendframework/zend-serializer": "Zend\\Serializer component",
                "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.5-dev",
                    "dev-develop": "2.6-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Zend\\Stdlib\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "homepage": "https://github.com/zendframework/zend-stdlib",
            "keywords": [
                "stdlib",
                "zf2"
            ],
            "time": "2015-06-03 15:32:03"
        }
    ],
    "packages-dev": [
        {
            "name": "doctrine/instantiator",
            "version": "1.0.5",
            "source": {
                "type": "git",
                "url": "https://github.com/doctrine/instantiator.git",
                "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
                "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3,<8.0-DEV"
            },
            "require-dev": {
                "athletic/athletic": "~0.1.8",
                "ext-pdo": "*",
                "ext-phar": "*",
                "phpunit/phpunit": "~4.0",
                "squizlabs/php_codesniffer": "~2.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Marco Pivetta",
                    "email": "ocramius@gmail.com",
                    "homepage": "http://ocramius.github.com/"
                }
            ],
            "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
            "homepage": "https://github.com/doctrine/instantiator",
            "keywords": [
                "constructor",
                "instantiate"
            ],
            "time": "2015-06-14 21:17:01"
        },
        {
            "name": "fabpot/goutte",
            "version": "v2.0.4",
            "source": {
                "type": "git",
                "url": "https://github.com/FriendsOfPHP/Goutte.git",
                "reference": "0ad3ee6dc2d0aaa832a80041a1e09bf394e99802"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/0ad3ee6dc2d0aaa832a80041a1e09bf394e99802",
                "reference": "0ad3ee6dc2d0aaa832a80041a1e09bf394e99802",
                "shasum": ""
            },
            "require": {
                "guzzlehttp/guzzle": ">=4,<6",
                "php": ">=5.4.0",
                "symfony/browser-kit": "~2.1",
                "symfony/css-selector": "~2.1",
                "symfony/dom-crawler": "~2.1"
            },
            "type": "application",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.0-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Goutte\\": "Goutte"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                }
            ],
            "description": "A simple PHP Web Scraper",
            "homepage": "https://github.com/FriendsOfPHP/Goutte",
            "keywords": [
                "scraper"
            ],
            "time": "2015-05-05 21:14:57"
        },
        {
            "name": "facebook/webdriver",
            "version": "1.1.3",
            "source": {
                "type": "git",
                "url": "https://github.com/facebook/php-webdriver.git",
                "reference": "b7186fb1bcfda956d237f59face250d06ef47253"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/b7186fb1bcfda956d237f59face250d06ef47253",
                "reference": "b7186fb1bcfda956d237f59face250d06ef47253",
                "shasum": ""
            },
            "require": {
                "ext-curl": "*",
                "php": ">=5.3.19"
            },
            "require-dev": {
                "friendsofphp/php-cs-fixer": "^1.11",
                "phpunit/phpunit": "4.6.* || ~5.0",
                "squizlabs/php_codesniffer": "^2.6"
            },
            "suggest": {
                "phpdocumentor/phpdocumentor": "2.*"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Facebook\\WebDriver\\": "lib/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "Apache-2.0"
            ],
            "description": "A PHP client for WebDriver",
            "homepage": "https://github.com/facebook/php-webdriver",
            "keywords": [
                "facebook",
                "php",
                "selenium",
                "webdriver"
            ],
            "time": "2016-08-10 00:44:08"
        },
        {
            "name": "laravel/homestead",
            "version": "v2.2.2",
            "source": {
                "type": "git",
                "url": "https://github.com/laravel/homestead.git",
                "reference": "f4e45f895d8707042c2d0698627d33c484e7c6ba"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/laravel/homestead/zipball/f4e45f895d8707042c2d0698627d33c484e7c6ba",
                "reference": "f4e45f895d8707042c2d0698627d33c484e7c6ba",
                "shasum": ""
            },
            "require": {
                "php": ">=5.4",
                "symfony/console": "~2.0 || ~3.0",
                "symfony/process": "~2.0 || ~3.0"
            },
            "bin": [
                "homestead"
            ],
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Laravel\\Homestead\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Taylor Otwell",
                    "email": "taylorotwell@gmail.com"
                }
            ],
            "description": "A virtual machine for web artisans.",
            "time": "2016-09-17 04:42:33"
        },
        {
            "name": "michelf/php-markdown",
            "version": "1.8.0",
            "source": {
                "type": "git",
                "url": "https://github.com/michelf/php-markdown.git",
                "reference": "01ab082b355bf188d907b9929cd99b2923053495"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/michelf/php-markdown/zipball/01ab082b355bf188d907b9929cd99b2923053495",
                "reference": "01ab082b355bf188d907b9929cd99b2923053495",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.0"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Michelf\\": "Michelf/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Michel Fortin",
                    "email": "michel.fortin@michelf.ca",
                    "homepage": "https://michelf.ca/",
                    "role": "Developer"
                },
                {
                    "name": "John Gruber",
                    "homepage": "https://daringfireball.net/"
                }
            ],
            "description": "PHP Markdown",
            "homepage": "https://michelf.ca/projects/php-markdown/",
            "keywords": [
                "markdown"
            ],
            "time": "2018-01-15 00:49:33"
        },
        {
            "name": "nikic/php-parser",
            "version": "v0.9.5",
            "source": {
                "type": "git",
                "url": "https://github.com/nikic/PHP-Parser.git",
                "reference": "ef70767475434bdb3615b43c327e2cae17ef12eb"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ef70767475434bdb3615b43c327e2cae17ef12eb",
                "reference": "ef70767475434bdb3615b43c327e2cae17ef12eb",
                "shasum": ""
            },
            "require": {
                "ext-tokenizer": "*",
                "php": ">=5.2"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "0.9-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "PHPParser": "lib/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Nikita Popov"
                }
            ],
            "description": "A PHP parser written in PHP",
            "keywords": [
                "parser",
                "php"
            ],
            "time": "2014-07-23 18:24:17"
        },
        {
            "name": "phing/phing",
            "version": "2.4.14",
            "source": {
                "type": "git",
                "url": "https://github.com/phingofficial/phing.git",
                "reference": "41075d93ca254f1c90c79ec7ce81be2b2629e138"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/phingofficial/phing/zipball/41075d93ca254f1c90c79ec7ce81be2b2629e138",
                "reference": "41075d93ca254f1c90c79ec7ce81be2b2629e138",
                "shasum": ""
            },
            "require": {
                "php": ">=5.2.0"
            },
            "bin": [
                "bin/phing"
            ],
            "type": "library",
            "autoload": {
                "classmap": [
                    "classes/phing/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "include-path": [
                "classes"
            ],
            "license": [
                "LGPL3"
            ],
            "authors": [
                {
                    "name": "Michiel Rook",
                    "email": "mrook@php.net"
                },
                {
                    "name": "Phing Community",
                    "homepage": "http://www.phing.info/trac/wiki/Development/Contributors"
                }
            ],
            "description": "PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant.",
            "homepage": "http://www.phing.info/",
            "keywords": [
                "build",
                "task",
                "tool"
            ],
            "time": "2012-11-29 21:23:47"
        },
        {
            "name": "phpdocumentor/reflection-docblock",
            "version": "2.0.5",
            "source": {
                "type": "git",
                "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
                "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
                "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.0"
            },
            "suggest": {
                "dflydev/markdown": "~1.0",
                "erusev/parsedown": "~1.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.0.x-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "phpDocumentor": [
                        "src/"
                    ]
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Mike van Riel",
                    "email": "mike.vanriel@naenius.com"
                }
            ],
            "time": "2016-01-25 08:17:30"
        },
        {
            "name": "phpspec/prophecy",
            "version": "1.8.0",
            "source": {
                "type": "git",
                "url": "https://github.com/phpspec/prophecy.git",
                "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
                "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
                "shasum": ""
            },
            "require": {
                "doctrine/instantiator": "^1.0.2",
                "php": "^5.3|^7.0",
                "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
                "sebastian/comparator": "^1.1|^2.0|^3.0",
                "sebastian/recursion-context": "^1.0|^2.0|^3.0"
            },
            "require-dev": {
                "phpspec/phpspec": "^2.5|^3.2",
                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.8.x-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "Prophecy\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Konstantin Kudryashov",
                    "email": "ever.zet@gmail.com",
                    "homepage": "http://everzet.com"
                },
                {
                    "name": "Marcello Duarte",
                    "email": "marcello.duarte@gmail.com"
                }
            ],
            "description": "Highly opinionated mocking framework for PHP 5.3+",
            "homepage": "https://github.com/phpspec/prophecy",
            "keywords": [
                "Double",
                "Dummy",
                "fake",
                "mock",
                "spy",
                "stub"
            ],
            "time": "2018-08-05 17:53:17"
        },
        {
            "name": "phpunit/dbunit",
            "version": "1.3.2",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/dbunit.git",
                "reference": "1507040c2541bdffd7fbd71fc792cecdea6a7c61"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/dbunit/zipball/1507040c2541bdffd7fbd71fc792cecdea6a7c61",
                "reference": "1507040c2541bdffd7fbd71fc792cecdea6a7c61",
                "shasum": ""
            },
            "require": {
                "ext-pdo": "*",
                "ext-simplexml": "*",
                "php": ">=5.3.3",
                "phpunit/phpunit": "~3.7|~4.0",
                "symfony/yaml": "~2.1"
            },
            "bin": [
                "composer/bin/dbunit"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.3.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "PHPUnit/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "include-path": [
                "",
                "../../symfony/yaml/"
            ],
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sb@sebastian-bergmann.de",
                    "role": "lead"
                }
            ],
            "description": "DbUnit port for PHP/PHPUnit to support database interaction testing.",
            "homepage": "https://github.com/sebastianbergmann/dbunit/",
            "keywords": [
                "database",
                "testing",
                "xunit"
            ],
            "time": "2015-03-29 14:23:04"
        },
        {
            "name": "phpunit/php-code-coverage",
            "version": "2.2.4",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
                "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
                "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3",
                "phpunit/php-file-iterator": "~1.3",
                "phpunit/php-text-template": "~1.2",
                "phpunit/php-token-stream": "~1.3",
                "sebastian/environment": "^1.3.2",
                "sebastian/version": "~1.0"
            },
            "require-dev": {
                "ext-xdebug": ">=2.1.4",
                "phpunit/phpunit": "~4"
            },
            "suggest": {
                "ext-dom": "*",
                "ext-xdebug": ">=2.2.1",
                "ext-xmlwriter": "*"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.2.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sb@sebastian-bergmann.de",
                    "role": "lead"
                }
            ],
            "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
            "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
            "keywords": [
                "coverage",
                "testing",
                "xunit"
            ],
            "time": "2015-10-06 15:47:00"
        },
        {
            "name": "phpunit/php-file-iterator",
            "version": "1.4.5",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
                "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
                "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.4.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sb@sebastian-bergmann.de",
                    "role": "lead"
                }
            ],
            "description": "FilterIterator implementation that filters files based on a list of suffixes.",
            "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
            "keywords": [
                "filesystem",
                "iterator"
            ],
            "time": "2017-11-27 13:52:08"
        },
        {
            "name": "phpunit/php-text-template",
            "version": "1.2.1",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/php-text-template.git",
                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3"
            },
            "type": "library",
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de",
                    "role": "lead"
                }
            ],
            "description": "Simple template engine.",
            "homepage": "https://github.com/sebastianbergmann/php-text-template/",
            "keywords": [
                "template"
            ],
            "time": "2015-06-21 13:50:34"
        },
        {
            "name": "phpunit/php-timer",
            "version": "1.0.9",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/php-timer.git",
                "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
                "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
                "shasum": ""
            },
            "require": {
                "php": "^5.3.3 || ^7.0"
            },
            "require-dev": {
                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sb@sebastian-bergmann.de",
                    "role": "lead"
                }
            ],
            "description": "Utility class for timing",
            "homepage": "https://github.com/sebastianbergmann/php-timer/",
            "keywords": [
                "timer"
            ],
            "time": "2017-02-26 11:10:40"
        },
        {
            "name": "phpunit/php-token-stream",
            "version": "1.4.12",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/php-token-stream.git",
                "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
                "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
                "shasum": ""
            },
            "require": {
                "ext-tokenizer": "*",
                "php": ">=5.3.3"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.2"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.4-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de"
                }
            ],
            "description": "Wrapper around PHP's tokenizer extension.",
            "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
            "keywords": [
                "tokenizer"
            ],
            "time": "2017-12-04 08:55:13"
        },
        {
            "name": "phpunit/phpunit",
            "version": "4.8.36",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/phpunit.git",
                "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
                "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
                "shasum": ""
            },
            "require": {
                "ext-dom": "*",
                "ext-json": "*",
                "ext-pcre": "*",
                "ext-reflection": "*",
                "ext-spl": "*",
                "php": ">=5.3.3",
                "phpspec/prophecy": "^1.3.1",
                "phpunit/php-code-coverage": "~2.1",
                "phpunit/php-file-iterator": "~1.4",
                "phpunit/php-text-template": "~1.2",
                "phpunit/php-timer": "^1.0.6",
                "phpunit/phpunit-mock-objects": "~2.3",
                "sebastian/comparator": "~1.2.2",
                "sebastian/diff": "~1.2",
                "sebastian/environment": "~1.3",
                "sebastian/exporter": "~1.2",
                "sebastian/global-state": "~1.0",
                "sebastian/version": "~1.0",
                "symfony/yaml": "~2.1|~3.0"
            },
            "suggest": {
                "phpunit/php-invoker": "~1.1"
            },
            "bin": [
                "phpunit"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "4.8.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de",
                    "role": "lead"
                }
            ],
            "description": "The PHP Unit Testing framework.",
            "homepage": "https://phpunit.de/",
            "keywords": [
                "phpunit",
                "testing",
                "xunit"
            ],
            "time": "2017-06-21 08:07:12"
        },
        {
            "name": "phpunit/phpunit-mock-objects",
            "version": "2.3.8",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
                "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
                "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
                "shasum": ""
            },
            "require": {
                "doctrine/instantiator": "^1.0.2",
                "php": ">=5.3.3",
                "phpunit/php-text-template": "~1.2",
                "sebastian/exporter": "~1.2"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.4"
            },
            "suggest": {
                "ext-soap": "*"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.3.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sb@sebastian-bergmann.de",
                    "role": "lead"
                }
            ],
            "description": "Mock Object library for PHPUnit",
            "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
            "keywords": [
                "mock",
                "xunit"
            ],
            "time": "2015-10-02 06:51:40"
        },
        {
            "name": "pimple/pimple",
            "version": "v1.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/silexphp/Pimple.git",
                "reference": "ae11e57e8c2bb414b2ff93396dbbfc0eb92feb94"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/silexphp/Pimple/zipball/ae11e57e8c2bb414b2ff93396dbbfc0eb92feb94",
                "reference": "ae11e57e8c2bb414b2ff93396dbbfc0eb92feb94",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "Pimple": "lib/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com",
                    "homepage": "http://fabien.potencier.org",
                    "role": "Lead Developer"
                }
            ],
            "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
            "homepage": "http://pimple.sensiolabs.org",
            "keywords": [
                "container",
                "dependency injection"
            ],
            "time": "2013-03-08 08:21:40"
        },
        {
            "name": "sami/sami",
            "version": "v1.4.1",
            "source": {
                "type": "git",
                "url": "https://github.com/FriendsOfPHP/Sami.git",
                "reference": "160018bfefffa730dc35a2c606691a45acbf41a1"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/FriendsOfPHP/Sami/zipball/160018bfefffa730dc35a2c606691a45acbf41a1",
                "reference": "160018bfefffa730dc35a2c606691a45acbf41a1",
                "shasum": ""
            },
            "require": {
                "michelf/php-markdown": "~1.3",
                "nikic/php-parser": "0.9.*",
                "php": ">=5.3.0",
                "pimple/pimple": "1.0.*",
                "symfony/console": "~2.1",
                "symfony/filesystem": "~2.1",
                "symfony/finder": "~2.1",
                "symfony/process": "~2.1",
                "symfony/yaml": "~2.1",
                "twig/twig": "1.*"
            },
            "bin": [
                "sami.php"
            ],
            "type": "application",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.4-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "Sami": "."
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                }
            ],
            "description": "Sami, an API documentation generator",
            "homepage": "http://sami.sensiolabs.org",
            "keywords": [
                "phpdoc"
            ],
            "time": "2015-06-05 03:36:34"
        },
        {
            "name": "sebastian/comparator",
            "version": "1.2.4",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/comparator.git",
                "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
                "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3",
                "sebastian/diff": "~1.2",
                "sebastian/exporter": "~1.2 || ~2.0"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.4"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.2.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Jeff Welch",
                    "email": "whatthejeff@gmail.com"
                },
                {
                    "name": "Volker Dusch",
                    "email": "github@wallbash.com"
                },
                {
                    "name": "Bernhard Schussek",
                    "email": "bschussek@2bepublished.at"
                },
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de"
                }
            ],
            "description": "Provides the functionality to compare PHP values for equality",
            "homepage": "http://www.github.com/sebastianbergmann/comparator",
            "keywords": [
                "comparator",
                "compare",
                "equality"
            ],
            "time": "2017-01-29 09:50:25"
        },
        {
            "name": "sebastian/diff",
            "version": "1.4.3",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/diff.git",
                "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
                "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
                "shasum": ""
            },
            "require": {
                "php": "^5.3.3 || ^7.0"
            },
            "require-dev": {
                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.4-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Kore Nordmann",
                    "email": "mail@kore-nordmann.de"
                },
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de"
                }
            ],
            "description": "Diff implementation",
            "homepage": "https://github.com/sebastianbergmann/diff",
            "keywords": [
                "diff"
            ],
            "time": "2017-05-22 07:24:03"
        },
        {
            "name": "sebastian/environment",
            "version": "1.3.8",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/environment.git",
                "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
                "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
                "shasum": ""
            },
            "require": {
                "php": "^5.3.3 || ^7.0"
            },
            "require-dev": {
                "phpunit/phpunit": "^4.8 || ^5.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.3.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de"
                }
            ],
            "description": "Provides functionality to handle HHVM/PHP environments",
            "homepage": "http://www.github.com/sebastianbergmann/environment",
            "keywords": [
                "Xdebug",
                "environment",
                "hhvm"
            ],
            "time": "2016-08-18 05:49:44"
        },
        {
            "name": "sebastian/exporter",
            "version": "1.2.2",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/exporter.git",
                "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
                "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3",
                "sebastian/recursion-context": "~1.0"
            },
            "require-dev": {
                "ext-mbstring": "*",
                "phpunit/phpunit": "~4.4"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.3.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Jeff Welch",
                    "email": "whatthejeff@gmail.com"
                },
                {
                    "name": "Volker Dusch",
                    "email": "github@wallbash.com"
                },
                {
                    "name": "Bernhard Schussek",
                    "email": "bschussek@2bepublished.at"
                },
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de"
                },
                {
                    "name": "Adam Harvey",
                    "email": "aharvey@php.net"
                }
            ],
            "description": "Provides the functionality to export PHP variables for visualization",
            "homepage": "http://www.github.com/sebastianbergmann/exporter",
            "keywords": [
                "export",
                "exporter"
            ],
            "time": "2016-06-17 09:04:28"
        },
        {
            "name": "sebastian/global-state",
            "version": "1.1.1",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/global-state.git",
                "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
                "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.2"
            },
            "suggest": {
                "ext-uopz": "*"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de"
                }
            ],
            "description": "Snapshotting of global state",
            "homepage": "http://www.github.com/sebastianbergmann/global-state",
            "keywords": [
                "global state"
            ],
            "time": "2015-10-12 03:26:01"
        },
        {
            "name": "sebastian/recursion-context",
            "version": "1.0.5",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/recursion-context.git",
                "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
                "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.3"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.4"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Jeff Welch",
                    "email": "whatthejeff@gmail.com"
                },
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de"
                },
                {
                    "name": "Adam Harvey",
                    "email": "aharvey@php.net"
                }
            ],
            "description": "Provides functionality to recursively process PHP variables",
            "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
            "time": "2016-10-03 07:41:43"
        },
        {
            "name": "sebastian/version",
            "version": "1.0.6",
            "source": {
                "type": "git",
                "url": "https://github.com/sebastianbergmann/version.git",
                "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
                "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
                "shasum": ""
            },
            "type": "library",
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Sebastian Bergmann",
                    "email": "sebastian@phpunit.de",
                    "role": "lead"
                }
            ],
            "description": "Library that helps with managing the version number of Git-hosted PHP projects",
            "homepage": "https://github.com/sebastianbergmann/version",
            "time": "2015-06-21 13:59:46"
        },
        {
            "name": "squizlabs/php_codesniffer",
            "version": "2.9.1",
            "source": {
                "type": "git",
                "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
                "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
                "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
                "shasum": ""
            },
            "require": {
                "ext-simplexml": "*",
                "ext-tokenizer": "*",
                "ext-xmlwriter": "*",
                "php": ">=5.1.2"
            },
            "require-dev": {
                "phpunit/phpunit": "~4.0"
            },
            "bin": [
                "scripts/phpcs",
                "scripts/phpcbf"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "CodeSniffer.php",
                    "CodeSniffer/CLI.php",
                    "CodeSniffer/Exception.php",
                    "CodeSniffer/File.php",
                    "CodeSniffer/Fixer.php",
                    "CodeSniffer/Report.php",
                    "CodeSniffer/Reporting.php",
                    "CodeSniffer/Sniff.php",
                    "CodeSniffer/Tokens.php",
                    "CodeSniffer/Reports/",
                    "CodeSniffer/Tokenizers/",
                    "CodeSniffer/DocGenerators/",
                    "CodeSniffer/Standards/AbstractPatternSniff.php",
                    "CodeSniffer/Standards/AbstractScopeSniff.php",
                    "CodeSniffer/Standards/AbstractVariableSniff.php",
                    "CodeSniffer/Standards/IncorrectPatternException.php",
                    "CodeSniffer/Standards/Generic/Sniffs/",
                    "CodeSniffer/Standards/MySource/Sniffs/",
                    "CodeSniffer/Standards/PEAR/Sniffs/",
                    "CodeSniffer/Standards/PSR1/Sniffs/",
                    "CodeSniffer/Standards/PSR2/Sniffs/",
                    "CodeSniffer/Standards/Squiz/Sniffs/",
                    "CodeSniffer/Standards/Zend/Sniffs/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Greg Sherwood",
                    "role": "lead"
                }
            ],
            "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
            "homepage": "http://www.squizlabs.com/php-codesniffer",
            "keywords": [
                "phpcs",
                "standards"
            ],
            "time": "2017-05-22 02:43:20"
        },
        {
            "name": "symfony/browser-kit",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/browser-kit.git",
                "reference": "fe44362c97307e7935996cb09d320fcc22619656"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/browser-kit/zipball/fe44362c97307e7935996cb09d320fcc22619656",
                "reference": "fe44362c97307e7935996cb09d320fcc22619656",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "symfony/dom-crawler": "~2.1|~3.0.0"
            },
            "require-dev": {
                "symfony/css-selector": "^2.0.5|~3.0.0",
                "symfony/process": "~2.3.34|^2.7.6|~3.0.0"
            },
            "suggest": {
                "symfony/process": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\BrowserKit\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony BrowserKit Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 09:03:18"
        },
        {
            "name": "symfony/css-selector",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/css-selector.git",
                "reference": "294611f3a0d265bcf049e2da62cb4f712e3ed927"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/css-selector/zipball/294611f3a0d265bcf049e2da62cb4f712e3ed927",
                "reference": "294611f3a0d265bcf049e2da62cb4f712e3ed927",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\CssSelector\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Jean-François Simon",
                    "email": "jeanfrancois.simon@sensiolabs.com"
                },
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony CssSelector Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-26 09:03:18"
        },
        {
            "name": "symfony/dom-crawler",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/dom-crawler.git",
                "reference": "2fd6513f2dd3b08446da420070084db376c0134c"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2fd6513f2dd3b08446da420070084db376c0134c",
                "reference": "2fd6513f2dd3b08446da420070084db376c0134c",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9",
                "symfony/polyfill-ctype": "~1.8",
                "symfony/polyfill-mbstring": "~1.0"
            },
            "require-dev": {
                "symfony/css-selector": "~2.8|~3.0.0"
            },
            "suggest": {
                "symfony/css-selector": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\DomCrawler\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony DomCrawler Component",
            "homepage": "https://symfony.com",
            "time": "2018-07-24 10:05:38"
        },
        {
            "name": "symfony/process",
            "version": "v2.8.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/process.git",
                "reference": "4be278e19064c3492095de50c9e375caae569ae1"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/process/zipball/4be278e19064c3492095de50c9e375caae569ae1",
                "reference": "4be278e19064c3492095de50c9e375caae569ae1",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.9"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.8-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Process\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony Process Component",
            "homepage": "https://symfony.com",
            "time": "2018-08-03 09:45:57"
        }
    ],
    "aliases": [],
    "minimum-stability": "stable",
    "stability-flags": [],
    "prefer-stable": false,
    "prefer-lowest": false,
    "platform": {
        "php": ">=5.4"
    },
    "platform-dev": [],
    "platform-overrides": {
        "php": "5.4.7"
    }
}
' href='#n8218'>8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Pablo Saratxaga <pablo@mandrakesoft.com>, 2000
# Lorint Hendschel <lorinthendschel@skynet.be>, 2002
# Lucyin Mahin <lucyin@walon.org>, 2002
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"POT-Creation-Date: 2002-12-05 19:52+0100\n"
"PO-Revision-Date: 2002-04-29 06:45MET\n"
"Last-Translator: Pablo Saratxaga <pablo@mandrakesoft.com>\n"
"Language-Team: Walon <linux-wa@chanae.alphanet.ch>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../any.pm:1
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Li pårtaedje pa uzeu eploye li groupe «fileshare».\n"
"Vos ploz radjouter on uzeu dins ç' groupe la avou userdrake."

#: ../../any.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
#: ../../interactive/stdio.pm:1 ../../network/netconnect.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
#: ../../standalone/drakbackup:1 ../../standalone/drakboot:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#: ../../standalone/drakfont:1 ../../standalone/drakgw:1
#: ../../standalone/draksec:1 ../../standalone/logdrake:1
#: ../../standalone/net_monitor:1
#, c-format
msgid "Cancel"
msgstr "Rinoncî"

#: ../../any.pm:1
#, c-format
msgid "Launch userdrake"
msgstr "Enonder userdrake"

#: ../../any.pm:1
#, 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 ""
"Voloz vs permete ki les uzeus polexhe pårtaedjî leus ridants?\n"
"Si vos l' permetoz, i pôront clitchî so «Pårtaedjî» dins konqueror ou "
"nautilus.\n"
"\n"
"«A vosse môde» vos permete des apontiaedjes diferins po tchaeke uzeu.\n"

#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "Mandatory package %s is missing"
msgstr "I manke li pacaedje obligatwere %s"

#: ../../any.pm:1
#, c-format
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Vos ploz fé on pårtaedje avou NFS ou Samba. Li kék voloz vs?"

#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "I gn a mezåjhe d' astaler li pacaedje «%s». El voloz astaler?"

#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Custom"
msgstr "A vosse môde"

#: ../../any.pm:1
#, c-format
msgid "Allow all users"
msgstr "Permete tos les uzeus"

#: ../../any.pm:1
#, c-format
msgid "No sharing"
msgstr "Nou pårtaedje"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "More"
msgstr "Co des ôtes"

#: ../../any.pm:1
#, c-format
msgid "Here is the full list of available countries"
msgstr "Vochal li djivêye di tos les payis k' on pout tchoezi"

#: ../../any.pm:1
#, c-format
msgid "Please choose your country."
msgstr "Tchoezixhoz vosse payis s' i vs plait."

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Country"
msgstr "Payis"

#: ../../any.pm:1
#, c-format
msgid "All languages"
msgstr "Tos les lingaedjes"

#: ../../any.pm:1
#, c-format
msgid "Use Unicode by default"
msgstr "Eployî l' ecôdaedje unicôde"

#: ../../any.pm:1
#, c-format
msgid ""
"Mandrake 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 ""
"Vos poloz tchoezi des ôtes lingaedjes ki sront disponibes dispoy\n"
"l' astalåcion po les uzeus s' endè siervi."

#: ../../any.pm:1
#, c-format
msgid "Please choose a language to use."
msgstr "Tchoezixhoz li lingaedje a eployî."

#: ../../any.pm:1
#, c-format
msgid "Choose the window manager to run:"
msgstr "Tchoezixhoz li manaedjeu di purnea a enonder:"

#: ../../any.pm:1
#, c-format
msgid "Choose the default user:"
msgstr "Tchoezixhoz li prémetou uzeu:"

#: ../../any.pm:1
#, c-format
msgid "Do you want to use this feature?"
msgstr "Voloz vs eployî cisse fonccionålité chal?"

#: ../../any.pm:1
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Voste éndjole pout esse apontieye po s' elodjî otomaticmint avou èn uzeu do "
"côp k' ele s' enonde."

#: ../../any.pm:1
#, c-format
msgid "Autologin"
msgstr "Elodjaedje otomatike"

#: ../../any.pm:1
#, c-format
msgid "Icon"
msgstr "Imådjete"

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

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Password (again)"
msgstr "Sicret (co ene feye)"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "Password"
msgstr "Sicret"

#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "User name"
msgstr "No di l' uzeu"

#: ../../any.pm:1
#, c-format
msgid "Real name"
msgstr "Vré no"

#: ../../any.pm:1
#, c-format
msgid "Accept user"
msgstr "Accepter l' uzeu"

#: ../../any.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#: ../../interactive/http.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1
#, c-format
msgid "Done"
msgstr "Fini"

#: ../../any.pm:1
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"Intrez on uzeu\n"
"%s"

#: ../../any.pm:1
#, c-format
msgid "Add user"
msgstr "Radjouter uzeu"

#: ../../any.pm:1
#, c-format
msgid "This user name has already been added"
msgstr "Ci no d' uzeu a ddja stî radjouté"

#: ../../any.pm:1
#, c-format
msgid "The user name is too long"
msgstr "Li no d' uzeu est pår trop long"

#: ../../any.pm:1
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Li no d' uzeu ni pout aveur ki des ptitès letes, des limeros, «-» ou «_»"

#: ../../any.pm:1
#, c-format
msgid "Please give a user name"
msgstr "Dinez on no d' uzeu, s' i vs plait"

#: ../../any.pm:1
#, c-format
msgid "This password is too simple"
msgstr "Ci scret chal est pår trop simpe"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
msgstr "Sayîz co ene feye"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "The passwords do not match"
msgstr "Les mots di passe sont nén les minmes"

#: ../../any.pm:1
#, c-format
msgid "(already added %s)"
msgstr "(%s a stî ddja radjouté)"

#: ../../any.pm:1
#, c-format
msgid "access to compilation tools"
msgstr "accès ås usteyes di copilaedje"

#: ../../any.pm:1
#, c-format
msgid "access to network tools"
msgstr "accès ås usteyes rantoele"

#: ../../any.pm:1
#, c-format
msgid "access to administrative files"
msgstr "accès ås fitchîs administratifs"

#: ../../any.pm:1
#, c-format
msgid "allow \"su\""
msgstr "permete d' eployî «su»"

#: ../../any.pm:1
#, c-format
msgid "access to rpm tools"
msgstr "accès ås usteyes rpm"

#: ../../any.pm:1
#, c-format
msgid "access to X programs"
msgstr "accès ås programes grafikes"

#: ../../any.pm:1
#, 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 ""
"Vochal les intrêyes.\n"
"Vos ndè poloz radjouter ou co candjî les cenes k' î sont ddja."

#: ../../any.pm:1
#, c-format
msgid "Other OS (windows...)"
msgstr "Ôtes sistinmes d' operance (Windows...)"

#: ../../any.pm:1
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Ôtes sistinmes d' operance (MacOS...)"

#: ../../any.pm:1
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Ôtes sistinmes d' operance (SunOS...)"

#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Linux"
msgstr "Linux"

#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kéne sôre d' intrêye voloz vs radjouter?"

#: ../../any.pm:1
#, c-format
msgid "This label is already used"
msgstr "Cisse etikete la est ddja eployeye"

#: ../../any.pm:1
#, c-format
msgid "You must specify a root partition"
msgstr "Vos dvoz dner ene pårticion raecene"

#: ../../any.pm:1
#, c-format
msgid "You must specify a kernel image"
msgstr "Vos dvoz specifyî ene imådje di nawea"

#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
msgstr "Vos n' poloz avu ene vude etikete"

#: ../../any.pm:1 ../../harddrake/v4l.pm:1
#, c-format
msgid "Default"
msgstr "Prémetou"

#: ../../any.pm:1
#, c-format
msgid "NoVideo"
msgstr "NoleVidéyo"

#: ../../any.pm:1
#, c-format
msgid "Initrd-size"
msgstr "Grandeu-Initrd"

#: ../../any.pm:1
#, c-format
msgid "Append"
msgstr "Bouter å coron"

#: ../../any.pm:1
#, c-format
msgid "Label"
msgstr "Etikete"

#: ../../any.pm:1
#, c-format
msgid "Unsafe"
msgstr "Nén seur"

#: ../../any.pm:1
#, c-format
msgid "Table"
msgstr "Tåvlea"

#: ../../any.pm:1
#, c-format
msgid "Root"
msgstr "Raecene"

#: ../../any.pm:1
#, c-format
msgid "Read-write"
msgstr "Lére-sicrire"

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

#: ../../any.pm:1
#, c-format
msgid "Video mode"
msgstr "Môde videyo"

#: ../../any.pm:1
#, c-format
msgid "Image"
msgstr "Imådje"

#: ../../any.pm:1
#, c-format
msgid "Default OS?"
msgstr "Prémetou sistinme d' operance?"

#: ../../any.pm:1
#, c-format
msgid "Enable OF Boot?"
msgstr "Permete l' enondaedje pa l' Open Firmware?"

#: ../../any.pm:1
#, c-format
msgid "Enable CD Boot?"
msgstr "Permete l' enondaedje pa plake lazer?"

#: ../../any.pm:1
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tårdjaedje po l' enondaedje do nawea"

#: ../../any.pm:1
#, c-format
msgid "Open Firmware Delay"
msgstr "Tårdjaedje di l' Open Firmware"

#: ../../any.pm:1
#, c-format
msgid "Boot device"
msgstr "Éndjin d' enondaedje"

#: ../../any.pm:1
#, c-format
msgid "Init Message"
msgstr "Messaedje d' enondaedje"

#: ../../any.pm:1
#, c-format
msgid "Bootloader to use"
msgstr "Enondrece a-z eployî"

#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
msgstr "Mwaissès tchuzes di l' enondrece"

#: ../../any.pm:1
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Li tchuze «Rastrinde les tchuzes del roye di cmande» ni sieve a rén\n"
"sins scret"

#: ../../any.pm:1
#, c-format
msgid "Give the ram size in MB"
msgstr "Dinez li grandeu del RAM e Mo"

#: ../../any.pm:1
#, c-format
msgid "Enable multiple profiles"
msgstr "Mete multi profils"

#: ../../any.pm:1
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Grandeu del RAM, s' i fåt (dj' a trové %d Mo)"

#: ../../any.pm:1
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Netyî /tmp a tchaeke renondaedje"

#: ../../any.pm:1
#, c-format
msgid "Create a bootdisk"
msgstr "Fé ene plakete d' enondaedje"

#: ../../any.pm:1
#, c-format
msgid "restrict"
msgstr "rastrinde"

#: ../../any.pm:1
#, c-format
msgid "Restrict command line options"
msgstr "Rastrinde les tchuzes del roye di cmande"

#: ../../any.pm:1
#, c-format
msgid "Force No APIC"
msgstr "Foircî a n' nén eployî ACPI"

#: ../../any.pm:1
#, c-format
msgid "Enable ACPI"
msgstr "Mete en alaedje ACPI"

#: ../../any.pm:1
#, c-format
msgid "Delay before booting default image"
msgstr "Tins divant d' enonder li prémetowe imådje"

#: ../../any.pm:1
#, c-format
msgid "compact"
msgstr "compak"

#: ../../any.pm:1
#, c-format
msgid "Compact"
msgstr "Compak"

#: ../../any.pm:1
#, c-format
msgid "Bootloader installation"
msgstr "Astalaedje di l' enondrece"

#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
msgstr "Prumî secteu del pårticion d' enondaedje"

#: ../../any.pm:1
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prumî secteu del plake (MBR)"

#: ../../any.pm:1
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Wice ki vos voloz astaler l' enondrece?"

#: ../../any.pm:1
#, c-format
msgid "LILO/grub Installation"
msgstr "Astalåcion di LILO/grub"

#: ../../any.pm:1
#, c-format
msgid "SILO Installation"
msgstr "Astalåcion di SILO"

#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Skip"
msgstr "Passer hute"

#: ../../any.pm:1
#, c-format
msgid "On Floppy"
msgstr "So plakete"

#: ../../any.pm:1
#, c-format
msgid "First sector of the root partition"
msgstr "Prumî secteu del pårticion raecene"

#: ../../any.pm:1
#, 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 ""
"Vos avoz tchoezi d' astaler l' enondrece so ene pårticion.\n"
"Çoula vout dire ki vos avoz ddja ene enondrece sol secteu d' enondaedje del "
"deure plake (eg: System Commander).\n"
"\n"
"So kéne deure plake ki l' copiutrece s' enonde?"

#: ../../any.pm:1
#, c-format
msgid "Creating bootdisk..."
msgstr "Dji fwai ene plakete d' enondaedje"

#: ../../any.pm:1
#, c-format
msgid "Insert a floppy in %s"
msgstr "Metoz ene plakete divins l' %s"

#: ../../any.pm:1
#, c-format
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Tchoezixhoz li lijheu di plaketes ki vos voloz eployî po fé li plakete "
"d' enondaedje"

#: ../../any.pm:1
#, c-format
msgid "Second floppy drive"
msgstr "deujhinme lijheu di plaketes"

#: ../../any.pm:1
#, c-format
msgid "First floppy drive"
msgstr "prumî lijheu di plaketes"

#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
msgstr "Dji rgrete, i gn a nou lijheu di plaketes"

#: ../../any.pm:1
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"LILO (or grub) on your system, or another operating system removes LILO, or "
"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?\n"
"%s"
msgstr ""
"Ene plakete d' enondaedje (boot disk) da vosse vos permetrè d' enonder\n"
"vosse sistinme GNU/Linux sins l' enondeu (boot loader) normå. Ça pout esse\n"
"ahessåve si vos n' voloz nén astaler LILO (ou grub) so vosse sistinme,\n"
"ou si èn ôte sistinme d' operance oistêye LILO ou co si LILO ni va nén\n"
"so voste éndjole.\n"
"Vosse plakete d' enondaedje pout siervi eto come imådje di såvrité (rescue\n"
"image), çou ki vos schaprè li djoû ki vosse sistinme toumrè en rac po do "
"bon.\n"
"Voloz vs fé ene plakete d' enondaedje po vosse sistinme?\n"
"%s"

#: ../../any.pm:1
#, c-format
msgid ""
"\n"
"\n"
"(WARNING! You're using XFS for your root partition,\n"
"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
"because XFS needs a very large driver)."
msgstr ""
"\n"
"\n"
"(ASTEME! Vos eployîz on sistinme di fitchîs XFS po vosse pårticion raecene,\n"
"li fijhaedje d' ene plakete d' enondaedje so ene plakete di 1,44 Mo frè\n"
"seurmint berwete, ca l' XFS a mezåjhe d' on mineu ki prind del plaece.)"

#: ../../any.pm:1
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"SILO on your system, or another operating system removes SILO, or SILO "
"doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures.\n"
"\n"
"If you want to create a bootdisk for your system, insert a floppy in the "
"first\n"
"drive and press \"Ok\"."
msgstr ""
"Ene plakete d' enondaedje (boot disk) da vosse vos permetrè d' enonder\n"
"vosse sistinme GNU/Linux sins l' enondeu (boot loader) normå. Ça pout esse\n"
"ahessåve si vos n' voloz nén astaler SILO so vosse sistinme, ou si èn ôte\n"
"sistinme d' operance oistêye SILO ou co si SILO ni va nén so voste éndjole.\n"
"Vosse plakete d' enondaedje pout siervi eto come imådje di såvrité (rescue\n"
"image), çou ki vos schaprè li djoû ki vosse sistinme toumrè en rac po do "
"bon.\n"
"\n"
"Si vos vloz fé ene plakete d' enondaedje po vosse sistinme, metoz ene\n"
"plakete dins l' prumî lijheu di plaketes et clitchîz so «'l est bon»."

#: ../../bootloader.pm:1
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Vos n' poloz nén astaler l' enondrece so ene pårticion %s\n"

#: ../../bootloader.pm:1
#, c-format
msgid "not enough room in /boot"
msgstr "i gn a nén del plaece assez so /boot"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "L' intreye e sorbriyance va esse enondeye otomaticmint dins %d s."

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"les comandes avant d' enonder, ou so 'c' po-z aveur ene roye di comande."

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tapez so Enter po-z enonder li S.O. tchoezi, so 'e' po-z aspougni"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Eployiz les tapes %c et %c po mete les intreyes e sorbriyance."

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Wilicome a GRUB li tchoezixheu do sistinme d' operance a enonder!"

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

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

#: ../../bootloader.pm:1
#, c-format
msgid "LILO with text menu"
msgstr "LILO avou on menu e môde tecse"

#: ../../bootloader.pm:1
#, c-format
msgid "LILO with graphical menu"
msgstr "LILO avou on menu grafike"

#: ../../bootloader.pm:1
#, c-format
msgid "SILO"
msgstr "SILO"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm:1
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
"Wilicome a %s li tchoezixheu do sistinme d' operance a enonder!\n"
"\n"
"Tchoezixhoz li sistinme d' operance el djiveye\n"
"ou taordjiz %d segondes po l' enondaedje premetou.\n"

#: ../../common.pm:1
#, c-format
msgid "consolehelper missing"
msgstr "i gn a nou consolehelper"

#: ../../common.pm:1
#, c-format
msgid "kdesu missing"
msgstr "i gn a nou kdesu"

#: ../../common.pm:1
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr "Les waitroûlêyes seront metowes el ridant %s après l' astalaedje"

#: ../../common.pm:1
#, c-format
msgid "Can't make screenshots before partitioning"
msgstr "Dji n' pou nén fé des waitroûlêyes divant l' pårtixhaedje"

#: ../../common.pm:1
#, c-format
msgid "%d seconds"
msgstr "%d segondes"

#: ../../common.pm:1
#, c-format
msgid "1 minute"
msgstr "1 munute"

#: ../../common.pm:1
#, c-format
msgid "%d minutes"
msgstr "%d munutes"

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

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

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

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

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United States"
msgstr "Etats Unis"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Austria"
msgstr "Ôtriche"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#: ../../standalone/drakxtv:1
#, c-format
msgid "Italy"
msgstr "Itåleye"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Netherlands"
msgstr "Olande"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Sweden"
msgstr "Suwede"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Norway"
msgstr "Norvedje"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Greece"
msgstr "Grece"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Germany"
msgstr "Almagne"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Czech Republic"
msgstr "Tchekeye"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Belgium"
msgstr "Beljike"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "France"
msgstr "France"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"

#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ene sacwè n' a nén stî come dji droveu %s po î scrire: %s"

#: ../../fsedit.pm:1
#, c-format
msgid "Nothing to do"
msgstr "Rén a fé"

#: ../../fsedit.pm:1
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nén del plaece libe assez po l' atribuwaedje otomatike"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Vos n' poloz eployî on sistinme di fitchîs ecripté pol pont di montaedje %s"

#: ../../fsedit.pm:1
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"I vos fåt on vré sistinme di fitchîs (ext2/ext3, reiserfs, xfs, ou jfs) po "
"ci pont di montaedje chal\n"

#: ../../fsedit.pm:1
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ci ridant chal doet esse el mwaisse sistinme di fitchîs"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Vos n' poloz nén on volume lodjike LVM pol pont di montaedje %s"

#: ../../fsedit.pm:1
#, 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 ""
"Vos avoz tchoezi ene pårticion RAID e cotuzreye pol pårticion raecene (/).\n"
"Nole enondrece pout manaedjî çoula sins ene pårticion /boot.\n"
"Adon pinsez a radjouter ene pårticion /boot"

#: ../../fsedit.pm:1
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "I gn a ddja ene pårticion avou li pont di montaedje %s\n"

#: ../../fsedit.pm:1
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Les ponts di montaedje dvèt aveur seulmint des letes et des chifes"

#: ../../fsedit.pm:1
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Les ponts di montaedje dvèt comincî avou on '/'"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Vos n' poloz eployî ReiserFS po des pårticions di moens di 32Mo"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Vos n' poloz eployî JFS po des pårticions di moens di 32Mo"

#: ../../fsedit.pm:1
#, c-format
msgid ""
"I can't 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 loose all the partitions?\n"
msgstr ""
"Dji n' parvén nén a lere li tåvlea di pårtixhaedje di l' éndjin %s,\n"
"ele est trop crombe por mi :(\n"
"Dji m' va sayî di disfacer les mwaijhès pårticions (mins TOTES LES DNÊYES\n"
"vont esse pierdowes!).\n"
"L' ôte solucion c' est di nén leyî DrakX candjî li tåvlea di pårtixhaedje.\n"
"(l' aroke esta «%s»)\n"
"\n"
"Estoz vs d' acoird di piede totes les pårticions?\n"

#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, c-format
msgid "Error"
msgstr "Aroke"

#: ../../fsedit.pm:1
#, c-format
msgid "server"
msgstr "sierveu"

#: ../../fsedit.pm:1
#, c-format
msgid "with /usr"
msgstr "avou /usr"

#: ../../fsedit.pm:1
#, c-format
msgid "simple"
msgstr "simpe"

#: ../../fs.pm:1
#, c-format
msgid "Enabling swap partition %s"
msgstr "Metant en alaedje li pårticion di swap %s"

#: ../../fs.pm:1 ../../partition_table.pm:1
#, c-format
msgid "error unmounting %s: %s"
msgstr "aroke tot montant %s: %s"

#: ../../fs.pm:1
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "li montaedje del pårticion %s el ridant %s a fwait berwete"

#: ../../fs.pm:1
#, c-format
msgid "Mounting partition %s"
msgstr "Montant li pårticion %s"

#: ../../fs.pm:1
#, c-format
msgid "Checking %s"
msgstr "Verifiant %s"

#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
msgstr "Abwesnant li pårticion %s"

#: ../../fs.pm:1
#, c-format
msgid "Creating and formatting file %s"
msgstr "Dji fwai et abwesner li fitchî %s"

#: ../../fs.pm:1
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Dji n' sai cmint abwesner %s e sôre %s"

#: ../../fs.pm:1
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s l' abwesnaedje di %s a fwait berwete"

# c-format
#: ../../help.pm:1
#, c-format
msgid ""
"Click on \"Next ->\" if you want to delete all data and partitions present\n"
"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
"be able to recover any data and partitions present on this hard drive,\n"
"including any Windows data.\n"
"\n"
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
"Clitchîz so «Shuvant» si vos vloz disfacer totes les dnêyes et totes les\n"
"pårticions k' i gn a so vosse deure plake.\n"
"Prindoz asteme, dispoy aveur clitchî so «Shuvant», vos n' pôroz pus rapexhî\n"
"nole dinêye ou pårticion k' i gn aveut sol deure plake, nerén les cis\n"
"da Windows.\n"
"\n"
"Clitchîz so «Di dvant» po rinoncî a cisse operåcion, et leyî les dnêyes\n"
"et les pårticions come ele estént sol deure plake."

#: ../../help.pm:1
#, c-format
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
"Tchoezixhoz li deure plake ki vos vloz disfacer po-z î astaler vosse\n"
"novele pårticion Mandrake Linux. Prindoz asteme, totes les dnêyes\n"
"k' i gn a sol deure plake vont esse pierdowes, et vos n' pôroz les rapexhî."

#: ../../help.pm:1
#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
"or all of the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary.\n"
"\n"
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
"country, click on the button and choose another one.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
"primary language you have chosen. But here, just as in your choice of a\n"
"keyboard, you may not be in a country to which the chosen language\n"
"corresponds. You may need to click on the \"Timezone\" button to\n"
"configure the clock for the correct timezone.\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
"click that button. This should be reserved to advanced users.\n"
"\n"
" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
"interface in \"800x600\" resolution. If that does not suits you, click on\n"
"the button to reconfigure your graphical interface.\n"
"\n"
" * \"Network\": If you want to configure your Internet or local network\n"
"access now, you can by clicking on this button.\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
"here. If you have a TV card and it is not detected, click on the button to\n"
"try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
"displayed here. You can click on the button to change the parameters\n"
"associated with the card."
msgstr ""
"Chal sont prezintés sacwants parametes k' ont a vey avou voste éndjole.\n"
"Sorlon çou k' vos avoz come éndjolreye vos voeroz, ou nén, ene ou sacwantes\n"
"des intrêyes shuvantes:\n"
"\n"
" * «Sori»: verifyîz l' apontiaedje del sori eyet clitchîz sol boton pol\n"
"candjî, s' i fåt.\n"
"\n"
" * «Taprece»: verifyîz l' apontiaedje del taprece et clitchîz sol boton\n"
"pol candjî, s' i fåt.\n"
"\n"
" * «Payis»: verifyîz ki l' tchuze est bén l' bone. Si vos dmeurez dins\n"
"èn ôte payis, clitchîz sol boton po ndè tchoezi èn ôte.\n"
"\n"
" * «Coisse d' eureye»: Li prémetowe coisse d' eureye est tchoezeye pa\n"
"DrakX sorlon li lingaedje/payis ki vs avoz tchoezi. Mins chal avou, come\n"
"avou l' tchuze del taprece, i s' pout ki vos n' soeyoz nén dins el payis\n"
"do lingaedje ki vs avoz tchoezi. Adon vos ploz clitchî sol boton\n"
"«Coisse d' eureye» po-z apontyî vosse ôrlodje avou l' eure locåle del\n"
"plaece wice ki vos dmeurez.\n"
"\n"
" * «Sicrirece»: si vos clitchîz so «Nole sicrirece» çoula enondrè li macrea\n"
"d' apontiaedje des scrireces. Loukîz li tchaptrea corespondant do «Guide\n"
"d' Enondaedje» po pus d' informåcions sol manire d' apontyî ene nouve\n"
"sicrirece. L' eterface prezintêye chal rishonne a cene håynêye tins\n"
"di l' astalåcion.\n"
"\n"
" * «Enondrece»: si vos vloz candjî l' apontiaedje di l' enondrece\n"
"di l' éndjole. Vos nel duvrîz fé ki si vos esotz seur di vos.\n"
"\n"
" * «Eterface grafike»: li prémetowe finté ki DrakX definixhe po l' eterface\n"
"grafike est di 800x600. Si ça n' vos va nén, clitchîz sol boton pol\n"
"rapontyî.\n"
"\n"
" * «Rantoele»: Si vos vloz apontyî li rantoele (locåle ou daegnrece),\n"
"clitchîz so ç' boton chal.\n"
"\n"
" * «Cåte son»: si ene cåte son est detectêye so vosse sistinme, ele srè\n"
"metowe chal. Si c' est nén l' cene ki vos avoz, vos ploz clitchî chal\n"
"po tchoezi èn ôte mineu.\n"
"\n"
" * «Cåte tévé»: si ene cåte tévé est detectêye so vosse sistinme, ele srè\n"
"metowe chal. Si ele n' est nén detctêye, clitchîz sol boton po sayî del\n"
"apontyî al mwin.\n"
"\n"
" * «Cåte RDIS»: si ene cåte RDIS (ISDN) est detectêye so vosse sistinme,\n"
"ele srè metowe chal. Vos ploz clitchî sol boton po candjî ses parametes."

#: ../../help.pm:1
#, c-format
msgid ""
"\"Sound card\": if a sound card is detected on your system, it is displayed\n"
"here. If you notice the sound card displayed is not the one that is\n"
"actually present on your system, you can click on the button and choose\n"
"another driver."
msgstr ""
"«Cåte son»: si ene cåte son est detectêye so vosse sistinme, ele srè\n"
"metowe chal. Si c' est nén l' cene ki vos avoz, vos ploz clitchî chal\n"
"po tchoezi èn ôte mineu."

#: ../../help.pm:1
#, c-format
msgid ""
"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
"detected and installed in the bootloader menu. If this is not the case, you\n"
"can add an entry by hand in this screen. Be careful to choose the correct\n"
"parameters.\n"
"\n"
"Yaboot's main options are:\n"
"\n"
" * Init Message: a simple text message displayed before the boot prompt.\n"
"\n"
" * Boot Device: indicates where you want to place the information required\n"
"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
"to hold this information.\n"
"\n"
" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
"yaboot. The first delay is measured in seconds and at this point, you can\n"
"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
"After selecting Linux, you will have this delay in 0.1 second before your\n"
"default kernel description is selected;\n"
"\n"
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt.\n"
"\n"
" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
"Open Firmware at the first boot prompt.\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
"Yaboot est ene enondrece po ls éndjoles Macintosh NewWorld et ele pout\n"
"esse eployeye po-z enonder GNU/Linux, MacOS ou MacOSX. Normålmint,\n"
"MacOS eyet MacOSX sont detectés comufåt eyet metous dins l' menu del\n"
"enondrece. Ci c' est nén l' cas, vos ploz radjouter des intrêyes\n"
"al mwin a pårti di ci purnea chal. Prindoz asteme di bén tchoezi les\n"
"bons parametes.\n"
"\n"
"Les mwaissès tchuzes di Yaboot sont:\n"
"\n"
" * «Messaedje d' enondaedje»: on simpe messaedje e môde tecse ki srè\n"
"håyné dvant ki l' enondrece dene li tchamp d' intrêye po tchoezi\n"
"li sistinme d' operance.\n"
"\n"
"* «Éndjin d' enondaedje»: po dire wice ki vos vloz mete l' informåcion\n"
"k' end a mezåjhe po-z enonder GNU/Linux. Djenerålmint, vos fjhoz ene\n"
"pårticion d' enondaedje (bootstrap) pus tård po-z î mete ciste informåcion\n"
"chal.\n"
" * «Tårdjaedje di l' Open Firmware»: i gn a deus tårdjaedjes avou yaboot\n"
"(dismeatant k' avou LILO end n' a k' onk). Li prumî tårdjaedje est mzuré\n"
"e segondes, eyet asteure vos ploz tchoezi inte l' enondaedje so CD,\n"
"avou l' OpenFirmware (OF), di MacOS ou di Linux;\n"
"\n"
"* «Tårdjaedje po l' enondaedje do nawea»: ci tårdjaedje chal est l' minme\n"
"k' avou LILO. On côp ki vos tchoezixhoz Linux, vos åroz ci tårdjaedje\n"
"chal, et dijhinmes di segonde, divant ki l' tchoezi nawea soeye enondé;\n"
"\n"
" * «Permete l' enondaedje pa plake lazer?»: si vos clitchîz cisse\n"
"tchuze chal vos pôroz tchoezi « C » dins l' enondrece po-z enonder a\n"
"pårti d' ene plake lazer.\n"
"\n"
" * «Permete l' enondaedje pa l' Open Firmware?»: si vos clitchîz cisse\n"
"tchuze chal vos pôroz tchoezi « N » dins l' enondrece po-z aveur\n"
"l' Open Firmware.\n"
"\n"
" * «Prémetou sistinme d' operance?»: vos ploz tchoezi li ké sistinme\n"
"d' operance srè-st enondé otomaticmint on côp kel tårdjaedje di\n"
"l' Open Firmware est houte."

#: ../../help.pm:1
#, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
"\n"
"For other OSs, the entry consists only of a label and the \"root\"\n"
"partition.\n"
"\n"
"For Linux, there are a few possible options:\n"
"\n"
" * Label: this is the name you will have to type at the yaboot prompt to\n"
"select this boot option.\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension.\n"
"\n"
" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
" * Append: on Apple hardware, the kernel append option is often used to\n"
"assist in initializing video hardware, or to enable keyboard mouse button\n"
"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
"The following are some examples:\n"
"\n"
"         video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
"         video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: this option can be used either to load initial modules before\n"
"the boot device is available, or to load a ramdisk image for an emergency\n"
"boot situation.\n"
"\n"
" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
"need to allocate a large ramdisk, this option can be used to specify a\n"
"ramdisk larger than the default.\n"
"\n"
" * Read-write: normally the \"root\" partition is initially mounted as\n"
"read-only, to allow a file system check before the system becomes ``live''.\n"
"You can override the default with this option.\n"
"\n"
" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
"problematic, you can select this option to boot in ``novideo'' mode, with\n"
"native frame buffer support.\n"
"\n"
" * Default: selects this entry as being the default Linux selection,\n"
"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
"Vos ploz radjouter des ôtès intrêyes po yaboot, soeye-t i po des ôtes\n"
"sistinmes d' operance, des ôtes naweas, ou po ene imådje d' enondaedje\n"
"po rapexhî l' sistinme.\n"
"\n"
"Po ds ôtes sistinmes d' operance, l' intrêye n' a mezåjhe ki d' ene\n"
"etikete, eyet li pårticion raecene («root») po ç' sistinme la.\n"
"\n"
"Po Linux, i gn a sacwantès tchuzes di pus:\n"
"\n"
" * Etikete: tot simplumint li no ki vos vloz vey dins l' djivêye des\n"
"sistinmes ki yaboot vos mostere po tchoezi tins d' l' enondaedje;\n"
"\n"
" * Imådje: çouchal c' est l' no avou si tchmin do nawea a-z eonder.\n"
"Tipicmint, /boot/vmlinux ou ene sacwè insi;\n"
"\n"
" * Raecene: l' éndjin avou l' pårticion raecene (« / ») po vosse\n"
"sistinme Linux astalé;\n"
"\n"
" * Bouter å coron: Avou les éndjolreyes d' amon Apple, li tchuze\n"
"po des sacwès bouter å coron est eployeye assez sovint po-z aidî\n"
"a inicyî l' éndjolreye pol håynaedje grafike, ou po l' emulåcion\n"
"avou l' taprece des 2e et 3e botons ki mankèt so les soris tipikes\n"
"d' amon Apple. Vochal on des egzimpes:\n"
"\n"
"         video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
"         video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: Cisse tchuze chal pout esse eployeye po tcherdjî des modules\n"
"divant ki l' éndjin d' enondaedje ni soeye disponibe, oudonbén po\n"
"tcherdjî ene imådje sipeciåle po fé on rapexhaedje do sistinme;\n"
"\n"
" * Grandeu-Initrd: li prémetowe grandeu del plake e memwere (ramdisk)\n"
"est normålmint di 4.096 octets. Si vos avoz mezåjhe d' onk pus grand,\n"
"vos l' poloz dire avou cisse tchuze chal;\n"
"\n"
" * Lére-sicrire: normålmint li pårticion raecene est montêye e môde\n"
"seulmint lere po cmincî, po permete on verifiaedje do sistinme di fitchîs\n"
"dvant k' i n' divegne «vicant».\n"
"Chal vos ploz candjî cisse tchuze la;\n"
"\n"
" * NoleVidéyo: s' il astchait ki l' éndjolreye grafike d' amon Apple\n"
"dene bråmint des rujhes, vos ploz tchoezi çouchal po-z enonder e môde\n"
"«nole videyo» (novideo), avou rén ki l' sopoirt natif do framebuffer;\n"
"\n"
" * Prémetou: definixh ciste intrêye chal come li prémetowe po "
"l' enondaedje.\n"
"Ele srè-st enondêye djusse tchôcant li tape ENTER cwand li waitroûlêye\n"
"di yaboot aparexhe. Ciste intrêye srè eto metowe en avant avou on « * »,\n"
"si vos tchôkîz so [Tab] po vey les tchuzes di l' enodnaedje."

#: ../../help.pm:1
#, 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 will ask you if you have\n"
"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
"your machine. If you're not sure, you can check the list of hardware\n"
"detected in your machine by selecting \"See hardware info \" and clicking\n"
"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
"->\" button to return to the SCSI interface question.\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 ""
"DrakX va cweri après on/des éndjins IDE so vosse copiutrece. I va ossu\n"
"cweri après ene/des cåte(s) SCSI e PCI. Si ene cåte SCSI est trovêye\n"
"DrakX va-st astaler otomaticmint li mineu k' i gn a mezåjhe.\n"
"\n"
"Come pa des côps li deteccion del éndjolreye ni sait nén trover ene sacwè\n"
"DrakX vos dmandrè si vos avoz ene cåte PCI SCSI ou nén. Clitchîz so «Oyi»\n"
"si vos savoz k' i gn en a ene so l' éndjole. Ene djivêye di mineu serè\n"
"håynêye po ki vos poloxhe tchoezi li mineu ki convént.\n"
"Clitchîz so «Neni» si vos n' avoz nole cåte SCSI.\n"
"Si vos n' estoz nén seur vos ploz loukî al djivêye di l' éndjolreye k' a\n"
"stî trovêye e voste éndjole, po çoula clitchîz sol boton «Veyoz les\n"
"informåcions sol éndjolreye», waitîz li djivêye del éndjolreye, poy\n"
"so «Shuvant» po rivni al kesse des eterfaces SCSI.\n"
"\n"
"Si vos dvoz tchoezi manuwelmint vosse mineu, DrakX vos dmandrè si vos voloz\n"
"mete des tchuzes por lu. Mins po cmincî, leyîz li mineu rconoxhe tot seu\n"
"voste éndjolreye: d' acostumance, ça va tot seu.\n"
"\n"
"Si ça n' va nén tot seu, vos dvroz dner les informåcions pol mineu "
"manuwelmint."

#: ../../help.pm:1
#, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
"is best for a particular type of configuration.\n"
"\n"
" * \"pdq\" -- which is an acronym for ``print, don't 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. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
"printing to your local printer or to one halfway around the planet. It is\n"
"simple to configure and can act as a server or a client for the ancient\n"
"\"lpd \" printing system, so it compatible with older operating systems\n"
"that may still need print services. While quite powerful, the basic setup\n"
"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
"sure to turn on the \"cups-lpd \" daemon. \"CUPS\" includes graphical\n"
"front-ends for printing or choosing printer options and for managing the\n"
"printer.\n"
"\n"
"If you make a choice now, and later find that you don't like your printing\n"
"system you may change it by running PrinterDrake from the Mandrake Control\n"
"Center and clicking the expert button."
msgstr ""
"Chal, vos tchoezixhoz li ké sistinme d' eprimaedje vos vloz eployî\n"
"so vosse copiutrece. Des ôtes sistinmes d' operance k' i gn a\n"
"vos dnèt onk, mins Mandrake Linux vos lait tchoezi inte deus, tchaeke onk\n"
"estant l' meyeu dins on cas dné.\n"
"\n"
" * «pdq» - ki vout dire «print, don't queue» (eprimer sins caweye), est\n"
"li tchuze a-z eployî si vosse copiutrece est raloyeye directumint a vosse\n"
"copiutrece et ki vos vloz divni eraedjî cwand l' papî s' bôre... et ki\n"
"vos n' avoz nén des scrireces sol rantoele locåle («pdq» n' sait manaedjî\n"
"ki des apontiaedjes rantoele foirt simpes eyet il est ene miete londjin\n"
"po-z eprimî pal rantoele). Tchoezixhoz «pdq» si vos estoz on mieraprindise\n"
"avou GNU/Linux.\n"
"\n"
" «CUPS» - «Common Unix Printing System» (sistinme di comon eprimaedje po\n"
"Unix), est clapant po l' eprimaedje so vosse sicrirece locåle ossu bén\n"
"ki les cenes a l' ôte costé del bole. Il est simpe et pout fé do cliyant\n"
"come dosierveu pol vî sistinme d' eprimaedje «lpd». Ça vout dire k' il\n"
"est copatibe avou les sistinme k' i gn a veut davance. I pout fé bråmint\n"
"d' afwaires, mins l' apontiaedje di båze est cåzu ossu åjhey ki l' ci\n"
"di «pdq». Si vos avoz mezåjhe d' emuler on sierveu «lpd», i vs fåt mete\n"
"en alaedje li démon «cups-lpd». CUPS a des eterfaces grafikes po tchoezi\n"
"les scrireces, apontyî les tchuzes prôpes a tchaeskene et po-z eprimî.\n"
"\n"
"Si vos tchoezixhoz asteure, et ki pus tård vos n' inmez nén voss sistinme\n"
"d' eprimaedje, vos l' poloz åjheymint candjî avou l' ustêye d' apontiaedje\n"
"des scrireces, a-z enonder a pårti do cinte di controle di Mandrake, tot\n"
"clitchant sol boton «Sipepieus»."

#: ../../help.pm:1
#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
"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 will be able to load either GNU/Linux or another\n"
"OS.\n"
"\n"
" * if a grub or LILO boot sector is found, it will replace it with a new\n"
"one.\n"
"\n"
"If it cannot make a determination, DrakX will ask you where to place the\n"
"bootloader.\n"
"\n"
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
"(\"On Floppy\").\n"
"\n"
"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
"handy.\n"
"\n"
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
"least two situations where having a boot floppy is critical:\n"
"\n"
" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
"of your main disk (unless you are using another boot manager), to allow you\n"
"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
"your system). If at some point you need to reinstall Windows, the Microsoft\n"
"install process will rewrite the boot sector and remove your ability to\n"
"start GNU/Linux!\n"
"\n"
" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
"fair number of system tools for restoring a system that has crashed due to\n"
"a power failure, an unfortunate typing error, a forgotten root password, or\n"
"any other reason.\n"
"\n"
"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
"floppy disk must be blank or have non-critical data on it - DrakX will\n"
"format the floppy and will rewrite the whole disk."
msgstr ""
"LILO eyet grub sont des enondreces po GNU/Linux. Normålmint, ciste etape\n"
"chal est totafwaitmint otomatike. DrakX va analijhî li cmince del deure\n"
"plake eyet ovrer sorlon çou ki srè trové la:\n"
"\n"
" * si c' est on secteu d' enondaedje Windows k' est trové, i srè\n"
"replaecî avou on secteu d' enondaedje di grub/LILO. Come çoula vos pôroz\n"
"enonder GNU/Linux ou èn ôte S.O.\n"
"\n"
" * si c' est on secteu d' enondaedje di grub ou LILO k' est trové,\n"
"i srè replaecî avou on pus novea.\n"
"\n"
"Si nou secteut d' enondaedje n' est trové, DrakX vos dmandrè wice\n"
"mete l' enondrece.\n"
"\n"
"«Éndjin d' enondaedje»: dins l' plupårt des cas, vos n' duvoz nén\n"
"candjî li prémetowe valixhance («Prumî secteu del plake (MBR)»), mins\n"
"si vos l' voloz, l' enondrece pout esse astalêye sol deujhinme\n"
"deure plake («/dev/hdb») ou minme so ene plakete («So plakete»);\n"
"\n"
"Clitchî so «Fé ene plakete d' enondaedje» vos permete d' aveur ene\n"
"plake ki vos ploz enonder eyet rapexhî l' sistinme avou.\n"
"\n"
"Li plake lazer di Mandrake Linux a-st on môde rapexhaedje. Vos l' poloz\n"
"eployî tot-z enondant l' éndjole sol plake lazer eyet tchoukî sol tape\n"
"«F1» poy sicrire «rescue» sol roye d' intrêye. Mins si vosse copiutrece\n"
"ni sait nén enonder so ene plake lazer, vos dvrîz rvini vey l' aidance\n"
"po ciste etape dins deus ôtes situwåcions:\n"
"\n"
" * å moumint d' astaler l' enondrece, DrakX va riscrire li secteu\n"
"d' enondaedje (MBR) del mwaisse deure plake (a moens ki vos eployrîz ene\n"
"ôte enondrece) po vos poleur enonder ossu bén avou Windows k' avou\n"
"GNU/Linux (dins l' cas ki vos årîz Windows so l' éndjole, bén seur).\n"
"Si vos avoz mezåjhe di rastaler Windows, li processus d' astalåcion da\n"
"Microsoft va riscrire li secteu d' enondaedje, et vos n' pôroz pus\n"
"enonder GNU/Linux!\n"
"\n"
" * s' i gn a on problinme et ki vos n' savoz nén enonder GNU/Linux a\n"
"pårti del deure plake, cisse plakete serè li seu moyén d' enonder\n"
"GNU/Linux. Ele a å dvins sacwantès usteyes sistinme ki vs permetront\n"
"di fé des reparåcions sol sistinme (k' il åye divnou cromb cåze d' ene\n"
"côpeure electrike, d' ene aroke tot tapant ene comande, on roviaedje\n"
"do scret di root, ou tot l' minme li kéne råjhon).\n"
"\n"
"Si vos djhoz «Oyi», i vos srè dmandé di mete ene plakete dins l' lijheu.\n"
"Li plakete doet esse vude oudonbén aveur des informåcions ki polèt esse\n"
"disfacêyes. I gn a nén mezåjhe ki vos l' abwesnîz, ca DrakX va riscrire\n"
"totafwait li plactêye."

#: ../../help.pm:1
#, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
"\n"
"If there are other operating systems installed on your machine they will\n"
"automatically be added to the boot menu. You can fine-tune the existing\n"
"options by clicking \"Add\" to create a new entry; selecting an entry and\n"
"clicking \"Modify\" or \"Remove\" to modify or remove it. \"OK\" validates\n"
"your changes.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone who goes to the console and reboots the machine. You can delete the\n"
"corresponding entries for the operating systems to remove them from the\n"
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
"Dispoy aveur apontyî les parametes djenerås di l' enondrece, li djivêye\n"
"des tchuzes d' enondaedje ki sront disponibes å moumint d' l' enondaedje\n"
"vont esse håynêyes.\n"
"\n"
"S' i gn a des ôtes sistinmes d' operance d' astalés so voste éndjole\n"
"i sront otomaticmint radjoutés å menu d' l' enondrece. Vos ploz apontyî\n"
"pus spepieuzmint les tchuzes tot clitchant so «Radjouter» po fé ene novele\n"
"intrêye; tchoezi ene intrêye k' i gn a eyet clitchî so «Candjî» oudonbén\n"
"so «Oister» pol candjî ou l' disfacer. «'l est bon» po-z acertiner vos\n"
"candjmints et les scrire sol deure plake.\n"
"\n"
"Motoit k' vos n' vôrîz nén dner accès a ces ôtes sistinmes d' operance\n"
"a tot l' minme kî ki pôreut aveur accès al conzôle eyet renonder l' éndjole\n"
"Vos ploz disfacer les intrêyes corespondantes po k' ele n' aparexhe pus\n"
"dins l' menu d' l' enondrece, mins vos åroz adon mezåjhe d' ene plakete\n"
"d' enondaedje po pleur enonder ces sistinme d' operance la!"

#: ../../help.pm:1
#, c-format
msgid ""
"This dialog allows to finely tune your bootloader:\n"
"\n"
" * \"Bootloader to use\": there are three choices for your bootloader:\n"
"\n"
"    * \"GRUB\": if you prefer grub (text menu).\n"
"\n"
"    * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
"    * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": after a boot or a reboot of\n"
"the computer, this is the delay given to the user at the console to select\n"
"a boot entry other than the default.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
"\"Skip\"), you must ensure that you have a way to boot your Mandrake Linux\n"
"system! Be sure you know what you do before changing any of the options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
"that are reserved for the expert user."
msgstr ""
"Ci purnea chal vos permete d' apontyî spepiuzmint voste enondrece:\n"
"\n"
" * «Enondrece a-z eployî»: vos avoz troes tchuzes:\n"
"\n"
"    * «GRUB»: si vos voeyoz pus voltî grub (menu tecse).\n"
"\n"
"    * «LILO avou on menu e môde tecse»: si vos voeyoz pus voltî LILO avou\n"
"si eterface di menus e môde tecse.\n"
"\n"
"    * «LILO avou on menu grafike»: si vos voeyoz pus voltî LILO avou\n"
"si eterface di menus grafikes.\n"
"\n"
" * «Éndjin d' enondaedje»: dins l' plupårt des cas, vos n' duvoz nén\n"
"candjî li prémetou éndjin («/dev/hda»), mins si vos l' voloz, l' enondrece\n"
"pout esse astalêye sol deujhinme deure plake («/dev/hdb») ou minme\n"
"so ene plakete («/dev/fd0»);\n"
"\n"
" * «Tins divant d' enonder li prémetowe imådje»: cwand li copiutrece est\n"
"renondêye, c' est l' tins a leyî po l' uzeu poleur candjî l' tchuze\n"
"do sistinme d' operance a-z enonder dins l' menu di l' enondrece.\n"
"\n"
"!! Atincion ki si vos tchoezixhoz di n' nén astaler d' enondrece (si vos\n"
"clitchîz so «Passer hute» chal), vos vos dvoz acertiner d' aveur on moyén\n"
"d' enonder vosse sistinme Mandrake Linux! Ossu, i vs fåt bén esse seur\n"
"di çou k' vos fjhoz dvant d' candjî les tchuzes. !!\n"
"\n"
"Si vos clitchîz sol boton «Sipepieus» di ç' purnea chal, vos åroz\n"
"sacwantès tchuzes di pus, ki sont po des uzeus pus avancîs."

#: ../../help.pm:1
#, c-format
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"Root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
"guess - DrakX will tell you if the password that you chose too easy. As you\n"
"can see, you are not forced to enter a password, but we strongly advise you\n"
"against. GNU/Linux is as prone to operator error as any other operating\n"
"system. Since \"root\" can overcome all limitations and unintentionally\n"
"erase all data on partitions by carelessly accessing the partitions\n"
"themselves, it is important that it be difficult to become \"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 too\n"
"easy to compromise a system.\n"
"\n"
"One caveat -- do not make the password too long or complicated because you\n"
"must be able to remember it!\n"
"\n"
"The password will not be displayed on screen as you type it in. To reduce\n"
"the chance of a blind typing error you will need to enter the password\n"
"twice. If you do happen to make the same typing error twice, this\n"
"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
"If you wish access to this computer to be controlled by an authentication\n"
"server, click the \"Advanced\" button.\n"
"\n"
"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
"services, select the appropriate one as \"authentication\". If you do not\n"
"know which to use, ask your network administrator.\n"
"\n"
"If you happen to have problems with reminding passwords, you can choose to\n"
"have \"No password\", if your computer won't be connected to the Internet,\n"
"and if you trust anybody having access to it."
msgstr ""
"Çouchal c' est li pus consecante decision pol såvrité di vosse sistinme\n"
"GNU/Linux: vos dvoz dner li scret po «root». «root» est li manaedjeu\n"
"do sistinme eyet l' seu otorijhî a fé des metaedjes adjoû, radjouter\n"
"des uzeus, candjî l' apontiaedje djenerå do sistinme, evnd. Po fé court,\n"
"«root» pout fé ttafwait! C' est po çoula k' i vs fåt bén tchoezi li scret\n"
"di «root», onk ki soeye målåjhey a trover - DrakX vos dirè s' il est trop\n"
"åjhey. Come vos l' poloz vey, vos avoz l' tchuze di n' nén dner di scret,\n"
"mins nos nel consians nén; «root» pout tot fé, çoula vout dire eto k' i "
"pout\n"
"disfacer -- minme sins l' voleur -- tot çou k' i gn a so les deurès\n"
"plakes, minme so les pårticions d' ôtes sistinmes d' operance; i våt mî\n"
"n' eployî l' conte «root» ki vormint cwand nd a mezåjhe, et po çoula\n"
"våt mî nén rinde l' accès å conte trop åjhey.\n"
"\n"
"Li scret dvreut maxhî des letes et des chifes ey esse 8 caracteres long.\n"
"Ni scrijhoz måy li scret di «root» ene sawice - c' est on trop grand\n"
"risse po vosse sistinme.\n"
"\n"
"Mins nerén, nel fijhoz nén trop long ou trop målåjhey ki vos n' arivez\n"
"nén a vos l' rimimbrer!\n"
"\n"
"Li scret ni srè nén håyné sol waitroûle cwand vos l' tapez, po çoula vos\n"
"dvoz l' diner deus cops, po bén l' acertiner et k' i gn åye moens di\n"
"fé ene flotche tot l' tapant. Si vos tapez deus côps avou l' minme\n"
"flotche, si srè ci scret «incorek» la k' i vs fårè dner l' côp ki vént.\n"
"\n"
"E môde sipepieus, on vs dimandrè si vos vloz vos raloyî a on sierveu\n"
"d' otintifiaedje, come NIS ou LDAP.\n"
"\n"
"Si vosse rantoele eploye li protocole LDAP (ou NIS) po l' otintifiaedje,\n"
"tchoezixhoz «LDAP» (ou «NIS») come moyén d' otintifiaedje.\n"
"Si vos n' savoz nén, dimandez a l' administrateu del rantoele locåle.\n"
"\n"
"Si vos avoz des rujhes po vs rimimbrer les screts, vos ploz tchoezi di\n"
"n' eployî «Nou scret», si voste éndjole n' est nén raloyeye al daegntoele\n"
"et si vos avoz fiyate a totes les djins k' ont accès al copiutrece."

#: ../../help.pm:1
#, c-format
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
"Tchoezixhoz li bon pôrt.  Metans: li pôrt «COM1» dzo MS Windows si lome\n"
"«ttyS0» dzo GNU/Linux."

#: ../../help.pm:1
#, 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 ``pressed'' 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 for some reason you wish to specify a different type of mouse, select it\n"
"from the provided list.\n"
"\n"
"If you choose a mouse other than the default, 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 to\n"
"go back to the list of choices.\n"
"\n"
"Wheel mice are occasionally 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 \"Next ->\" button, a mouse image is displayed on-screen.\n"
"Scroll the mouse wheel to ensure that it is activated correctly. Once you\n"
"see the on-screen scroll wheel moving as you scroll your mouse wheel, test\n"
"the buttons and check that the mouse pointer moves on-screen as you move\n"
"your mouse."
msgstr ""
"D' acostumance, DrakX n' a nole rujhe po trover l' nombe di botons di\n"
"vosse sori. S' i n' trove nén, i pinsrè ki vos avoz ene sori di deus\n"
"botons, et va mete en alaedje l' emulåcion do troejhinme boton. DrakX\n"
"sårè otomaticmint si vosse sori est ene sori PS/2, séreye oudonbén USB.\n"
"\n"
"Si vos vloz defini ene sôre di sori diferinne, tchoezixhoz li sôre k' i fåt "
"el djivêye.\n"
"\n"
"Si vos fjhoz ene tchuze diferinne del prémetowe, DrakX vos mosterrè on\n"
"purnea po sayî l' sori. Sayîz les botons et li rôlete po vey si tot va\n"
"comufåt. Si l' sori ni rote nén comufåt, tapez so l' espace, oudonbén so\n"
"RETURN po rivni èn erî eyet ndè tchoezi ene ôte.\n"
"Des côps k' i gn a, les soris a rôlete èn sont nén detectêyes otomaticmint\n"
"et vos dvroz l' tchoezi dins ene djivêye. Acertinez vs di tchoezi l' cene\n"
"ki coresponde å pôrt ki vosse sori est raloyeye. Après aveurtchoezi ene "
"sori\n"
"eyet clitchî sol boton «Shuvant», ene imådje d' ene sori est håynêye el\n"
"waitroûle. Fijhoz bodjî l' rôlete po verivyî k' ele rote comufåt.\n"
"On côp ki vos voeyoz l' imådje del rôlete sol waitroûle ki bodje del minme\n"
"manire ki vos fjkhoz bodjî l' rôlete, sayîz les botons eyet vey si\n"
"l' cursoe shût bén les movmints del sori."

#: ../../help.pm:1
#, c-format
msgid ""
"Your choice of preferred language will affect the language of the\n"
"documentation, the installer and the system in general. Select first the\n"
"region you are located in, and then the language you speak.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
"languages to be installed on your workstation, thereby installing the\n"
"language-specific files for system documentation and applications. For\n"
"example, if you will host users from Spain on your machine, select English\n"
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
"Note that you're not limited to choosing a single additional language. Once\n"
"you have selected additional locales, click the \"Next ->\" button to\n"
"continue.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
"language used by the entire system. Running the command as a regular user\n"
"will only change the language settings for that particular user."
msgstr ""
"Tchoezixhoz l' lingaedje ki vos vloz eployî po l' astalaedje et come "
"prémetou lingaedje do sistinme. Ci srè l' lingaedje eployî pol "
"documintåcion, l' astalaedje, eyet l' sistinme e djenerå.\n"
"Les lingaedjes sont rgroupés pa grandès redjons del Daegn po-z aveur des "
"rîlêyes di lingaedjes pus coûtes.\n"
"\n"
"Si vos clitchîz so «Sipepieus» vos pôroz tchoezi d' aveur do sopoirt po ds "
"ôtes lingaedjes avou. Cwand vos tchoezixhoz on ôte lingaedje les fitchîs "
"specifikes po ci lingaedje la (ratournaedjes, aidance, documintåcions, "
"coridjreces,...) sront astalés. Par egzimpe, si vos alez aveur so voste "
"éndjole on uzeu ki vént del Sipagne, clitchîz sol sitoele boesse a clitchî "
"ki mostere «Español» dins l' djivêye.\n"
"\n"
"Notez ki vos ploz astaler li sopoirt po bråmint des lingaedjes et nén "
"seulmint onk. Si vos les vloz tos (tos les cis sopoirtés pol moumint, come "
"di djusse), clitchîz sol sitoele «Tos» al difén del djivêye. Cisse tchuze la "
"est ahessåve po ene éndjole ki srè eployeye pa des djins di tolminme ké "
"payis.\n"
"\n"
"On côp ki vos avoz tchoezi les locåles ki vos vloz, clitchîz so «Shuvant» po "
"passer a l' étape shuvante.\n"
"Po candjî d' on lingaedje a l' ôte sol sistinme on côp astalé, vos ploz "
"enonder li comande «/usr/sbin/localedrake» come uzeu «root» po candjî li "
"prémetou lingaedje do sistinme; ou l' enonder come èn uzeu normå po candjî "
"les preferinces di lingaedje po cist uzeu la."

#: ../../help.pm:1
#, c-format
msgid ""
"Depending on the default language you chose in Section , DrakX will\n"
"automatically select a particular type of keyboard configuration. However,\n"
"you might not have a keyboard that corresponds exactly to your language:\n"
"for example, if you are an English speaking Swiss person, you may have a\n"
"Swiss keyboard. Or if you speak English but are located in Quebec, you may\n"
"find yourself in the same situation where your native language and keyboard\n"
"do not match. In either case, this installation step will allow you to\n"
"select an appropriate keyboard from a list.\n"
"\n"
"Click on the \"More \" button to be presented with the complete list of\n"
"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 that will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
"Sorlon li tchuze do lingaedje,  DrakX va tchoezi otomaticmint li bone "
"taprece por vos. Mins, i s' pout ki vos åyoxhe ene taprece diferinne: par "
"egzimpe, ene djin ki djåzreut inglès mins vicreut el Swisse, ele voreut "
"cwand minme ene swisse taprece. Oudonbén si vos avoz tchoezi l' walon mins "
"ki vos avoz ene taprece francesse ou qwerty purade k' ene taprece belje. "
"Dins les deus cas, vos pôroz candjî vosse tchuze a l' etape «Rascourti "
"éndjolreye» pus lon, et tchoezi l' cene ki vos vloz dins en ene djivêye.\n"
"\n"
"Clitchîz so «Co des ôtes» po-z aveur li djivêye etire di totes les tapreces "
"ki sont sopoirtêyes.\n"
"Si vos tchoezixhoz ene taprece po èn alfabet nén latén, li purnea shuvant "
"vos denrè l' tchuze des tapes a tchôkî po candjî inte l' alfabet latén eyet "
"l' taprece nén latene."

#: ../../help.pm:1
#, c-format
msgid ""
"This step is activated only if an old GNU/Linux partition has been found on\n"
"your machine.\n"
"\n"
"DrakX now needs to know if you want to perform a new install or an upgrade\n"
"of an existing Mandrake Linux system:\n"
"\n"
" * \"Install\": For the most part, this completely wipes out the old\n"
"system. If you wish to change how your hard drives are partitioned, or\n"
"change the file system, you should use this option. However, depending on\n"
"your partitioning scheme, you can prevent some of your existing data from\n"
"being over- written.\n"
"\n"
" * \"Upgrade\": this installation class allows you to update the packages\n"
"currently installed on your Mandrake Linux system. Your current\n"
"partitioning scheme and user data is not altered. Most of other\n"
"configuration steps remain available, similar to a standard installation.\n"
"\n"
"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
"Ciste etape est enondêye seulmint si ene viye pårticion GNU/Linux a stî\n"
"trovêye so voste éndjole.\n"
"\n"
"DrakX asteure a mezåjhe di saveur si vos vloz fé ene novele astalåcion\n"
"oudonbén fé on metaedje a djoû d' on sistinme Mandrake Linux k' i gn a\n"
"ddja sol plake:\n"
"\n"
" * «Astalaedje»: çouchal va spotchî ttafwait l' vî sistinme k' i gn\n"
"aveut sol plake. Si vos vloz candjî l' manire ki vos deurès plakes sont\n"
"pårteyes, oudonbén candjî li sistinme di fitchîs, vos dvrîz tchoezi\n"
"çouchal. Sorlon vosse pårtixhaedje, si vos avoz « /home » so ene\n"
"pårticion da sinne metans, vos ploz wårder on boket di vos dnêyes\n"
"ki n' seront nén spotcheyes.\n"
"\n"
" * «Metaedje a djoû»: cisse classe d' astalaedje chal vos permete di\n"
"mete a djoû les pacaedjes k' i gn a so vosse sistinme Mandrake Linux.\n"
"Vosse pårtixhaedje est wårdé et les dnêyes des uzeus n' sont nén\n"
"candjeyes. Li plupårt des ôtès etapes d' apontiaedje dimorèt, come\n"
"pol cas d' èn astalaedje sitandård.\n"
"\n"
"Eployî l' tchuze «Metaedje a djoû» rote comufåt po mete a djoû des\n"
"sistinmes Mandrake Linux modêye «8.1» ou pus nouve. Mins l' fé po\n"
"des modêyes di Mandrake Linux pus viyes kel «8.1» n' est nén ricmandé."

#: ../../help.pm:1
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
"country, click on the button and choose another one."
msgstr ""
"«Payis»: verifyîz ki l' tchuze est bén l' bone. Si vos dmeurez dins\n"
"èn ôte payis, clitchîz sol boton po ndè tchoezi èn ôte."

#: ../../help.pm:1
#, c-format
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
"Mandrake 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 ""
"Chal pa dzeur i gn a ene djivêye des pårticions Windows k' i gn a so vosse "
"deure plake et ki on stî detectêyes. Tchoezixhoz li cene ki vos vloz candjî "
"si grandeu, s' i vs plait.\n"
"\n"
"Pol informåcion, tchaeke pårticion est mostrêye come çoula:\n"
"«no Linux», «no Windows», «grandeu».\n"
"\n"
"Li «no Linux» est costrût come çouchal:\n"
"«sôre del deure plake» + «limero del deure plake» + «limero del "
"pårticion» (par egzimpe, hd+a+1 --> «hda1»)\n"
"\n"
"Li «sôre del deure plake» est «hd» si vosse deure plake est del sôre IDE, "
"oudonbén «sd» si elle est del sôre SCSI.\n"
"\n"
"Li «limero del deure plake» est todi ene lete pa drî «hd» ou «sd».\n"
"Avou les plakes IDE on a:\n"
"\n"
"   * «a» pol plake mwaisse sol prumî controleu IDE,\n"
"\n"
"   * «b» pol plake esclave sol prumî controleu IDE,\n"
"\n"
"   * «c» pol plake mwaisse sol deujhinme controleu IDE,\n"
"\n"
"   * «d» pol plake esclave sol deujhinme controleu IDE.\n"
"\n"
"\n"
"Avou les plakes SCSI, «a» vout dire «prumire deure plake», «b» vout dire "
"«deujhinme deure plake», evnd...\n"
"\n"
"Li «no Windows» est li lete ki Windows eploye po-z idintifyî li pårticion "
"(par egzimpe li prumire pårticion Windows del prumire deure plake est lomêye "
"«C:»)."

#: ../../help.pm:1
#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or from 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"
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive\n"
"\n"
" * \"Auto allocate\": this option enables you to automatically create ext3\n"
"and swap partitions in free space of your hard drive\n"
"\n"
"\"More\": gives access to additional features:\n"
"\n"
" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
"for later partition-table recovery, if necessary. It is strongly\n"
"recommended that you perform this step.\n"
"\n"
" * \"Restore partition table\": allows you to restore a previously saved\n"
"partition table from a floppy disk.\n"
"\n"
" * \"Rescue partition table\": if your partition table is damaged, you can\n"
"try to recover it using this option. Please be careful and remember that it\n"
"doesn't always work.\n"
"\n"
" * \"Reload partition table\": discards all changes and reloads the\n"
"partition table that was originally on the hard drive.\n"
"\n"
" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
"your hard drive. This is recommended if you do not have a good\n"
"understanding of partitioning.\n"
"\n"
" * \"Undo\": use this option to cancel your changes.\n"
"\n"
" * \"Toggle to normal/expert mode\": allows additional actions on\n"
"partitions (type, options, format) and gives more information about the\n"
"hard drive.\n"
"\n"
" * \"Done\": 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 ""
"Chal, vos dvoz tchoezi so kéne/kénès pårticion(s) ki vos voloz astaler\n"
"vosse sistinme Mandrake Linux. Si vos pårticions ont ddja stî fwaites\n"
"(p. egz. li dierin côp ki vos avoz astalé GNU/Linux ou bén avou ene ôte\n"
"usteye di pårtixhaedje), vos les ploz eployî. Ôtrumint, des pårticions dvèt\n"
"esse defineyes so vosse deure plake. Ça vout dire ki vos alez dispårti\n"
"lodjicmint li deure plake di voste éndjole e diferinnes coines separêyes\n"
"di ene l' ôte.\n"
"\n"
"Po fé les pårticions, vos dvoz d' aprume tchoezi li plake a pårti e\n"
"clitchant so «hda» pol prumire plake IDE, «hdb» pol deujhinme, «sda» pol \n"
"prumire plake SCSI, et vos nd åroz.\n"
"\n"
"Pol pårtixhaedje del deure plake tchoezeye, vos ploz prinde ene di ces\n"
"tchuzes chal:\n"
"\n"
"   * Tot netyî: cisse tchuze va disfacer totes les pårticions k' i gn a sol "
"tchoezeye deure plake.\n"
"\n"
"   * Grandeu otomatike: cisse tchuze va fé des pårticions Ext2 pol sistinme "
"et ene di swap e prindant li plaece di libe k' i gn a sol deure plake et "
"carculant otomaticmint li grandeu li meyeuse.\n"
"\n"
"«Co ds ôtes» dene des ôtes tchuzes, pus spepieuses:\n"
"\n"
"   * Schaper li tåvlea di pårtixhaedje: po schaper li tåvlea di "
"pårtixhaedje\n"
"so ene plakete. Ahessåve pol poleur rapexhî pus tård, s' i fåt.\n"
"C' est hôtmint ricmindé del fé.\n"
"\n"
"   * Rimete li tåvlea di pårtixhaedje come divant: vos permete di rapexhî\n"
"on tåvlea di pårtixhaedje k' a stî schapé so plakete d' avace.\n"
"\n"
"   * Rapexhî li tåvlea di pårtixhaedje: si vosse tåvlea di pårtixhaedje est "
"crombe, vos ploz sayî del rapexhî avou cisse tchuze chal. Prindoz asteme et "
"rimimbrez vs ki çoula pout ni nén roter a tos les côps.\n"
"\n"
"   * Ritcherdjî li tåvlea di pårtixhaedje: Cisse tchuze chal c' est si vos\n"
"vloz disfé tos les candjmints et tcherdjî vosse tåvlea di pårtixhaedje\n"
"di dpårt.\n"
"\n"
"   * Montaedje otomatike des sopoirts bodjåves: disclitchîz cisse tchuze\n"
"chal si vos n' voloz nén ki les bodjåves sopoirts (plakes lazer,\n"
"plaketes,...) soeyexhe montés otomaticmint mins l' fé al mwin.\n"
"\n"
"   * Macrea: Si vos vloz aveur l' aidance d' on macrea po fé li pårtixhaedje "
"del deure plake, vos ploz tchoezi cisse tchuze chal. Ele est ricomandêye si "
"vos n' estoz nén on spepieus e pårtixhaedje.\n"
"\n"
"   * Disfé: clitchîz so ci boton la po disfé tos vos candjmints.\n"
"\n"
"   * Candjî pol môde normå/spepieus: vos dene des ôtès tchuzes po les\n"
"pårticions (sôre, tchuzes, abwesnaedje) eyet dene pus d' informåcions\n"
"sol deure plake.\n"
"\n"
"   * Fwait: on côp ki vos avoz fini li pårtixhaedje del deure plake, "
"tchoezixhoz çouchal po schaper po d' bon les candjmints.\n"
"\n"
"Cwand vos dnez l' grandeu del pårticion, vos l' poloz tchoezi finmint avou\n"
"les tapes fretches di vosse taprece.\n"
"Note: vos ploz tot fé pår avou l' taprece: naivyîz d' ene pårticion a l' ôte "
"avou li tape Tab et les fretches Up/Down.\n"
"\n"
"Cwand ene pårticion a stî tchoezeye, vos poloz fé:\n"
"\n"
"     * Ctrl-C  po fé ene novele pårticion (cwand c' est ene vude pårticion "
"k' a stî tchoezeye)\n"
"\n"
"     * Ctrl-d  po disfacer li pårticion\n"
"\n"
"     * Ctrl-m  po defini li pont di montaedje\n"
"\n"
"Po-z aveur des informåcions so les diferins sistinmes di fitchîs k' i gn a,\n"
"lijhoz li tchaptrea so «ext2FS» do «Manuel di Referince».\n"
"\n"
"Si vos alez astaler sor ene éndjole PPC, motoit ki vos voroz fé ene pitite "
"pårticion HFS «d' enondaedje» di 1 Mo å moens po l' eployî avou l' enondrece "
"«yaboot». Si vos decidez del fé on pô pus grande, par egzimpe 50 Mo, çoula "
"pôreut fé ene clapante plaece po-z î mete on nawea et ene imådje ramdisk po "
"des cas d' urdjince k' i gn åreut."

#: ../../help.pm:1
#, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level desired\n"
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
"chapter of the ``Command Line Manual'' to get more information about the\n"
"meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
"Chal, c' est po tchoezi l' livea di såvrité ki vos vloz po voste éndjole.\n"
"Ene rîle simpe c' est ki pus voste éndjole est egzposêye, pus les dnêyes\n"
"k' i gn a å dvins sont impôrtantes, pus li livea di såvrité doet esse hôt.\n"
"Mins ossu, on hôt livea di såvrité çoula vout dire ki c' est moens åjhey\n"
"d' eployî li copiutrece. Lijhoz li tchaptrea so «msec» el\n"
"«Manuel di Referince» po-z aveur pus d' informåcions so les diferins\n"
"liveas k' i gn a.\n"
"\n"
"Si vos n' savoz cwè tchoezi, leyîz li prémetou livea."

#: ../../help.pm:1
#, c-format
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
"Choosing \"Yes\" displays a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
"the selected package( s), or \"Cancel\" to abort."
msgstr ""
"Å moumint ki vos astalez Mandrake Linux, i s' pout bén k' i gn åye\n"
"des pacaedjes k' ont stî metous a djoû dispoy li moumint do fijhaedje\n"
"del distribucion. Motoit k' des bugs ont stî coridjîs, ou des problinmes\n"
"di såvrité. Por vos profiter di ces metaedjes a djoû, on vs propôze\n"
"d' aberweter di so l' daegntoele les metaedjes a djoû k' i pout gn aveur.\n"
"Tchozixhoz «Oyi» si vos avoz on raloyaedje al daegntoele en alaedje, ou\n"
"«Neni» si vos inmez mî d' ratinde et fé les metaedjes a djoû pus tård.\n"
"\n"
"Si vos tchoezixhoz «Oyi», i gn årè ene djivêye des plaeces di wice k' on\n"
"pout prinde les metaedjes a djoû ki vs serè mostrêye. Tchoezixhoz li plaece\n"
"li pus près d' vos. Adonpu, èn åbe di tchoezixhaedje des pacaedjes\n"
"aparetrè: verifyîz l' tchuze, et clitchîz so «Astaler» po-z aberweter\n"
"ey astaler les tchoezi(s) pacaedje(s), oudonbén clitchîz so «Rinoncî»\n"
"po leyî ouve."

#: ../../help.pm:1
#, c-format
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a file system).\n"
"\n"
"At this time, you may wish to reformat some already existing partitions to\n"
"erase any data they contain. If you wish to do that, please select those\n"
"partitions as well.\n"
"\n"
"Please note that it is 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\n"
"reformat partitions containing data that you wish to keep (typically\n"
"\"/home\").\n"
"\n"
"Please be careful when selecting partitions. After formatting, all data on\n"
"the selected partitions will be deleted and you will not be able to recover\n"
"it.\n"
"\n"
"Click on \"Next ->\" when you are ready to format partitions.\n"
"\n"
"Click on \"<- Previous\" if you want to choose another partition for your\n"
"new Mandrake Linux operating system installation.\n"
"\n"
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
"I gn a mezåjhe, po les pleur eployî, d' abwesner les pårticions ki vnèt\n"
"d' esse askepieyes (abwesner vout dire fé on sistinme di fitchîs).\n"
"\n"
"Asteure, vos vloz motoit ossu rabwesner des pårticions k' egzistèt ddja,\n"
"po disfacer çou k' ele ont å dvins et raveur del plaece. Si vos vloz fé\n"
"çoula, i vs fåt tchoezi eto les pårticions ki vos vloz rabwesner.\n"
"\n"
"Notez ki c' est nén mezåjhe di rabwesner totes les pårticions k' egzistèt\n"
"ddja. I vs fåt seulmint rabwesner les pårticions ki vos î copeyroz li\n"
"sistinme d' operance (dj' ô bén, les pårticions ki sront montêyes\n"
"come « / », « /usr » ou « /var  ») mins vos n' dvoz nén l' fé\n"
"po les pårticions k' ont les dnêyes (tipicmint « /home »).\n"
"\n"
"Fijhoz bén atincion å moumint d' tchoezi les pårticions.\n"
"On côp l' abwesnaedje fwait, totes les dnêyes del pårticion sront\n"
"pierdowes; vos n' les pôroz nén rapexhî.\n"
"\n"
"Clitchîz so «Shuvant» cwand vos estoz presse po l' abwesnaedje des\n"
"pårticions.\n"
"\n"
"Clitchîz so «Di dvant» si vos vloz tchoezi ene ôte pårticion po-z astaler\n"
"vosse novea sistinme d' operance Mandrake Linux.\n"
"\n"
"Clitchîz so «Sipepieus» si vos vloz tchoezi les pårticions ki sront\n"
"verifieyes po vey s' i gn a des måvas blocs sol deure plake."

#: ../../help.pm:1
#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
"you should see after your computer has finished doing its hardware tests is\n"
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
"operator, similar to the installation you just configured.\n"
"\n"
"   Note that two different options are available after clicking the button:\n"
"\n"
"    * \"Replay\". This is a partially automated installation. The\n"
"partitioning step is the only interactive procedure.\n"
"\n"
"    * \"Automated\". Fully automated installation: the hard disk is\n"
"completely rewritten, all data is lost.\n"
"\n"
"   This feature is very handy when installing a number of similar machines.\n"
"See the Auto install section on our web site for more information.\n"
"\n"
" * \"Save packages selection\"(*): saves a list of the package selected in\n"
"this installation. To use this selection with another installation, insert\n"
"the floppy and start the installation. At the prompt, press the [F1] key\n"
"and type >>linux defcfg=\"floppy\" <<.\n"
"\n"
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
"Vo nos la. L' astalåcion a stî fineye et asteure vosse sistinme GNU/Linux\n"
"est presse a-z esse eployî. Vos n' avoz k' a clitchî sol boton «Shuvant»\n"
"po renonder l' éndjole.\n"
"Vos ploz enonder avou GNU/Linux ou Windows, li ci k' vos vloz (si vos avoz\n"
"les deus sistinmes d' operance so l' éndjole), ossu rade ki l' copiutrece\n"
"årè renondé si éndjolreye.\n"
"\n"
"Li boton «Sipepieus» (e môde sipepieus seulmint) mostere deus ôtes botons:\n"
"\n"
" * «Fé li plakete d' astalaedje otomatike»: po fé ene plakete ki vs\n"
"permetrè di fé ene ôte astalåcion pareye al cene ki vos vnoz d' fé,\n"
"mins di manire otomatike, sins mezåjhe d' ene djin po fé les tchuzes.\n"
"\n"
"  Notez k' i gn a co deus ôtes tchuzes on côp ki vos avoz clitchî ç' boton "
"la:\n"
"\n"
"    * «Rifé». Po ene astalåcion dimey-otomatike, l' etape do pårtixhaedje\n"
"(et seulmint cisse etape la) dimorant eteractive;\n"
"\n"
"    * «Otomatike». Astalåcion ttafwaitmint otomatike: li deure plake est\n"
"completmint riscrîte et rpårteye, totes les dnêyes k' i gn aveut sront\n"
"pierdowes.\n"
"\n"
"   Cisse fonccionålité la est foirt ahessåve po-z astaler so on grand nombe\n"
"d' éndjoles similaires. Loukîz eto li seccion so l' Oto-astalaedje sol\n"
"waibe da nosse;\n"
"\n"
" * «Schaper li tchuze des pacaedjes»(*): schapeye li tchuze des pacaedjes\n"
"k' a stî fwaite tins di l' astalaedje. Adonpu, cwand vos froz ene nouve\n"
"astalåcion, metoz l' plakete dins l' lijheu et-z enonder l' astalaedje\n"
"tot-z alant sol waitroûle d' aidance (tchoûkîz sol tape [F1]), et s' taper\n"
"« linux defcfg=\"floppy\" » sol roye d' intrêye.\n"
"\n"
"(*) I vs fåt ene plakete FAT-abwesnêye (po ndè fé ene a pårti di GNU/Linux,\n"
"tapez « mformat a: » sol roye di comande)."

#: ../../help.pm:1
#, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
"if an existing operating system is using all the available space you will\n"
"have to partition the drive. Basically, partitioning a hard drive consists\n"
"of logically dividing it to create the space needed to install your new\n"
"Mandrake Linux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to lost data if there is an existing operating system already\n"
"installed on the drive, partitioning can be intimidating and stressful if\n"
"you are an 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 your hard drive configuration, several options are available:\n"
"\n"
" * \"Use free space\": this option will perform an automatic partitioning\n"
"of your blank drive(s). If you use this option there will be no further\n"
"prompts.\n"
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option. You will then be asked to choose the mount points associated with\n"
"each of the partitions. The legacy mount points are selected by default,\n"
"and for the most part it's a good idea to keep them.\n"
"\n"
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
"strongly recommended.. Using this option is recommended if you want to use\n"
"both Mandrake Linux and Microsoft Windows on 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"
"then when you started. You will have less free space under Microsoft\n"
"Windows to store your data or to install new software.\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
"system, choose this option. Be careful, because you will not be able to\n"
"undo your choice after you confirm.\n"
"\n"
"   !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"Remove Windows\": this will simply erase everything on the drive and\n"
"begin fresh, partitioning everything from scratch. All data on your disk\n"
"will be lost.\n"
"\n"
"   !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Custom disk partitionning\": choose this option if you want to\n"
"manually partition your hard drive. Be careful -- it is a powerful but\n"
"dangerous choice and you can very easily lose all your data. That's why\n"
"this option is really only recommended if you have done something like this\n"
"before and have some experience. For more instructions on how to use the\n"
"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
"the ``Starter Guide''."
msgstr ""
"Asteure, vos dvoz tchoezi wice ki vos vloz astaler vosse sistinme\n"
"d' operance Mandrake Linux so vosse deure plake. Si l' plake est vude,\n"
"ou si les sistinmes d' operance k' i gn a ddja prindèt tote li plaece,\n"
"vos avoz mezåjhe del pårti. Fé on pårtixhaedje d' ene deure plake çoula\n"
"vout dire del pårti lodjicmint po fé del plaece po-z astaler vosse novea\n"
"sistinme Mandrake Linux.\n"
"\n"
"Come, on côp ki li pårtixhaedje est fwait, on n' sait rivni en erî\n"
"(normålmint), les apurdisses ont sovint sogne ou peu di s' enonder.\n"
"Awoureuzmint, i gn a on macrea ki vs aidrè po l' fé.\n"
"Tapez on côp d' ouy sol documintåcion et purdoz vosse tins.\n"
"\n"
"Si vos avoz enondé l' astalaedje e môde sipepieus, vos alez intrer el\n"
"usteye di pårtixhaedje di Mandrake Linux: li DiskDrake. Avou lu vos ploz\n"
"apontyî foirt sipepieuzmint vos pårticions. Loukîz å tchaptrea so DiskDrake\n"
"del documintåcion k' esplike kimint l' eployî comufåt. Vos ploz ossu\n"
"eployî les macreas, po çoula clitchîz sol boton «Macrea» del usteye di "
"pårtixhaedje.\n"
"\n"
"Sorlon l' apontiaedje di vosse deure plake, pluzieurès solucions\n"
"sont possibes:\n"
"\n"
" * Eployî l' plaece libe: çouchal frè tot simplumint on pårtixhaedje\n"
"otomatike del plaece vude so les deures plakes da vosse;\n"
"vos n' avoz a vos prewocuper di rén après.\n"
"\n"
" * Eployî les pårticions k' i gn a: li macrea a detecté ene ou pus di\n"
"pårticions Linux k' egzistèt ddja so vosse deure plake.\n"
"Si vos les vloz wårder, prindoz cisse tchuze chal. \n"
"\n"
" * Eployî l' plaece libe sol pårticion Windows: si Microsoft Windows est\n"
"astalé so vosse deure plake et s' i prind tote li plaece k' i gn a,\n"
"vos dvoz fé del plaece libe po les dnêyes di Linux. Po çoula vos ploz\n"
"disfacer li pårticion Microsoft Windows et totes ses dnêyes (veyoz les\n"
"solucions «Disfacer li plake etire» ou «Môde sipepieus») oudonbén raptixhî\n"
"vosse pårticion Microsoft Windows.\n"
"Li candjmint d' grandeu des pårticions si pout fé sins piede des dnêyes,\n"
"a condicion del disfragminter d' aprume, eyet kel pårticion soeye ene\n"
"pårticion FAT. C' est hôtmint ricmandé di fé ene copêye di såvrité.\n"
"Cisse solucions est ricmindêye si vos vloz eployî Mandrake Linux et\n"
"Microsoft Windows sol minme copiutrece.\n"
"\n"
"Divant di tchoezi cisse solucion, i vos fåt comprinde kel grandeu di vosse\n"
"pårticion Microsoft Windows srè pus ptite ki çk' ele est asteure.\n"
"Dj' ô bén, vos åroz moens di plaece libe so Microsoft Windows po wårder\n"
"les dnêyes da vosse ou astaler des noveas programes.\n"
"\n"
" * Disfacer li plake etire: si vos vloz disfacer totes les dnêyes k' i gn a\n"
"so vosse deure plake po mete el plaece li sistinme Mandrake Linux,\n"
"vos ploz tchoezi cisse tchuze chal.\n"
"Prindoz asteme k' avou cisse solucion chal vos n' pôroz nén rivni en erî\n"
"on côp ki vos avoz acertiné vosse tchuze.\n"
"\n"
"  !! Avou cisse tchuze chal, totes les dnêyes del deure plake sront "
"pierdowes !!\n"
"\n"
" * Bodjî Windows(tm) foû: çouchal va simplumint disfacer ttafwait sol\n"
"deure plake eyet cmincî on novea pårtixhaedje. Totes les dnêyes sol\n"
"deure plake vont esse pierdowes.\n"
"\n"
"  !! Avou cisse tchuze chal, Tot çk' i gn a el deure plake srè pierdou. !!\n"
"\n"
" * Pårtixhaedje da vosse del deure plake: si vos vloz fé manuwelmint\n"
"li pårtixhaedje del deure plake, vos ploz tchoezi çouchal.\n"
"Mins prindoz asteme, avou cisse solucion chal vos pôroz fé des poûxhantès\n"
"mins dandjureusès sacwès.\n"
"Vos ploz åjheymint piede totes vos dnêyes. Adon, ni tchoezixhoz nén\n"
"çouchal, a moens di vormint saveur çou k' vos fjhoz.\n"
"Po pus di racsegnes sol manire d' eployî  l' usteye DrakDisk,\n"
"loukîz li seccion «Manaedjî vos pårticions» do manuel."

#: ../../help.pm:1
#, c-format
msgid ""
"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
"handy.\n"
"\n"
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
"least two situations where having a boot floppy is critical:\n"
"\n"
" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
"of your main disk (unless you are using another boot manager), to allow you\n"
"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
"your system). If at some point you need to reinstall Windows, the Microsoft\n"
"install process will rewrite the boot sector and remove your ability to\n"
"start GNU/Linux!\n"
"\n"
" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
"fair number of system tools for restoring a system that has crashed due to\n"
"a power failure, an unfortunate typing error, a forgotten root password, or\n"
"any other reason.\n"
"\n"
"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
"floppy disk must be blank or have non-critical data on it - DrakX will\n"
"format the floppy and will rewrite the whole disk."
msgstr ""
"Clitchî so «Fé ene plakete d' enondaedje» vos permete d' aveur ene\n"
"plake ki vos ploz enonder eyet rapexhî l' sistinme avou.\n"
"\n"
"Li plake lazer di Mandrake Linux a-st on môde rapexhaedje. Vos l' poloz\n"
"eployî tot-z enondant l' éndjole sol plake lazer eyet tchoukî sol tape\n"
"«F1» poy sicrire «rescue» sol roye d' intrêye. Mins si vosse copiutrece\n"
"ni sait nén enonder so ene plake lazer, vos dvrîz rvini vey l' aidance\n"
"po ciste etape dins deus ôtes situwåcions:\n"
"\n"
" * å moumint d' astaler l' enondrece, DrakX va riscrire li secteu\n"
"d' enondaedje (MBR) del mwaisse deure plake (a moens ki vos eployrîz ene\n"
"ôte enondrece) po vos poleur enonder ossu bén avou Windows k' avou\n"
"GNU/Linux (dins l' cas ki vos årîz Windows so l' éndjole, bén seur).\n"
"Si vos avoz mezåjhe di rastaler Windows, li processus d' astalåcion da\n"
"Microsoft va riscrire li secteu d' enondaedje, et vos n' pôroz pus\n"
"enonder GNU/Linux!\n"
"\n"
" * s' i gn a on problinme et ki vos n' savoz nén enonder GNU/Linux a\n"
"pårti del deure plake, cisse plakete serè li seu moyén d' enonder\n"
"GNU/Linux. Ele a å dvins sacwantès usteyes sistinme ki vs permetront\n"
"di fé des reparåcions sol sistinme (k' il åye divnou cromb cåze d' ene\n"
"côpeure electrike, d' ene aroke tot tapant ene comande, on roviaedje\n"
"do scret di root, ou tot l' minme li kéne råjhon).\n"
"\n"
"Si vos djhoz «Oyi», i vos srè dmandé di mete ene plakete dins l' lijheu.\n"
"Li plakete doet esse vude oudonbén aveur des informåcions ki polèt esse\n"
"disfacêyes. I gn a nén mezåjhe ki vos l' abwesnîz, ca DrakX va riscrire\n"
"totafwait li plactêye."

#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
"Al fén, on vos dmandrè si vos vloz kel eterface grafike soeye en alaedje\n"
"cwand l' éndjole est enondêye. Notez k' cisse kesse vos srè fwaite minme\n"
"si vos tchoezixhoz di n' nén sayî l' apontiaedje del cåte vidéyo.\n"
"Bén seur, si voste éndjole va-st ovrer come on sierveu, ou si vos n' arivez\n"
"nén a-z apontyî l' cåte vidéyo, vos ploz risponde «Neni»."

#: ../../help.pm:1
#, c-format
msgid ""
"In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
"S' i gn a des sierveus grafikes diferins po vosse cåte grafike, des cis\n"
"k' i gn a avou del acceleråcion 3D, des ôtes sins, on vs propôzrè di\n"
"tchoezi l' ci ki vs convént l' mî."

#: ../../help.pm:1
#, c-format
msgid ""
"Resolution\n"
"\n"
"   You can choose here resolutions and color depth between those available\n"
"for your hardware. Choose the one that best suit your needs (you will be\n"
"able to change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor."
msgstr ""
"Finté\n"
"\n"
"   Vos ploz tchoezi chal les fintés eyet nombe di coleurs emey les tchuzes\n"
"possibes po voste éndjolreye. Tchoezixhoz çou ki vs convént l' mî (vos\n"
"pôroz candjî çoula pus tård, après l' astalaedje, si vos vloz). Èn egzimpe\n"
"do tchoezi apontiaedje est håyné e l' waitroûle."

#: ../../help.pm:1
#, c-format
msgid ""
"Monitor\n"
"\n"
"   The installer can normally automatically detect and configure the\n"
"monitor connected to your machine. If it is not the case, you can choose in\n"
"this list the monitor you actually own."
msgstr ""
"Waitroûle\n"
"\n"
"    L' astalaeu fwait normålmint li deteccion eyet apontiaedje otomatike\n"
"del waitroûle raloyeye a voste éndjole. Si ça n' va nén tot seu, vos ploz\n"
"tchoezi vosse waitroûle dins ene djivêye."

#: ../../help.pm:1
#, 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 Mandrake Linux rely upon.\n"
"\n"
"You will be presented the list of different parameters to change to get an\n"
"optimal graphical display: Graphic Card\n"
"\n"
"   The installer can normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose in this list the card you actually own.\n"
"\n"
"   In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs.\n"
"\n"
"\n"
"\n"
"Monitor\n"
"\n"
"   The installer can normally automatically detect and configure the\n"
"monitor connected to your machine. If it is not the case, you can choose in\n"
"this list the monitor you actually own.\n"
"\n"
"\n"
"\n"
"Resolution\n"
"\n"
"   You can choose here resolutions and color depth between those available\n"
"for your hardware. Choose the one that best suit your needs (you will be\n"
"able to change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor.\n"
"\n"
"\n"
"\n"
"Test\n"
"\n"
"   the system will try to open a graphical screen at the desired\n"
"resolution. If you can see the message during the test and answer \"Yes\",\n"
"then DrakX will proceed to the next step. If you cannot see the message, it\n"
"means that some part of the autodetected configuration was incorrect and\n"
"the test will automatically end after 12 seconds, bringing you back to the\n"
"menu. Change settings until you get a correct graphical display.\n"
"\n"
"\n"
"\n"
"Options\n"
"\n"
"   You can here choose whether you want to have your machine automatically\n"
"switch to a graphical interface at boot. Obviously, you want to check\n"
"\"No\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""
"X (po Sistinme di Purneas X) est l' miercour di l' eterface grafike di\n"
"GNU/Linux, ki tos les evironmints grafikes (KDE, Gnome, AfterStep,\n"
"WindowsMaker, evnd.) ki vnèt avou Mandrake Linux end ont mezåjhe.\n"
"\n"
"Vos åroz ene djivêye des diferins parametes a candjî po-z aveur\n"
"voste eterface grafike a l' idêye:\n"
"\n"
"Cåte grafike\n"
"\n"
"   Li programe d' astalaedje fwait normålmint otomaticmint li deteccion\n"
"eyet l' apontiaedje del cåte grafike k' i gn a dins voste éndjole.\n"
"Si c' est nén l' cas, vos ploz tchozi e l' djivêye li cåte ki vos\n"
"avoz po d' bon.\n"
"\n"
"S' i gn a des sierveus grafikes diferins po vosse cåte grafike, des cis\n"
"k' i gn a avou del acceleråcion 3D, des ôtes sins, on vs propôzrè di\n"
"tchoezi l' ci ki vs convént l' mî.\n"
"\n"
"\n"
"\n"
"Waitroûle\n"
"\n"
"    L' astalaeu fwait normålmint li deteccion eyet apontiaedje otomatike\n"
"del waitroûle raloyeye a voste éndjole. Si ça n' va nén tot seu, vos ploz\n"
"tchoezi vosse waitroûle dins ene djivêye.\n"
"\n"
"\n"
"Finté\n"
"\n"
"   Vos ploz tchoezi chal les fintés eyet nombe di coleurs emey les tchuzes\n"
"possibes po voste éndjolreye. Tchoezixhoz çou ki vs convént l' mî (vos\n"
"pôroz candjî çoula pus tård, après l' astalaedje, si vos vloz). Èn egzimpe\n"
"do tchoezi apontiaedje est håyné e l' waitroûle.\n"
"\n"
"\n"
"Saye\n"
"\n"
"   Li sistinme sayrè d' enonder ene waitroûle grafike al finté dmandêye.\n"
"Si vos ploz vey li messaedje håyné tins del saye, clitchîz so «Oyi», eyet\n"
"DrakX pasrè a l' etape shuvante. Si vos n' savoz vey li messaedje, çoula\n"
"vout dire k' ene sacwè n' a nén stî avou l' apontiaedje, eyet l' saye\n"
"si va djoker après 12 segondes, vos ramoennant å menu. Vos î pôroz candjî\n"
"les valixhances disk' a-z aveur ene eterface grafike ki rote comufåt.\n"
"\n"
"\n"
"\n"
"Tchuzes\n"
"\n"
"   Chal vos ploz tchoezi si vos vloz ou nén ki l' éndjole enonde\n"
"otomaticmint l' eterface grafike a l' enondaedje. Bén seur, vos aloz\n"
"dire «Neni» si voste éndjole va fé do sierveu, ou si vos n' avoz nén\n"
"polou apontyî comufåt l' eterface grafike."

#: ../../help.pm:1
#, c-format
msgid ""
"Graphic Card\n"
"\n"
"   The installer can normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose in this list the card you actually own.\n"
"\n"
"   In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
"Cåte grafike\n"
"\n"
"   Li programe d' astalaedje fwait normålmint otomaticmint li deteccion\n"
"eyet l' apontiaedje del cåte grafike k' i gn a dins voste éndjole.\n"
"Si c' est nén l' cas, vos ploz tchozi e l' djivêye li cåte ki vos\n"
"avoz po d' bon.\n"
"\n"
"   S' i gn a des sierveus grafikes diferins po vosse cåte grafike, des cis\n"
"k' i gn a avou del acceleråcion 3D, des ôtes sins, on vs propôzrè di\n"
"tchoezi l' ci ki vs convént l' mî."

#: ../../help.pm:1
#, 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"
"\"Hardware clock set to GMT \", which will let GNU/Linux know that the\n"
"system clock and the hardware clock are in the same timezone. This is\n"
"useful when the machine also hosts another operating system like Windows.\n"
"\n"
"The \"Automatic time synchronization \" option will automatically regulate\n"
"the clock by connecting to a remote time server on the Internet. For this\n"
"feature to work, you must have a working Internet connection. It is best to\n"
"choose a time server located near you. This option actually installs a time\n"
"server that can used by other machines on your local network."
msgstr ""
"GNU/Linux manaedje l' eure e tins GMT (coistrece di Greenwich) et l' candje\n"
"en eure locåle sorlon li coisrece d' eureye ki vs avoz tchoezi. C' est\n"
"possibe di l' essocter si vos tchoezixhoz «L' ôrlodje del éndjolreye\n"
"metowe e tins universel (GMT)» po-z aveur li minme eure pol sistinme eyet\n"
"pol divintrinne ôrlodje. Çoula pout esse ahessåve cwand i gn a èn ôte\n"
"sistinme d' operance (come li Windows metans) so l' éndjole, et k' i\n"
"n' sait nén eployî li tins universel.\n"
"\n"
"Li tchuze «Sincronijhaedje otomatike del eure» va sincronijhî otomaticmint\n"
"l' ôrlodje. Po çoula on raloyaedje est fwait so on sierveu d' eure sol\n"
"daegntoele. Tchoezixhoz onk, sol djivêye ki vs est prezintêye, ki n' soeye\n"
"nén lon erî di wice ki vos dmeurez. Bén seur vos dvoz aveur on raloyaedje\n"
"al rantoele en alaedje po-z eployî cisse tchuze chal. Çoula astalrè so "
"voste\n"
"éndjole on sierveu d' eure ki pôreut ossu esse eployî pa d' ôtès\n"
"copiutreces, par egzimpe les cenes d' ene rantoele locåle, si vos vloz."

#: ../../help.pm:1
#, c-format
msgid ""
"This step is used to choose which services you wish to start at boot time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
"boot time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
"selected. However, if you are 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 will probably not want to start any services that you do not\n"
"need. Please remember that several services can be dangerous if they are\n"
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
"Asteure, vos poloz bén tchoezi les kés siervices ki s' divèt mete en "
"alaedje\n"
"cwand c' est ki vosse copiutrece s' enonde.\n"
"\n"
"Chal sont prezintés tos les siervices k' i gn a el astalåcion do moumint.\n"
"Prindoz sogne delzès verifyî et disclitchîz les cis k' i gn end a pont\n"
"tofer mezåjhe a l' enondaedje.\n"
"\n"
"Cwand vosse tchozixhoz on siervice, ene racsegne aparexhe po vs\n"
"dire çou ki l' siervice fwait. Si vos n' estoz nén seur si on siervice\n"
"est ahessåve por vos ou nén, vos estoz todi a houte tot l' leyant a si\n"
"prémetowe valixhance.\n"
"\n"
"!!\n"
"Loukîz a vosse sogne si voste éndjole serè eployeye come sierveu: c' est\n"
"dandjureu mî di n' nén enonder les siervices ki vos n' avoz nén dandjî!\n"
"Rimimbrez vs ki des siervices k' i gn a polèt esse riskeus s' i sont\n"
"metous so on sierveu. Tchoezixhoz djusse les siervices ki vos avoz dandjî.\n"
"!!"

#: ../../help.pm:1
#, c-format
msgid ""
"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
"«Sicrirece»: si vos clitchîz so «Nole sicrirece» çoula enondrè li macrea\n"
"d' apontiaedje des scrireces. Loukîz li tchaptrea corespondant do «Guide\n"
"d' Enondaedje» po pus d' informåcions sol manire d' apontyî ene nouve\n"
"sicrirece. L' eterface prezintêye chal rishonne a cene håynêye tins\n"
"di l' astalåcion."

#: ../../help.pm:1
#, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"Next\n"
"->\". Mandrake Linux will attempt to autodetect network devices and modems.\n"
"If this detection fails, uncheck the \"Use auto detection\" box. You may\n"
"also choose not to configure the network, or to do it later, in which case\n"
"clicking the \"Cancel\" button will take you to the next step.\n"
"\n"
"When configuring your network, the available connections options are:\n"
"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
"simple LAN connection (Ethernet).\n"
"\n"
"We will not detail each configuration option - just make sure that you have\n"
"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
"from your Internet Service Provider or system administrator.\n"
"\n"
"You can consult the ``Starter Guide'' chapter about Internet connections\n"
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
"Asteure vos ploz apontyî li raloyaedje åzès rantoeles. Si vos vloz raloyî\n"
"li copiutrece da vosse al daegntoele oudonbén a ene rantoele locåle,\n"
"clitchîz so «Shuvant» s' i vs plait. Mandrake Linux va sayî di detecter\n"
"otomaticmint les eterfaces rantoele eyet les modems. Si cisse deteccion\n"
"fwait berwete, disclitchîz li boesse «Eployî li deteccion otomatike».\n"
"Vos ploz eto tchoezi di n' nén apontyî l' rantoele, ou del fé pus tård,\n"
"dins ç' cas clitchîz so «Rinoncî» po passer a l' etape shuvante.\n"
"\n"
"Cwand vos apontyîz vosse rantoele, les sôres di raloyaedje k' i gn a\n"
"sont: pa modem, cåte RDIS (ISDN), raloyaedje ADSL, modem cåbe, et po fini\n"
"on simpe raloyaedje al rantoele locåle (avou ene cåte rantoele).\n"
"\n"
"Chal on n' denrè nén les detays po tchaeskene di ces tchuzes. Verifyîz\n"
"seulmint ki vs avoz bén tos les parametes et racsegnmints di voste ahesseu\n"
"al daegntoele, ou di vosse administrateu sistinme: adresses IP, prémetowe\n"
"pasrele, sierveus DNS, evnd.\n"
"\n"
"Vos ploz loukî li tchaptrea do manuel so les raloyaedjes al daegntoele po\n"
"pus di detays so l' apontiaedje, ou simplumint ratinde kel sistinme da\n"
"vosse soeye astalé eyet eployî li programe k' î est discrit po-z\n"
"apontyî vosse raloyaedje."

#: ../../help.pm:1
#, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
"subgroups. While browsing the tree, you can select entire groups,\n"
"subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right to let you know the purpose of the 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 will be asked to confirm that you really want those servers to be\n"
"installed. By default Mandrake 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 that\n"
"security holes are discovered after this version of Mandrake Linux was\n"
"finalized. If you do not know what a particular service is supposed to do\n"
"or why it is being installed, then click \"No\". Clicking \"Yes \" will\n"
"install the listed services and they will be started automatically by\n"
"default during boot. !!\n"
"\n"
"The \"Automatic dependencies\" option is used to disable the warning dialog\n"
"which appears whenever the installer automatically selects a package to\n"
"resolve a dependency issue. Some packages have relationships between each\n"
"other such that installation of a package requires that some other program\n"
"is already installed. The installer can determine which packages are\n"
"required to satisfy a dependency 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 a floppy disk previously created at the\n"
"end of another installation. See the second tip of last step on how to\n"
"create such a floppy."
msgstr ""
"Finålmint, sorlon vosse tchuze di tchoezi ou nén les pacaedjes onk après\n"
"l' ôte, vos voeroz on åbe avou tos les pacaedjes metous dins des groupes\n"
"et des sorgroupes. Tot naiviant dins l' åbe vos ploz tchoezi des groupes\n"
"ou des sorgroupes etirs, ou des pacaedjes tot seus.\n"
"\n"
"Tchaeke côp ki vos tchoezixhoz on pacaedje dins l' åbe, si discrijhaedje\n"
"est mostré sol droete ki vs dit a cwè i pout bén siervi.\n"
"\n"
"!! Si on pacaedje di sierveu a stî tchoezi, soeye-t i en esprès, ou k' i\n"
"fwait pårteye d' on groupe, on vos dmandrè d' acertiner ki vos vloz\n"
"vormint astaler ces sierveus la. Avou Mandrake Linux tot l' minme ké\n"
"sierveu k' a stî astalé est, avou les prémetowès tchuzes, metou en\n"
"alaedje tins di l' enondaedje di l' éndjole. Minme s' i sont seurs\n"
"et k' i gn a nou cnoxhou problinme å moumint ki l' distribucion a stî\n"
"fwaite, i s' pout k' des trôs di såvrité soeyexhe discovrous après ki\n"
"cisse modêye chal di Mandrake Linux fuxhe fineye. Si vos n' savoz nén çou\n"
"k' on siervice dné est supozé di fé, ou pocwè k' il est astalé, adon\n"
"clitchîz so «Neni». Si vos clitchîz so «Oyi» les siervices mostrés sront\n"
"astalés eyet enondés otomaticmint (a moens ki vos candjîz l' prémetou\n"
"apontiaedje). !!\n"
"\n"
"Li tchuze «Aloyances otomatikes» simplumint fwait ki l' purnea \n"
"d' adviertixhmint cwand on pacaedje est tchoezi otomaticmint n' est\n"
"nén håyné. Les pacaedjes tchoezi otomaticmint c' est pask' i gn a des\n"
"pacaedjes tchoezis k' ont des aloyances avou des ôtes pacaedjes, et \n"
"k' i les fåt astaler avou po-z aveur l' astalåcion fwaite a môde\n"
"di djin.\n"
"\n"
"Li ptite imådje d' ene plakete al valeye del djivêye vos permete di\n"
"tcherdjî ene djivêye di pacaedjes tchoezis k' åreut stî fwaite å moumint\n"
"d' èn ôte astalaedje. Si vos clitchîz so ciste imådjete chal, i vos srè\n"
"dmandé di mete li plakete fwaite al fén di l' astalaedje di dvant.\n"
"Loukîz l' aidance do deujhinme pont del dierinne étape po saveur kimint\n"
"fé ene sifwaite plakete."

#: ../../help.pm:1
#, c-format
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
"to make it simpler to manage the packages have been placed into groups of\n"
"similar applications.\n"
"\n"
"Packages are sorted into groups corresponding to a particular use of your\n"
"machine. Mandrake Linux has four predefined installations available. You\n"
"can think of these installation classes as containers for various packages.\n"
"You can mix and match applications from the various containers, so a\n"
"``Workstation'' installation can still have applications from the\n"
"``Development'' container installed.\n"
"\n"
" * \"Workstation\": if you plan to use your machine as a workstation,\n"
"select one or more of the applications that are in the workstation\n"
"container.\n"
"\n"
" * \"Development\": if plan on using your machine for programming, choose\n"
"the appropriate packages from the container.\n"
"\n"
" * \"Server\": if your machine is intended to be a server, select which of\n"
"the more common services you wish to install on your machine.\n"
"\n"
" * \"Graphical Environment\": this is where you will choose your preferred\n"
"graphical environment. At least one must be selected if you want to have a\n"
"graphical interface available.\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
"text about that group. If you unselect all groups when performing a regular\n"
"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
" * \"With X\": install the minimum number of packages possible to have a\n"
"working graphical desktop.\n"
"\n"
" * \"With basic documentation\": installs the base system plus basic\n"
"utilities and their documentation. This installation is suitable for\n"
"setting up a server.\n"
"\n"
" * \"Truly minimal install\": will install the absolute minimum number of\n"
"packages necessary to get a working Linux system. With this installation\n"
"you will only have a command line interface. The total size of this\n"
"installation is 65 megabytes.\n"
"\n"
"You can check the \"Individual package selection\" box, which is useful if\n"
"you are familiar with the packages being offered or if you want to have\n"
"total control over what will be installed.\n"
"\n"
"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
"groups to avoid installing any new package. This is useful for repairing or\n"
"updating an existing system."
msgstr ""
"Asteure c' est l' moumint di specifyî kés programes ki vos vloz astaler\n"
"so voste éndjole. I gn a des meyes et des meyes di pacaedjes pol Mandrake\n"
"Linux, po rinde li tchoezixhaedje pus simpe il ont stî metous dins des\n"
"groupes di programes sorlon les bouyes k' i permetèt d' fé.\n"
"\n"
"Les pacaedjes sont metous dins des groupes corespondant a des uzaedjes\n"
"ki pôrént esse fwaits. Les groupes zels minmes sont metous dins cwate\n"
"grandès classes; tuzez a ces classes d' astalaedje come des boesses\n"
"k' ont å dvins sacwants pacaedjes. Vos ploz prinde et maxhî des programes\n"
"di sacwantès di ces boesses la, par egzimpe èn astalaedje «Posse "
"éndjolrece»\n"
"n' espaitche nén d' astaler des programes del sôre «Programaedje».\n"
"\n"
" * «Posse éndjolrece»: si vos tuzez a-z eployî voste éndjole come on posse\n"
"éndjolrece (dj' ô bén: on uzaedje personel, å contråve d' on uzaedje\n"
"come sierveu metans), adon tchoezixhoz onk ou pluzieurs des programes\n"
"di ç' groupe chal.\n"
"\n"
" * «Programaedje»: si l' éndjole va-z esse eployeye po programer,\n"
"tchoezixhoz les pacaedjes ki vos vloz chal.\n"
"\n"
" * «Sierveu»: al fén, si l' såme di l' éndjole c' est d' esse on sierveu,\n"
"vos pôroz les kés siervices vos vloz voer astalés so l' éndjole.\n"
"\n"
" * «Evironmint grafike»: chal c' est wice ki vos alez tchoezi vosse\n"
"evironmint grafike favori. I fåt ndè tchoezi pol moens onk si vos vloz\n"
"on posse éndjolrece avou ene eterface grafike!\n"
"\n"
"Cwand vos alez avou l' sori å dzeu do no d' on groupe, ene racsegne srè\n"
"håynêye avou on court discrijhaedje di çou a cwè i pout siervi.\n"
"Si vos n' tchoezixhoz nou groupe po l' astalaedje (et k' c' est nén on\n"
"metaedje a djoû), on purnea vos dmandrè li sôre del astalåcion minimom ki\n"
"vos vloz. Çoula pout esse:\n"
" * «Avou X11» astale li moens possibe di pacaedjes po tot l' minme aveur\n"
"l' eterface grafike X11 en alaedje;\n"
"\n"
" * «Avou li documintåcion di båze» astale li sistinme di båze eyet "
"sacwantes\n"
"usteyes avou leu documintåcion. C' est l' astalåcion a l' idêye po on\n"
"sierveu.\n"
"\n"
" * «Astalåcion vormint minimom» n' astalrè ki vormint li minimom po ki\n"
"l' éndjole s' enonde eyet aveur on sistinme Linux en alaedje; rén k' e\n"
"roye di comande. Ciste astalåcion chal a mezåjhe di 65 Mo seulmint.\n"
"\n"
"Vos ploz clitchî sol tchuze «Tchoezi tchaeke pacaedje sepårumint». C' est\n"
"ahessåve si vos cnoxhoz on pô les pacaedjes k' i gn a et çki vos vloz;\n"
"oudonbén si vos vloz on contrôle totå so çki srè astalé ou nén.\n"
"\n"
"Si vos cmincîz l' astalaedje e môde «Metaedje a djoû», vos ploz disclitchî\n"
"tos les groupes po nén aveur des noveas pacaedjes d' astalés, seulmint les\n"
"cis k' vos avîz ddja davance sront astalés. Çouchal est ahessåve po\n"
"reparer ou mete a djoû on sistinme k' est ddja sol deure plake."

#: ../../help.pm:1
#, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
"the current CD and ask you to insert the correct CD as required."
msgstr ""
"L' astalaedje del distribucion Mandrake Linux a si télmint di pacaedjes\n"
"k' il a bén falou les mete so sacwantes plakes lazer. DrakX sait si on\n"
"pacaedje k' a stî tchoezi est so ene ôte plake lazer, et i drovrè\n"
"l' lijheu di plakes lazer po vos l' candjî et mete li çou k' i fåt."

#: ../../help.pm:1
#, c-format
msgid ""
"Here are Listed 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 ""
"Chal pa dzeur i gn a ene djivêye des pårticions Linux k' i gn a so vosse\n"
"deure plake et ki on stî detectêyes. Vos ploz wårder les tchuzes fwaites\n"
"pa l' macrea, ele sont comufåt po les cas les pus comons.\n"
"Si vos les voloz candjî vos dvoz fé å moens ene pårticion raecene («/»).\n"
"Ni prindoz nén ene trop ptite grandeu ôtrumint vos n' pôrîz astaler "
"åjheymint\n"
"des programes, fåte di plaece. Si vos vloz mete vos dnêyes so ene pårticion\n"
"diferinne, vos dvroz ossu fé ene po «/home» (çou ki vos pôroz fé seulmint "
"si\n"
"vos avoz pus d' ene pårticion del sôre Linux).\n"
"\n"
"Pol informåcion, tchaeke pårticion est mostrêye come çoula: «no», "
"«grandeu».\n"
"\n"
"Li «no» est costrût come çouchal: «sôre del deure plake» + «limero del deure "
"plake» +\n"
"«limero del pårticion» (par egzimpe, hd+a+1 --> «hda1»)\n"
"\n"
"Li «sôre del deure plake» est «hd» si vosse deure plake est del sôre IDE,\n"
"oudonbén «sd» si elle est del sôre SCSI.\n"
"\n"
"Li «limero del deure plake» est todi ene lete pa drî «hd» ou «sd».\n"
"Avou les plakes IDE on a:\n"
"\n"
"   * «a» pol plake mwaisse sol prumî controleu IDE,\n"
"\n"
"   * «b» pol plake esclave sol prumî controleu IDE,\n"
"\n"
"   * «c» pol plake mwaisse sol deujhinme controleu IDE,\n"
"\n"
"   * «d» pol plake esclave sol deujhinme controleu IDE.\n"
"\n"
"Avou les plakes SCSI, «a» vout dire «prumire deure plake», «b» vout dire "
"«deujhinme deure plake», evnd..."

#: ../../help.pm:1
#, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user can have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
"to learn more about multi-user systems. But unlike \"root\", which is the\n"
"system administrator, the users you add at this point will not be\n"
"authorized to change anything except their own files and their own\n"
"configuration, protecting the system from unintentional or malicious\n"
"changes that impact the system as a whole. You will have to create at least\n"
"one regular user for yourself -- this is the account which you should use\n"
"for routine, day-to-day use. Although it is very easy to log in as \"root\"\n"
"to do anything and everything, it may also be very dangerous! A mistake\n"
"could mean that your system would not work any more. If you make a serious\n"
"mistake as a regular user, the worst that will happen is that you will lose\n"
"some information, but 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 typed in and copy it to the \"User name\" field, which is the name this\n"
"user will enter to log onto the system. If you like, you may override the\n"
"default and change the username. The next step is to enter a password. From\n"
"a security point of view, a non-privileged (regular) user password is not\n"
"as crucial as the \"root\" password, but that is no reason to neglect it by\n"
"making it blank or too simple: after all, your files could be the ones at\n"
"risk.\n"
"\n"
"Once you click on \"Accept user\", you can add other users. Add a user for\n"
"each one of your friends: your father or your sister, for example. Click\n"
"\"Next ->\" when you have finished adding users.\n"
"\n"
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default).\n"
"\n"
"When you are finished adding all users, you will be asked to choose a user\n"
"that can automatically log into the system when the computer boots up. If\n"
"you are interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click \"Next\n"
"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
"to use this feature?\" box."
msgstr ""
"GNU/Linux est on sistinme multi-uzeus, dj' ô bén, tchaeke uzeu pout aveur\n"
"on evironmint, des preferinces eyet des fitchîs da lu. Vos ploz lere li\n"
"«Guide di l' Uzeu» po ndè saveur pus long. Mins, å contråve di «root»,\n"
"k' est l' administrateu, les uzeus ki vos alez radjouter chal n' åront\n"
"nén l' droet di candjî ene sacwè so l' éndjole apu k' les fitchîs eyet\n"
"apontiaedjes da zels. Vos dvroz fé pol moens on uzeu normå po vos minme.\n"
"Ci conte uzeu la c' est po moussî el copiutrece po l' eployaedje di tos\n"
"les djoûs. Minme si çoula shonne ahessåve di moussî tofer come «root»,\n"
"c' est ossu ene sacwè di foirt dandjureu! Li pus ptite måcule pout\n"
"signifyî kel sistinme da vosse ni rotrè gote pus. Si vos fjhoz ene\n"
"consecante aroke come on uzeu normå, li pé ki vs pout ariver c' est di\n"
"piede sacwants fitchîs et informåcions, mins nén li sistinme en etir.\n"
"\n"
"D' aprume, vos dvoz dner vosse no. C' est nén obligatwere, bén seur - et\n"
"vos ploz bén î mete çou k' vos vloz. DrakX irè adon prinde li prumî mot ki\n"
"vos avoz tapé eyet l' passer el tchamp «No di l' uzeu». Ci no la c' est\n"
"l' no ki l' éndjole vos cnoxhe; çou ki vos dvoz taper el purnea di bénvnowe\n"
"po moussî el copiutrece. Vos l' poloz candjî. Vos ploz mete çou k' vos vloz\n"
"mins di moens di ût letes; et rén ki des ptitès letes sins accints, des\n"
"chifes, li loyeure («-») ou li sene sorlignî («_»).\n"
"Après çoula, vos dvoz taper vosse sicret. Li scret d' on uzeu normå, sins\n"
"advantaedjes sipeciås n' est nén ossu impôrtant kel ci da «root», do pont\n"
"d' vuwe del såvrité, mins c' est tolminme nén ene råjhon po n' nén\n"
"fé atincion ås screts des uzeus - c' est vos fitchîs ki sont-st e risse.\n"
"\n"
"Si vos clitchîz so «Accepter l' uzeu» l' uzeu srè radjouté po d' bon avou\n"
"les informåcions ki vs avoz dné, et les tchamps sront vudîs po vos pleur\n"
"e radjouter on ôte. Vos e ploz radjouter ostant ki vos vloz: onk po tchaeke\n"
"di vos soçons, po vosse pére, vosse sour, par egzimpe. Cwand vos avoz fini\n"
"d' endè radjouter, clitchîz so «Shuvant».\n"
"\n"
"Si vos clitchîz sol boton «Sipepieus» vos ploz candjî li shell eployî pa\n"
"cist uzeu la (li prémetou shell est li «bash»).\n"
"Cwand vos avoz fini di radjouter tos les uzeus, on vs dimandrè di tchoezi\n"
"èn uzeu ki srè otomaticmint elodjî cwand l' copiutrece est enondêye.\n"
"Si cisse fonccionålité la vos interesse (et ki l' såvrité n' est nén\n"
"on problinme locålmint), tchoezixhoz l' uzeu eyet li manaedjeu di\n"
"purneas ki vos vloz, et clitchîz so «Shuvant». Si vos n' voloz nén\n"
"cisse fonccionålité, disclitchîz «Voloz vs eployî cisse fonccionålité chal?»."

#: ../../help.pm:1
#, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
"terms in it, check the \"Accept\" box. If not, simply turn off your\n"
"computer."
msgstr ""
"Divant d' aler pus avant, vos dvrîz lere atintivmint l' licince.\n"
"Ele covere li distribucion Mandrake Linux, si vos estoz d' acoird\n"
"avou les termes del licince, clitchîz sol boton «Accepter».\n"
"Ôtrumint, distindoz tot simplumint li copiutrece."

#: ../../install2.pm:1
#, c-format
msgid "You must also format %s"
msgstr "Vos dvoz abwesner eto %s"

#: ../../install2.pm:1
#, c-format
msgid ""
"Can't 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 ""
"Dji n' sai vey les modules po vosse nawea (i gn a pont d' fitchî %s), çoula "
"vout probablumint dire ki vosse plakete d' enondaedje n' a nén stî fwait pol "
"sopoirt d' astalaedje ki vos vloz eployî. Vos dvrîz fé ene nouve plakete, a "
"pårti des imådjes ki vnèt avou li modêye di Mandrake Linux ki vos vloz "
"astaler"

#: ../../install_any.pm:1
#, 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 ""
"Ene sacwè n' a nén stî: dji n' a trové nou valåbe éndjin po fé des noveas "
"sistinmes di fitchîs. Loukîz vos éndjolreyes po saveur çou ki n' va nén"

#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
msgid "Error reading file %s"
msgstr "Åk n' a nén stî come dji sayive di lere li fitchî %s"

#: ../../install_any.pm:1
#, c-format
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
"Po-z eployî cisse tchuze di pacaedjes k' a stî schapêye, enondez "
"l' astalaedje avou «linux defcfg=floppy»"

#: ../../install_any.pm:1
#, c-format
msgid "This floppy is not FAT formatted"
msgstr "Cisse plakete chal n' a nén stî abwesnêye e FAT"

#: ../../install_any.pm:1
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Metoz ene plakete FAT-abwesnêye divins li lijheu %s"

#: ../../install_any.pm:1
#, c-format
msgid "Can't use broadcast with no NIS domain"
msgstr "Dji n' pout eployî li broadcast sins dominne NIS"

#: ../../install_any.pm:1
#, 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 ""
"Les pacaedjes shuvants vont esse oistés, po pleur mete a djoû vosse "
"sistinme:\n"
" %s\n"
"\n"
"Voloz vs vormint oister ces pacaedjes la?\n"

#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "No"
msgstr "Neni"

#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "Yes"
msgstr "Oyi"

#: ../../install_any.pm:1
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They don't 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 ""
"Vos avoz tchoezi le(s) sierveu(s) shuvant(s): %s\n"
"\n"
"\n"
"Ces sierveus sront activés a l' enondaedje del éndjole. I n' ont nén\n"
"di probleme di såvrité cnoxhou, mins i s' pôreut k' onk soeye trové el "
"futeur.\n"
"Dins ç' cas, vos dvroz a tot côp mete a djoû li pacaedje po esse a houte\n"
"des problemes.\n"
"\n"
"\n"
"Voloz vs vormint astaler ces sierveus?\n"

#: ../../install_gtk.pm:1
#, c-format
msgid "System configuration"
msgstr "Apontiaedje do sistinme"

#: ../../install_gtk.pm:1
#, c-format
msgid "System installation"
msgstr "Astalaedje do sistinme"

#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing down the network"
msgstr "Dj' arestêye li rantoele"

#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing up the network"
msgstr "Metant li rantoele en alaedje"

#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
msgstr "Li pårtixhaedje n' a nén stî: %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Li Macrea di Pårtixhaedje di DrakX a trové les solucions shuvantes:"

#: ../../install_interactive.pm:1
#, c-format
msgid "I can't find any room for installing"
msgstr "Dji n' a savou trover del plaece po l' astalåcion"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
"Asteure vos poloz pårti vosse deure plake %s\n"
"Cwand vos åroz fini, ni rovyîz nén di schaper avou «w»"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use fdisk"
msgstr "Eployî fdisk"

#: ../../install_interactive.pm:1
#, c-format
msgid "Custom disk partitioning"
msgstr "Pårtixhaedje da vosse del deure plake"

#: ../../install_interactive.pm:1
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"TOTES les pårticions et totes les dnêyes å dvins vont esse pierdowes sol "
"deure plake %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Vos avoz pus d' ene deure plake, sol kéne voloz vs astaler Linux?"

#: ../../install_interactive.pm:1
#, c-format
msgid "Erase entire disk"
msgstr "Disfacer li plake etire"

#: ../../install_interactive.pm:1
#, c-format
msgid "Remove Windows(TM)"
msgstr "Oister Windows(tm)"

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"I gn a pont di pårticions FAT po candjî leu grandeu  (oudonbén i n' resse "
"nén del plaece assez)"

#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, 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 ""

#: ../../install_interactive.pm:1
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Li candjmint di grandeu pol pårticion FAT a fwait berwete: %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "Resizing Windows partition"
msgstr "Dji carcule les limites do sistinme di fitchîs di Windows"

#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
msgstr "Dji candje li grandeu"

#: ../../install_interactive.pm:1
#, c-format
msgid "partition %s"
msgstr "pårticion %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which size do you want to keep for Windows on"
msgstr "Kéne grandeu voloz vs wårder po Windows sol "

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful:\n"
"this operation is dangerous. If you have not already done\n"
"so, you should first exit the installation, run scandisk\n"
"under Windows (and optionally run defrag), then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"ASTEME!\n"
"\n"
"Asteure, DrakX va candjî li grandeu di vosse pårticion Windows.\n"
"Loukîz a vos: çoula est dandjureu. Si vos n' l' avoz nén co fwait,\n"
"enondez (so Windows) scandisk (et motoit defrag) so cisse pårticion\n"
"et s' fijhoz ene copeye di såvrité di vos dnêyes dvant di renonder \n"
"l' astalaedje.\n"
"Cwand vos seroz seur di vos, clitchîz so «'l est bon»."

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "Vosse pårticion Windows est trop fragméntêye, i fåreut eployî «defrag»"

#: ../../install_interactive.pm:1
#, c-format
msgid "Computing the size of the Windows partition"
msgstr "Carculant l' grandeu del pårticion Windows"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
"Li candjmint di grandeu di vosse pårticion FAT n' a nén stî, \n"
"a cåze del aroke shuvante: %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Kéne pårticion voloz vs candjî si grandeu?"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use the free space on the Windows partition"
msgstr "Eployî l' plaece libe sol pårticion Windows"

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"I gn a pont di pårticions FAT po-z eployî pol loopback (oudonbén i n' resse "
"nén del plaece assez)"

#: ../../install_interactive.pm:1
#, c-format
msgid "Swap partition size in MB: "
msgstr "Grandeu del pårticion di swap e Mo: "

#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
msgstr "Grandeu del pårticion raecene e Mo: "

#: ../../install_interactive.pm:1
#, c-format
msgid "Choose the sizes"
msgstr "Tchoezixhoz les grandeus"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kéne pårticion voloz vs eployî po-z î mete Linux4win?"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use the Windows partition for loopback"
msgstr "Eployî li pårticion Windows pol loopback"

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
msgstr "I gn a nén des pårticions po-z eployî"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use existing partitions"
msgstr "Eployî les pårticions k' i gn a"

#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nén del plaece libe assez po fé des noveles pårticions"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use free space"
msgstr "Eployî l' plaece libe"

#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vos dvoz aveur ene pårticion FAT montêye so /boot/efi"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Vos n' avoz nole pårticion di swap\n"
"\n"
"Voloz vs vormint continuwer?"

#: ../../install_interactive.pm:1
#, 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 ""
"Vos dvoz aveur ene pårticion raecene.\n"
"Po çoula, fijhoz ene pårticion (ou clitchîz so ene ki egzistêye dedja).\n"
"Et poy tchoezixhoz «Pont di montaedje» et metoz lu come «/»"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"Vos avoz del éndjolreye k' a mezåjhe di mineus «proprietaire» po roter\n"
"Vos trovroz del informåcion so zels so: %s"

#: ../../install_messages.pm:1
#, 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 Mandrake "
"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 Mandrake Linux User's Guide."
msgstr ""
"Felicitåcions, l' astalåcion a stî fwaite.\n"
"Bodjîz li sopoirt d' enondaedje et tapez so Return po renonder l' éndjole.\n"
"\n"
"Po des informåcions so les coridjaedjes k' i gn a po cisse modêye di "
"Mandrake Linux,\n"
"loukîz al pådje des Errata sol waibe:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"vos trovroz del informåcion sol apontiaedje do sistinme el tchaptrea\n"
"sol post-astalåcion do Guide di l' Uzeu Mandrake Linux Oficir."

#: ../../install_messages.pm:1
#, c-format
msgid "http://www.mandrakelinux.com/en/91errata.php3"
msgstr "http://www.mandrakelinux.com/en/91errata.php3"

#: ../../install_messages.pm:1
#, 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:1
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandrake "
"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 Mandrake 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"
"MandrakeSoft 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"
"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
"occurence 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, MandrakeSoft 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 Mandrake 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 MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft 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"
"MandrakeSoft 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"
"\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
"MandrakeSoft 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 MandrakeSoft S.A.  \n"
msgstr ""

#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
#, c-format
msgid "Entering step `%s'\n"
msgstr "Intrant e l' étape '%s'\n"

#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "Help"
msgstr "Aidance"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "not configured"
msgstr "nén apontyî"

#: ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakboot:1 ../../standalone/drakgw:1
#, c-format
msgid "Configure"
msgstr "Apontyî"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Go on anyway?"
msgstr "Dji continowe tot l' minme?"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
msgstr "Åk n' a nén stî come dj' astaléve les pacaedjes:"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error ordering packages:"
msgstr "Åk n' a nén stî come dj' arindjive les pacaedjes:"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
"Candjîz vosse CDROM!\n"
"\n"
"Metoz li CDROM lomé «%s» dvins l' lijheu, s' i vs plait;\n"
"et clitchîz so «'l est bon» on côp ki c' est fwait.\n"
"Si vos n' l' avoz nén, clitchîz so «Rinoncî» po rinoncî a astaler a pårti\n"
"di ci CDROM chal."

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Refuse"
msgstr "Nén accepter"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
msgstr "Accepter"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Installing package %s"
msgstr "Astalant li pacaedje %s"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "%d packages"
msgstr "%d pacaedjes"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "No details"
msgstr "Po vey les rclames"

#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Details"
msgstr "Po ndè saveur di pus"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Please wait, preparing installation..."
msgstr "Tårdjîz on pô s' i vs plait, dj' aprestêye l' astalaedje"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Time remaining "
msgstr "Tins ki dmeure "

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Estimating"
msgstr "Dj' asteme"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing"
msgstr "Astalant"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the packages you want to install"
msgstr "Tchoezixhoz les pacaedjes k' vos voloz astaler"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
msgstr "Astalåcion minimåle"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
msgstr "Metaedje a djoû del tchuze des pacaedjes"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Load/Save on floppy"
msgstr "Tcherdjî di/schaper e ene plakete"

#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "<- Previous"
msgstr "<- Di dvant"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakbackup:1
#, c-format
msgid "Install"
msgstr "Astalaedje"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Show automatically selected packages"
msgstr "Mostrer les pacaedjes tchoezis otomaticmint"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It must be upgraded"
msgstr "Vos n' poloz nén distchoezi ci pacaedje chal. I l' fåt mete a djoû"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ci pacaedje ci duvreut esse metou a djoû\n"
"Estoz seur ki vos l' voloz distchoezi?"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It is already installed"
msgstr "Vos n' poloz nén distchoezi ci pacaedje chal. Il est ddja astalé"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ci pacaedje est obligatwere, vos n' poloz nén li distchoezi"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't select/unselect this package"
msgstr "Vos n' poloz nén tchoezi/distchoezi ci pacaedje chal"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be removed"
msgstr "Les pacaedjes ki shuvèt vont esse disastalés"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be installed"
msgstr "Les pacaedjes ki shuvèt vont esse astalés"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Vos n' poloz tchoezi ci pacaedje chal ca gn a nén del plaece assez ki po "
"l' astaler"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Importance: %s\n"
msgstr "Impôrtance: %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Size: %d KB\n"
msgstr "Grandeu: %d Ko\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Version: %s\n"
msgstr "Modêye: %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Name: %s\n"
msgstr "No: %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Bad package"
msgstr "Måva pacaedje"

#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Other"
msgstr "Ôte"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Grandeu å totå: %d / %d Mo"

#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Next ->"
msgstr "Shuvant ->"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
msgstr "Tchoezi tchaeke pacaedje sepårumint"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
msgstr "Tchoezi les groupes di pacaedjes"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
"Vosse sistinme a po di rsources. Vos pôrîz aveur des rujhes po\n"
"l' astalåcion di Mandrake Linux. Si çoula arive, vos ploz sayî ene\n"
"astalåcion e môde tecse. Po çoula, tchoûkîz sol tape «F1» a l' enondaedje\n"
"et poy tapez «text»."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Save packages selection"
msgstr "Schaper li tchuze des pacaedjes"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Automated"
msgstr "Otomatike"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Replay"
msgstr "Rifé"

#: ../../install_steps_interactive.pm:1
#, 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 ""
"L' astalaedje pout esse totafwait otomatike si vos vloz,\n"
"dins ci cas i va abwesner totafwait li deure plake!!\n"
"(dj' ô bén c' est po-z astaler sor ene nouve éndjole).\n"
"\n"
"Motoit ki vos vloz rifé l' astalåcion.\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Generate auto install floppy"
msgstr "Fé li plakete d' astalaedje otomatike"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Reboot"
msgstr "Renonder l' éndjole"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
"Sacwantès étapes n' ont nén stî fwaites,\n"
"\n"
"Voloz vs vormint cwiter asteure?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Creating auto install floppy..."
msgstr "Dji fé li plakete d' enondaedje otomatike"

#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Metoz ene blanke plakete divins li lijheu %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you don't 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 ""
"Vos alez dveur candjî vosse éndjin d' enondaedje (boot-device) dins\n"
"vosse Open Firmware, po vos poleur mete en alaedje l' enondeu.\n"
"Tchoûkîz e minme tins so les tapes Comande-Option-O-F å moumint\n"
"di l' enondaedje, et poy tapez:\n"
"    setenv boot-device %s,\\\\:tbxi\n"
"et poy tapez: shut-down\n"
"A l' enondaedje shuvant del copiutrece vos dvrîz voere li prompt di "
"l' enondeu."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Åk n' a nén stî e l' astalaedje di l' enondrece. Vochal l' aroke:"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing bootloader"
msgstr "Astalant l' enondrece"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"Åk n' a nén stî tot astalant aboot, \n"
"voloz vs ki dji saye di foirci l' astalåcion, minme si çoula pout\n"
"distrure li prumire pårticion ?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you want to use aboot?"
msgstr "Voloz vs eployî aboot?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
"The install will continue, but you'll\n"
" need to use BootX or some other means to boot your machine"
msgstr ""
"I shonne ki voste éndjole est pår trop viye\n"
" oudonbén k' ele nén cnoxhowe; adon l' enondrece\n"
" yaboot ni rotrè nén por vos.\n"
"L' astalaedje va continuwer, mins vos dvroz\n"
" eployî BootX ou ôte tchoi po-z enonder voste éndjole"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
msgstr "Dj' aprestêye l' enondrece"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Domain Admin Password"
msgstr "Sicret do manaedjeu do dominne"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Domain Admin User Name"
msgstr "No di l' uzeu manaedjeu do dominne"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Windows Domain"
msgstr "Dominne Windows"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Authentication Windows Domain"
msgstr "Otintifiaedje Dominne Windows"

#: ../../install_steps_interactive.pm:1
#, 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 ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS Server"
msgstr "Sierveu NIS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS Domain"
msgstr "Dominne NIS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Authentication NIS"
msgstr "Verifiaedje NIS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS"
msgstr "NIS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "LDAP Server"
msgstr "Sierveu LDAP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "LDAP Base dn"
msgstr "Raecene (dn) LDAP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Authentication LDAP"
msgstr "Verifiaedje LDAP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Local files"
msgstr "Fitchîs locås"

#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
#, c-format
msgid "Authentication"
msgstr "Verifiaedje"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ci scret chal est trop simpe (i doet esse d' å moens %d letes)"

#. -PO: keep this short or else the buttons will not fit in the window
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
msgstr "Nou scret"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Set root password"
msgstr "Sicret di root"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
"Vos n' avoz nén apontyî X11 (li sistinme di håynaedje grafike).\n"
"Estoz vs seur di voleur çoula?"

#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Siervices: %d en alaedje po %d eredjistrés"

#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, c-format
msgid "Services"
msgstr "Siervices"

#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#: ../../standalone/drakbackup:1
#, c-format
msgid "System"
msgstr "Sistinme"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
msgstr "Enondrece"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Boot"
msgstr "Enondaedje"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "disabled"
msgstr "dismetou"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "activated"
msgstr "metou en alaedje"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Firewall"
msgstr "Côpe feu"

#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
msgid "Security"
msgstr "Såvrité"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Security Level"
msgstr "Livea di såvrité"

#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Network"
msgstr "Rantoele"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Network & Internet"
msgstr "Rantoele locåle & daegnrece"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Graphical interface"
msgstr "Eterface grafike"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Hardware"
msgstr "Éndjolreye"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "TV card"
msgstr "Cåte tévé"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Nole cåte son di detectêye. Sayîz «harddrake» après l' astalåcion"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Enondez «sndconfig» après l' astalåcion po-z apontyî vosse cåte son"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Avoz vs ene cåte son ISA?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Sound card"
msgstr "Cåte son"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Remote CUPS server"
msgstr "Sierveu CUPS å lon"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No printer"
msgstr "Nole sicrirece"

#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer"
msgstr "Sicrirece"

#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
#, c-format
msgid "Mouse"
msgstr "Sori"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Timezone"
msgstr "Coisse d' eureye"

#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
#, c-format
msgid "Keyboard"
msgstr "Taprece"

#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
msgid "Summary"
msgstr "Rascourti éndjolreye"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NTP Server"
msgstr "Sierveu NTP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronijhaedje otomatike del eure (avou NTP)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Hardware clock set to GMT"
msgstr "L' ôrlodje del éndjolreye metowe e tins universel (GMT)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Which is your timezone?"
msgstr "Dins kéne coisse d' eureye vikez?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Would you like to try again?"
msgstr "Voloz vs rissayî?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Unable to contact mirror %s"
msgstr "Dji n' a savou m' raloyî å muroe %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Dj' atôche li miroe po-z avu l' djivêye des pacaedjes"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Tchoezixhoz on miroe po nd aberweter des pacaedjes foû"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Dj' atôche li waibe da Mandrake Linux po-z aveur li djivêye di miroes k' i "
"gn a"

#: ../../install_steps_interactive.pm:1
#, 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 ""
"Vos avoz l' possibilité d' aberweter les pacaedjes k' on stî metous\n"
"a djoû dispoy li fijhaedje del distribucion.\n"
"I pôrént coridjî des bugs ou des problinmes di såvrité.\n"
"\n"
"Po ls aberweter, vos dvoz aveur on raloyaedje al daegntoele ki rote.\n"
"\n"
"Voloz vs astaler les pacaedjes metous a djoû?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Metoz li plakete avou les modules metous a djoû dvins li lijheu %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Metoz li plakete d' enondaedje dvins li lijheu %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Post-install configuration"
msgstr "Apontiaedje di post-astalåcion"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
"Astalant li pacaedje %s\n"
"%d%%"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing installation"
msgstr "Dj' aprestêye l' astalaedje"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM lomé «%s»"

#: ../../install_steps_interactive.pm:1
#, 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 ""
"Si vos avoz totes les plakes lazer del djivêye å dzo, clitchîz so «'l est "
"bon».\n"
"Si vos n' en avoz nole, clitchîz so «Rinoncî».\n"
"Si seulmint sacwantès plakes ki vos n' avoz nén, adon vos poloz\n"
"les distchoezi et clitchî so «'l est bon»."

#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "All"
msgstr "Tos"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Truly minimal install (especially no urpmi)"
msgstr "Astalåcion vormint minimom (i gn a nén di urpmi)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "With basic documentation (recommended!)"
msgstr "Avou li documintåcion di båze (ricomandé!)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "With X"
msgstr "Avou X11"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
"Vos n' avoz tchoezi nou groupe di pacaedjes\n"
"Tchoezixhoz li sôre d' astalåcion minimon ki vos vloz"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Type of install"
msgstr "Sôre d' astalaedje"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Selected size is larger than available space"
msgstr "Li grandeu tchoezeye est pus grande kel plaece ki dmeure"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Insert a floppy containing package selection"
msgstr "Metoz ene plakete avou li tchuze des pacaedjes"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Loading from floppy"
msgstr "Tcherdjant a pårti d' ene plakete"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Package selection"
msgstr "Tchoezi les pacaedjes"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Save on floppy"
msgstr "Schaper e ene plakete"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Load from floppy"
msgstr "Tcherdjî a pårti d' ene plakete"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
"Tchoezixhoz si vos vloz tcherdjî ou schaper li tchuze des pacaedjes\n"
"so ene plakete.\n"
"Li cogne est l' minme ki po les plaketes fwaites pol oto-astalaedje."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
"I gn a pus del plaece assez so vosse sistinme po-z astaler ou mete a djoû (%"
"d > %d)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages..."
msgstr "Dji cwir après les pacaedjes k' i gn a"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Dji cwir après les pacaedjes a mete a djoû"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking at packages already installed..."
msgstr "Dji cwir après les pacaedjes ki sont ddja astalés..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Dji cwir après les pacaedjes k' i gn a et rfé l' båze di dnêyes rpm..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Li swap n' est nén grande assez po l' astalaedje: vos e dvoz radjouter."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
"Dji n' a savou verifyî li sistinme di fitchîs %s. Voloz vs sayî di coridjî "
"les arokes? (atincion ki çoula pout vs fé piede des dnêyes)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Check bad blocks?"
msgstr "Verifyî s' i gn a des blocs di måvas?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Tchoezixhoz les pårticions a abwesner"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Vos dvoz renonder voste éndjole po vosse tåvlea di pårtixhaedje candjî"

#: ../../install_steps_interactive.pm:1
#, 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 ""
"I gn a pont del plaece po on secteu d' enondaedje di 1 Mo! L' astalåcion "
"continowrè, mins i vos fårè fé li pårticion d' enondaedje avou DiskDrake po "
"poleur enonder vosse sistinme."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the mount points"
msgstr "Tchoezixhoz les ponts di montaedje"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Dji louke ezès pårticions po trover les ponts di montaedje"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No partition available"
msgstr "nole pårticion di disponibe"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring IDE"
msgstr "Apontiant les éndjins IDE"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "IDE"
msgstr "IDE"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring PCMCIA cards..."
msgstr "Apontiant les cåtes PCMCIA..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "PCMCIA"
msgstr "PCMCIA"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 3 Emulation"
msgstr "Emulåcion do 3inme boton"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 2 Emulation"
msgstr "Emulåcion do 2inme boton"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Buttons emulation"
msgstr "Emulåcion des botons"

#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Please choose which serial port your mouse is connected to."
msgstr "Tchoezixhoz li pôrt séreye ki vosse sori est raloyeye dizo."

#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Mouse Port"
msgstr "Pôrt del sori"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your type of mouse."
msgstr "Tchoezixhoz li sôre di vosse sori."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Metaedje a djoû di %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Is this an install or an upgrade?"
msgstr "C' est ene astalåcion ou on metaedje a djoû?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Install/Upgrade"
msgstr "Astaler/Mete a djoû"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Here is the full list of keyboards available"
msgstr "Vochal li djivêye di totes les tapreces k' i gn a"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your keyboard layout."
msgstr "Tchoezixhoz li sôre di vosse taprece."

#: ../../install_steps_interactive.pm:1 ../../Xconfig/main.pm:1
#: ../../diskdrake/dav.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakperm:1 ../../standalone/draksplash:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Quit"
msgstr "Cwiter"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "License agreement"
msgstr "Acoird sol licince"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "An error occurred"
msgstr "Dj' aroke so ene sacwè"

#: ../../install_steps_newt.pm:1
#, c-format
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> candjî elemints | <espace> tchoezi | <F12> waitroûlêye shuv."

#: ../../install_steps_newt.pm:1
#, c-format
msgid "Mandrake Linux Installation %s"
msgstr "Astalåcion di Mandrake Linux %s"

#: ../../install_steps.pm:1
#, c-format
msgid "No floppy drive available"
msgstr "Nou lijheu di plaketes disponibe"

#: ../../install_steps.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "Wilicome a %s"

#: ../../install_steps.pm:1
#, c-format
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
"\"\n"
msgstr ""
"Sacwants consecants pacaedjes n' ont nén stî astalés comufåt.\n"
"Motoit vosse lijheu di plakes lazer, oudonbén vosse plake lazer, ont\n"
"des rujhes.\n"
"Verifyîz vosse plake lazer sor ene copiutrece ddja astalêye, avou\n"
"l' comande «rpm -qpl Mandrake/RPMS/*.rpm»\n"

#: ../../install_steps.pm:1
#, c-format
msgid "Duplicate mount point %s"
msgstr "Vos avoz deus côps li pont d' montaedje %s"

#: ../../install_steps.pm:1
#, c-format
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Åk n' a nén stî, et dji n' sai cmint m' saetchî l' cou foû des\n"
"strons. Si vos continuwez, vos duvroz tirer vosse plan tot seu."

#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
#: ../../standalone/service_harddrake:1
#, c-format
msgid "Please wait"
msgstr "Tårdjîz on pô, s' i vs plait"

#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
#, c-format
msgid "Ok"
msgstr "'l est bon"

#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
msgstr "Fini"

#: ../../interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "Basic"
msgstr "Di båze"

#: ../../interactive.pm:1
#, c-format
msgid "Advanced"
msgstr "Sipepieus"

#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
msgid "Remove"
msgstr "Oister"

#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
msgid "Modify"
msgstr "Candjî"

#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "Add"
msgstr "Radjouter"

#: ../../interactive.pm:1
#, c-format
msgid "Choose a file"
msgstr "Tchoezixhoz on fitchî"

#: ../../keyboard.pm:1
#, 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 ""
"Chal vos ploz tchoezi li tape ou li combinåcion di tapes ki \n"
"vos vorîz eployî po candjî d' ene taprece a l' ôte\n"
"(eg: d' ene taprece e letes latenes a ene nén latene)"

#: ../../keyboard.pm:1
#, c-format
msgid "Right \"Windows\" key"
msgstr "Li tape «Windows» di droete"

#: ../../keyboard.pm:1
#, c-format
msgid "Left \"Windows\" key"
msgstr "Li tape «Windows» di hintche"

#: ../../keyboard.pm:1
#, c-format
msgid "\"Menu\" key"
msgstr "Li tape «Menu»"

#: ../../keyboard.pm:1
#, c-format
msgid "Alt and Shift keys simultaneously"
msgstr "Alt eyet Shift e minme tins"

#: ../../keyboard.pm:1
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "Control eyet Alt e minme tins"

#: ../../keyboard.pm:1
#, c-format
msgid "CapsLock key"
msgstr "Li tape CapsLock"

#: ../../keyboard.pm:1
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr "Control eyet Shift e minme tins"

#: ../../keyboard.pm:1
#, c-format
msgid "Both Shift keys simultaneously"
msgstr "Les deus tapes di Shift e minme tins"

#: ../../keyboard.pm:1
#, c-format
msgid "Right Alt key"
msgstr "Li tape AltGr"

#: ../../keyboard.pm:1
#, c-format
msgid "Yugoslavian (latin)"
msgstr "Yugoslave (latene)"

#: ../../keyboard.pm:1
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamyinne QWERTY (roye des limeros)"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard (international)"
msgstr "Taprece des Etats Unis (moitès tapes)"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard"
msgstr "Taprece des Etats Unis"

#: ../../keyboard.pm:1
#, c-format
msgid "UK keyboard"
msgstr "Taprece do Rweyåme Uni"

#: ../../keyboard.pm:1
#, c-format
msgid "Ukrainian"
msgstr "Ucrainyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (modern \"Q\" model)"
msgstr "Turke (cogne modiene «Q»)"

#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (traditional \"F\" model)"
msgstr "Turke (cogne wårdiveuse «F»)"

#: ../../keyboard.pm:1
#, c-format
msgid "Tajik keyboard"
msgstr "Tadjike"

#: ../../keyboard.pm:1
#, c-format
msgid "Thai keyboard"
msgstr "Tailandesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Tamil (Typewriter-layout)"
msgstr "Tamoule (adjinçmint «taprece mecanike»)"

#: ../../keyboard.pm:1
#, c-format
msgid "Tamil (ISCII-layout)"
msgstr "Tamoule (adjinçmint ISCII)"

#: ../../keyboard.pm:1
#, c-format
msgid "Serbian (cyrillic)"
msgstr "Serbe (cirilike)"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTY)"
msgstr "Slovake (QWERTY)"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTZ)"
msgstr "Slovake (QWERTZ)"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovenian"
msgstr "Slovenyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Swedish"
msgstr "Suwedwesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Russian (Yawerty)"
msgstr "Russe (YAVERTY)"

#: ../../keyboard.pm:1
#, c-format
msgid "Russian"
msgstr "Russe"

#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwerty)"
msgstr "Roumin (QWERTY)"

#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwertz)"
msgstr "Roumin (QWERTZ)"

#: ../../keyboard.pm:1
#, c-format
msgid "Canadian (Quebec)"
msgstr "Canadyinne (Québec)"

#: ../../keyboard.pm:1
#, c-format
msgid "Portuguese"
msgstr "Portuguesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwertz layout)"
msgstr "Polonesse (cogne QWERTZ)"

#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwerty layout)"
msgstr "Polonesse (cogne QWERTY)"

#: ../../keyboard.pm:1
#, c-format
msgid "Norwegian"
msgstr "Norvedjyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Dutch"
msgstr "Neyerlandesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (US)"
msgstr "Maltesse (US)"

#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (UK)"
msgstr "Maltesse (UK)"

#: ../../keyboard.pm:1
#, c-format
msgid "Mongolian (cyrillic)"
msgstr "Mongole (cirilike)"

#: ../../keyboard.pm:1
#, c-format
msgid "Myanmar (Burmese)"
msgstr "Birmane"

#: ../../keyboard.pm:1
#, c-format
msgid "Macedonian"
msgstr "Macedonyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Malayalam"
msgstr "Malayalam"

#: ../../keyboard.pm:1
#, c-format
msgid "Latvian"
msgstr "Letone"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanyinne QWERTY (fonetike)"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanyinne QWERTY (roye des limeros)"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanyinne AZERTY (novele modêye)"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanyinne AZERTY (vîle modêye)"

#: ../../keyboard.pm:1
#, c-format
msgid "Laotian"
msgstr "Lawocyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Latin American"
msgstr "Taprece del Amerike nonnrece"

#: ../../keyboard.pm:1
#, c-format
msgid "Korean keyboard"
msgstr "Taprece coreyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Japanese 106 keys"
msgstr "Djaponesse di 106 tapes"

#: ../../keyboard.pm:1
#, c-format
msgid "Inuktitut"
msgstr "Inuktitut"

#: ../../keyboard.pm:1
#, c-format
msgid "Italian"
msgstr "Itålyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Icelandic"
msgstr "Izlandesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Iranian"
msgstr "Iranyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli (Phonetic)"
msgstr "Israyelyinne (fonetike)"

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli"
msgstr "Israyelyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Croatian"
msgstr "Crowåte"

#: ../../keyboard.pm:1
#, c-format
msgid "Hungarian"
msgstr "Hongrwesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Gurmukhi"
msgstr "Indyinne (Gurmukhi)"

#: ../../keyboard.pm:1
#, c-format
msgid "Gujarati"
msgstr "Indyinne (Gujarati)"

#: ../../keyboard.pm:1
#, c-format
msgid "Greek"
msgstr "Greke"

#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Latin\" layout)"
msgstr "Djeordjyinne (cogne latene)"

#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Russian\" layout)"
msgstr "Djeordjyinne (cogne russe)"

#: ../../keyboard.pm:1
#, c-format
msgid "French"
msgstr "Francesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
msgstr "Finwesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Spanish"
msgstr "Espagnole"

#: ../../keyboard.pm:1
#, c-format
msgid "Estonian"
msgstr "Estonyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Swedish)"
msgstr "Taprece dvorak suwedwesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Norwegian)"
msgstr "Taprece Dvorak norvedjyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (US)"
msgstr "Taprece dvorak (US)"

#: ../../keyboard.pm:1
#, c-format
msgid "Danish"
msgstr "Danwesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Devanagari"
msgstr "Indyinne (Devanagari)"

#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
msgstr "Almande (sins moitès tapes)"

#: ../../keyboard.pm:1
#, c-format
msgid "German"
msgstr "Almande"

#: ../../keyboard.pm:1
#, c-format
msgid "Czech (QWERTY)"
msgstr "Tcheke (QWERTY)"

#: ../../keyboard.pm:1
#, c-format
msgid "Czech (QWERTZ)"
msgstr "Tcheke (QWERTZ)"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (French layout)"
msgstr "Swisse (cogne romande)"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (German layout)"
msgstr "Swisse (cogne tîxhone)"

#: ../../keyboard.pm:1
#, c-format
msgid "Belarusian"
msgstr "Bielorusse"

#: ../../keyboard.pm:1
#, c-format
msgid "Bosnian"
msgstr "Bosnyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Brazilian (ABNT-2)"
msgstr "Braezilyinne (ABNT-2)"

#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (BDS)"
msgstr "Bulgåre (BDS)"

#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (phonetic)"
msgstr "Bulgåre (fonetike)"

#: ../../keyboard.pm:1
#, c-format
msgid "Bengali"
msgstr "Bengalesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Belgian"
msgstr "Belje"

#: ../../keyboard.pm:1
#, c-format
msgid "Azerbaidjani (latin)"
msgstr "Azerbaydjanesse (latene)"

#: ../../keyboard.pm:1
#, c-format
msgid "Arabic"
msgstr "Arabe"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (phonetic)"
msgstr "Årmenyinne (fonetike)"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (typewriter)"
msgstr "Årmenyinne (novele modêye)"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (old)"
msgstr "Årmenyinne (vîle modêye)"

#: ../../keyboard.pm:1
#, c-format
msgid "Albanian"
msgstr "Albanyinne"

#: ../../keyboard.pm:1
#, c-format
msgid "Polish"
msgstr "Polonesse"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak"
msgstr "Taprece dvorak"

#: ../../lang.pm:1
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwè"

#: ../../lang.pm:1
#, c-format
msgid "Zambia"
msgstr "Zambeye"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "South Africa"
msgstr "Nonne Afrike"

#: ../../lang.pm:1
#, c-format
msgid "Serbia"
msgstr "Serbeye"

#: ../../lang.pm:1
#, c-format
msgid "Mayotte"
msgstr "Mayote"

#: ../../lang.pm:1
#, c-format
msgid "Yemen"
msgstr "Yemen"

#: ../../lang.pm:1
#, c-format
msgid "Samoa"
msgstr "Samowa"

#: ../../lang.pm:1
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis et Futuna"

#: ../../lang.pm:1
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"

#: ../../lang.pm:1
#, c-format
msgid "Vietnam"
msgstr "Vietnam"

#: ../../lang.pm:1
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Virgin Islands (British)"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Vatican"
msgstr "Vatican"

#: ../../lang.pm:1
#, c-format
msgid "Uzbekistan"
msgstr "Ouzbekistan"

#: ../../lang.pm:1
#, c-format
msgid "Uruguay"
msgstr "Ourougway"

#: ../../lang.pm:1
#, c-format
msgid "United States Minor Outlying Islands"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Uganda"
msgstr "Ouganda"

#: ../../lang.pm:1
#, c-format
msgid "Ukraine"
msgstr "Ucrinne"

#: ../../lang.pm:1
#, c-format
msgid "Tanzania"
msgstr "Tanzaneye"

#: ../../lang.pm:1
#, c-format
msgid "Taiwan"
msgstr "Taiwan"

#: ../../lang.pm:1
#, c-format
msgid "Tuvalu"
msgstr "Touvalou"

#: ../../lang.pm:1
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinité et Tobago"

#: ../../lang.pm:1
#, c-format
msgid "Turkey"
msgstr "Turkeye"

#: ../../lang.pm:1
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: ../../lang.pm:1
#, c-format
msgid "Tunisia"
msgstr "Tunizeye"

#: ../../lang.pm:1
#, c-format
msgid "Turkmenistan"
msgstr "Turcmenistan"

#: ../../lang.pm:1
#, c-format
msgid "East Timor"
msgstr "Timor Leste"

#: ../../lang.pm:1
#, c-format
msgid "Tokelau"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Tajikistan"
msgstr "Tadjikistan"

#: ../../lang.pm:1
#, c-format
msgid "Thailand"
msgstr "Taylande"

#: ../../lang.pm:1
#, c-format
msgid "Togo"
msgstr "Togo"

#: ../../lang.pm:1
#, c-format
msgid "French Southern Territories"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Chad"
msgstr "Tchad"

#: ../../lang.pm:1
#, c-format
msgid "Turks and Caicos Islands"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Swaziland"
msgstr "Swaziland"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Syria"
msgstr "Suriname"

#: ../../lang.pm:1
#, c-format
msgid "El Salvador"
msgstr "El Salvador"

#: ../../lang.pm:1
#, c-format
msgid "Sao Tome and Principe"
msgstr "São Tomé et Prince"

#: ../../lang.pm:1
#, c-format
msgid "Suriname"
msgstr "Suriname"

#: ../../lang.pm:1
#, c-format
msgid "Somalia"
msgstr "Somaleye"

#: ../../lang.pm:1
#, c-format
msgid "Senegal"
msgstr "Sénégal"

#: ../../lang.pm:1
#, c-format
msgid "San Marino"
msgstr "Sint Marin"

#: ../../lang.pm:1
#, c-format
msgid "Sierra Leone"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Slovakia"
msgstr "Eslovakeye"

#: ../../lang.pm:1
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Slovenia"
msgstr "Esloveneye"

#: ../../lang.pm:1
#, c-format
msgid "Saint Helena"
msgstr "Sinte Helene"

#: ../../lang.pm:1
#, c-format
msgid "Singapore"
msgstr "Singapour"

#: ../../lang.pm:1
#, c-format
msgid "Sudan"
msgstr "Soudan"

#: ../../lang.pm:1
#, c-format
msgid "Seychelles"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Solomon Islands"
msgstr "Iyes Solomon"

#: ../../lang.pm:1
#, c-format
msgid "Saudi Arabia"
msgstr "Arabeye Sawoudite"

#: ../../lang.pm:1
#, c-format
msgid "Rwanda"
msgstr "Rwanda"

#: ../../lang.pm:1
#, c-format
msgid "Russia"
msgstr "Russeye"

#: ../../lang.pm:1
#, c-format
msgid "Romania"
msgstr "Roumaneye"

#: ../../lang.pm:1
#, c-format
msgid "Reunion"
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Qatar"
msgstr "Male"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Palau"
msgstr "Paragway"

#: ../../lang.pm:1
#, c-format
msgid "Paraguay"
msgstr "Paragway"

#: ../../lang.pm:1
#, c-format
msgid "Portugal"
msgstr "Portugal"

#: ../../lang.pm:1
#, c-format
msgid "Palestine"
msgstr "Palestene"

#: ../../lang.pm:1
#, c-format
msgid "Puerto Rico"
msgstr "Porto Rico"

#: ../../lang.pm:1
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: ../../lang.pm:1
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Sint Pierre et Miquelon"

#: ../../lang.pm:1
#, c-format
msgid "Poland"
msgstr "Pologne"

#: ../../lang.pm:1
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: ../../lang.pm:1
#, c-format
msgid "Philippines"
msgstr "Filipenes"

#: ../../lang.pm:1
#, c-format
msgid "Papua New Guinea"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "French Polynesia"
msgstr "Polinezeye francesse"

#: ../../lang.pm:1
#, c-format
msgid "Peru"
msgstr "Perou"

#: ../../lang.pm:1
#, c-format
msgid "Panama"
msgstr "Panama"

#: ../../lang.pm:1
#, c-format
msgid "Oman"
msgstr "Oman"

#: ../../lang.pm:1
#, c-format
msgid "New Zealand"
msgstr "Nouve Zelande"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Niue"
msgstr "Nidjer"

#: ../../lang.pm:1
#, c-format
msgid "Nauru"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: ../../lang.pm:1
#, c-format
msgid "Nicaragua"
msgstr "Nicaragwa"

#: ../../lang.pm:1
#, c-format
msgid "Nigeria"
msgstr "Nidjeria"

#: ../../lang.pm:1
#, c-format
msgid "Norfolk Island"
msgstr "Iye Norfolk"

#: ../../lang.pm:1
#, c-format
msgid "Niger"
msgstr "Nidjer"

#: ../../lang.pm:1
#, c-format
msgid "New Caledonia"
msgstr "Nouve Caledonreye"

#: ../../lang.pm:1
#, c-format
msgid "Namibia"
msgstr "Namibeye"

#: ../../lang.pm:1
#, c-format
msgid "Mozambique"
msgstr "Mozambike"

#: ../../lang.pm:1
#, c-format
msgid "Malaysia"
msgstr "Malezeye"

#: ../../lang.pm:1
#, c-format
msgid "Mexico"
msgstr "Mecsike"

#: ../../lang.pm:1
#, c-format
msgid "Malawi"
msgstr "Malawi"

#: ../../lang.pm:1
#, c-format
msgid "Maldives"
msgstr "Maldives"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Mauritius"
msgstr "Martinike"

#: ../../lang.pm:1
#, c-format
msgid "Malta"
msgstr "Male"

#: ../../lang.pm:1
#, c-format
msgid "Montserrat"
msgstr "Montserrat"

#: ../../lang.pm:1
#, c-format
msgid "Mauritania"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Martinique"
msgstr "Martinike"

#: ../../lang.pm:1
#, c-format
msgid "Northern Mariana Islands"
msgstr "Iyes Marianes bijhreces"

#: ../../lang.pm:1
#, c-format
msgid "Mongolia"
msgstr "Mongoleye"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Myanmar"
msgstr "Daenmåtche"

#: ../../lang.pm:1
#, c-format
msgid "Mali"
msgstr "Mali"

#: ../../lang.pm:1
#, c-format
msgid "Macedonia"
msgstr "Macedoneye"

#: ../../lang.pm:1
#, c-format
msgid "Marshall Islands"
msgstr "Iyes Marshall"

#: ../../lang.pm:1
#, c-format
msgid "Madagascar"
msgstr "Madagascar"

#: ../../lang.pm:1
#, c-format
msgid "Moldova"
msgstr "Moldova"

#: ../../lang.pm:1
#, c-format
msgid "Monaco"
msgstr "Monaco"

#: ../../lang.pm:1
#, c-format
msgid "Morocco"
msgstr "Marok"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Libya"
msgstr "Liberia"

#: ../../lang.pm:1
#, c-format
msgid "Latvia"
msgstr "Letoneye"

#: ../../lang.pm:1
#, c-format
msgid "Luxembourg"
msgstr "Lucsimbork"

#: ../../lang.pm:1
#, c-format
msgid "Lithuania"
msgstr "Litwaneye"

#: ../../lang.pm:1
#, c-format
msgid "Lesotho"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Liberia"
msgstr "Liberia"

#: ../../lang.pm:1
#, c-format
msgid "Sri Lanka"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Liechtenstein"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Saint Lucia"
msgstr "Sinte Luciye"

#: ../../lang.pm:1
#, c-format
msgid "Lebanon"
msgstr "Liban"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Laos"
msgstr "Djournå"

#: ../../lang.pm:1
#, c-format
msgid "Kazakhstan"
msgstr "Kazaxhstan"

#: ../../lang.pm:1
#, c-format
msgid "Cayman Islands"
msgstr "Iyes Cayman"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Kuwait"
msgstr "Moussî foû"

#: ../../lang.pm:1
#, c-format
msgid "Korea"
msgstr "Coreye"

#: ../../lang.pm:1
#, c-format
msgid "Korea (North)"
msgstr "Coreye do Nôr"

#: ../../lang.pm:1
#, c-format
msgid "Saint Kitts and Nevis"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Comoros"
msgstr "Comores"

#: ../../lang.pm:1
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: ../../lang.pm:1
#, c-format
msgid "Cambodia"
msgstr "Cambodje"

#: ../../lang.pm:1
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgizstan"

#: ../../lang.pm:1
#, c-format
msgid "Kenya"
msgstr "Kenia"

#: ../../lang.pm:1
#, c-format
msgid "Japan"
msgstr "Djapon"

#: ../../lang.pm:1
#, c-format
msgid "Jordan"
msgstr "Djordaneye"

#: ../../lang.pm:1
#, c-format
msgid "Jamaica"
msgstr "Djamayike"

#: ../../lang.pm:1
#, c-format
msgid "Iceland"
msgstr "Izlande"

#: ../../lang.pm:1
#, c-format
msgid "Iran"
msgstr "Iran"

#: ../../lang.pm:1
#, c-format
msgid "Iraq"
msgstr "Irak"

#: ../../lang.pm:1
#, c-format
msgid "British Indian Ocean Territory"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "India"
msgstr "Inde"

#: ../../lang.pm:1
#, c-format
msgid "Israel"
msgstr "Israyel"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Ireland"
msgstr "Irlande"

#: ../../lang.pm:1
#, c-format
msgid "Indonesia"
msgstr "Indonezeye"

#: ../../lang.pm:1
#, c-format
msgid "Hungary"
msgstr "Hongreye"

#: ../../lang.pm:1
#, c-format
msgid "Haiti"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Croatia"
msgstr "Crowåceye"

#: ../../lang.pm:1
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: ../../lang.pm:1
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Iyes Heard et McDonald"

#: ../../lang.pm:1
#, c-format
msgid "Hong Kong"
msgstr "Hong Kong"

#: ../../lang.pm:1
#, c-format
msgid "Guyana"
msgstr "Guyane"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guinea-Bissau"
msgstr "Guineye"

#: ../../lang.pm:1
#, c-format
msgid "Guam"
msgstr "Guam"

#: ../../lang.pm:1
#, c-format
msgid "Guatemala"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Equatorial Guinea"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Guadeloupe"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Guinea"
msgstr "Guineye"

#: ../../lang.pm:1
#, c-format
msgid "Gambia"
msgstr "Gambeye"

#: ../../lang.pm:1
#, c-format
msgid "Greenland"
msgstr "Groenlande"

#: ../../lang.pm:1
#, c-format
msgid "Gibraltar"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Ghana"
msgstr "Ghana"

#: ../../lang.pm:1
#, c-format
msgid "French Guiana"
msgstr "Guyane francesse"

#: ../../lang.pm:1
#, c-format
msgid "Georgia"
msgstr "Djeyordjeye"

#: ../../lang.pm:1
#, c-format
msgid "Grenada"
msgstr "Grenade"

#: ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United Kingdom"
msgstr "Rweyåme-Uni"

#: ../../lang.pm:1
#, c-format
msgid "Gabon"
msgstr "Gabon"

#: ../../lang.pm:1
#, c-format
msgid "Faroe Islands"
msgstr "Iyes Faeroyé"

#: ../../lang.pm:1
#, c-format
msgid "Micronesia"
msgstr "Micronezeye"

#: ../../lang.pm:1
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Iyes Malouwines"

#: ../../lang.pm:1
#, c-format
msgid "Fiji"
msgstr "Fidji"

#: ../../lang.pm:1
#, c-format
msgid "Finland"
msgstr "Finlande"

#: ../../lang.pm:1
#, c-format
msgid "Ethiopia"
msgstr "Etiopeye"

#: ../../lang.pm:1
#, c-format
msgid "Spain"
msgstr "Espagne"

#: ../../lang.pm:1
#, c-format
msgid "Eritrea"
msgstr "Eritreye"

#: ../../lang.pm:1
#, c-format
msgid "Western Sahara"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Egypt"
msgstr "Edjipe"

#: ../../lang.pm:1
#, c-format
msgid "Estonia"
msgstr "Estoneye"

#: ../../lang.pm:1
#, c-format
msgid "Ecuador"
msgstr "Ecwåteur"

#: ../../lang.pm:1
#, c-format
msgid "Algeria"
msgstr "Aldjereye"

#: ../../lang.pm:1
#, c-format
msgid "Dominican Republic"
msgstr "Republike Dominikinne"

#: ../../lang.pm:1
#, c-format
msgid "Dominica"
msgstr "Dominike"

#: ../../lang.pm:1
#, c-format
msgid "Denmark"
msgstr "Daenmåtche"

#: ../../lang.pm:1
#, c-format
msgid "Djibouti"
msgstr "Djibouti"

#: ../../lang.pm:1
#, c-format
msgid "Cyprus"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Christmas Island"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Cape Verde"
msgstr "Cap Vert"

#: ../../lang.pm:1
#, c-format
msgid "Cuba"
msgstr "Cuba"

#: ../../lang.pm:1
#, c-format
msgid "Colombia"
msgstr "Colombeye"

#: ../../lang.pm:1
#, c-format
msgid "China"
msgstr "Chine"

#: ../../lang.pm:1
#, c-format
msgid "Cameroon"
msgstr "Camrone"

#: ../../lang.pm:1
#, c-format
msgid "Chile"
msgstr "Tchili"

#: ../../lang.pm:1
#, c-format
msgid "Cook Islands"
msgstr "Iyes Cook"

#: ../../lang.pm:1
#, c-format
msgid "Cote d'Ivoire"
msgstr "Coddivwere"

#: ../../lang.pm:1
#, c-format
msgid "Switzerland"
msgstr "Swisse"

#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Central African Republic"
msgstr "Republike Cintrafrikinne"

#: ../../lang.pm:1
#, c-format
msgid "Congo (Kinshasa)"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Canada"
msgstr "Canada"

#: ../../lang.pm:1
#, c-format
msgid "Belize"
msgstr "Belize"

#: ../../lang.pm:1
#, c-format
msgid "Belarus"
msgstr "Belarûsse"

#: ../../lang.pm:1
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: ../../lang.pm:1
#, c-format
msgid "Bouvet Island"
msgstr "Iye Bouvet"

#: ../../lang.pm:1
#, c-format
msgid "Bhutan"
msgstr "Boutan"

#: ../../lang.pm:1
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: ../../lang.pm:1
#, c-format
msgid "Brazil"
msgstr "Braezi"

#: ../../lang.pm:1
#, c-format
msgid "Bolivia"
msgstr "Boliveye"

#: ../../lang.pm:1
#, c-format
msgid "Brunei Darussalam"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Bermuda"
msgstr "Bermude"

#: ../../lang.pm:1
#, c-format
msgid "Benin"
msgstr "Bénin"

#: ../../lang.pm:1
#, c-format
msgid "Burundi"
msgstr "Bouroundi"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Bahrain"
msgstr "Braezi"

#: ../../lang.pm:1
#, c-format
msgid "Bulgaria"
msgstr "Bulgåreye"

#: ../../lang.pm:1
#, c-format
msgid "Burkina Faso"
msgstr "Bourkina Fasso"

#: ../../lang.pm:1
#, c-format
msgid "Bangladesh"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Barbados"
msgstr "Barbades"

#: ../../lang.pm:1
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosneye"

#: ../../lang.pm:1
#, c-format
msgid "Azerbaijan"
msgstr "Azerbaydjan"

#: ../../lang.pm:1
#, c-format
msgid "Aruba"
msgstr "Arouba"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Australia"
msgstr "Ostraleye"

#: ../../lang.pm:1
#, c-format
msgid "American Samoa"
msgstr ""

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Argentina"
msgstr "Årdjintene"

#: ../../lang.pm:1
#, c-format
msgid "Antarctica"
msgstr "Antartike"

#: ../../lang.pm:1
#, c-format
msgid "Angola"
msgstr "Angola"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Netherlands Antilles"
msgstr "Bas Payis"

#: ../../lang.pm:1
#, c-format
msgid "Armenia"
msgstr "Årmeneye"

#: ../../lang.pm:1
#, c-format
msgid "Albania"
msgstr "Albaneye"

#: ../../lang.pm:1
#, c-format
msgid "Anguilla"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Antigua and Barbuda"
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "United Arab Emirates"
msgstr "Etats Unis"

#: ../../lang.pm:1
#, c-format
msgid "Andorra"
msgstr "Andorre"

#: ../../lang.pm:1
#, c-format
msgid "Afghanistan"
msgstr "Afganistan"

#: ../../lang.pm:1
#, c-format
msgid "default:LTR"
msgstr "defailt:LTR"

#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "Betchfessîs montaedjes %s\n"

#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Oister les volumes lodjikes d' aprume\n"

#: ../../modules.pm:1
#, c-format
msgid ""
"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"I gn a pupont d' sopoirt PCMCIA avou les naweas 2.2. Eployîz on nawea 2.4 "
"s' i vs plait."

#: ../../mouse.pm:1
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "BODJÎZ L' RÔLETE!"

#: ../../mouse.pm:1
#, c-format
msgid "To activate the mouse,"
msgstr "Po mete en alaedje li sori,"

#: ../../mouse.pm:1
#, c-format
msgid "Please test the mouse"
msgstr "Sayîz on pô vosse sori"

#: ../../mouse.pm:1
#, c-format
msgid "No mouse"
msgstr "Nole sori"

#: ../../mouse.pm:1
#, c-format
msgid "none"
msgstr "nouk"

#: ../../mouse.pm:1
#, c-format
msgid "3 buttons"
msgstr "3 botons"

#: ../../mouse.pm:1
#, c-format
msgid "2 buttons"
msgstr "2 botons"

#: ../../mouse.pm:1
#, c-format
msgid "1 button"
msgstr "1 boton"

#: ../../mouse.pm:1
#, c-format
msgid "busmouse"
msgstr "sori bus"

#: ../../mouse.pm:1
#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (séreye, vî sôrt C7)"

#: ../../mouse.pm:1
#, c-format
msgid "MM HitTablet"
msgstr "MM HitTablet"

#: ../../mouse.pm:1
#, c-format
msgid "MM Series"
msgstr "MM Series"

#: ../../mouse.pm:1
#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech CC Series"
msgstr "Logitech CC Series"

#: ../../mouse.pm:1
#, c-format
msgid "Mouse Systems"
msgstr "Mouse Systems"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"

#: ../../mouse.pm:1
#, c-format
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"

#: ../../mouse.pm:1
#, c-format
msgid "Generic 3 Button Mouse"
msgstr "Soris tipike a 3 botons"

#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Soris tipike a 2 botons"

#: ../../mouse.pm:1
#, c-format
msgid "serial"
msgstr "séreye"

#: ../../mouse.pm:1
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"

#: ../../mouse.pm:1
#, c-format
msgid "Wheel"
msgstr "Rôlete"

#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Generic"
msgstr "Djenerike"

#: ../../mouse.pm:1
#, c-format
msgid "Genius NetScroll"
msgstr "Genius NetScroll"

#: ../../mouse.pm:1
#, c-format
msgid "GlidePoint"
msgstr "GlidePoint"

#: ../../mouse.pm:1
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "Soris tipike PS2 a rôlete"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"

#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
msgid "Standard"
msgstr "Tipike"

#: ../../mouse.pm:1
#, c-format
msgid "Sun - Mouse"
msgstr "Sori SUN"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Passer di nou relijhaedje a on relijhaedje pa hopeas"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Collapse Tree"
msgstr "Raptixhî l' coxhlaedje"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
msgstr "Ragrandi l' coxhlaedje"

#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
msgstr "Informåcion"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Is this correct?"
msgstr "Totafwait va-t i comufåt?"

#: ../../my_gtk.pm:1
#, c-format
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"

#: ../../partition_table.pm:1
#, c-format
msgid "Error writing to file %s"
msgstr "Åk n' a nén stî come dji sayive di scrire el fitchî %s"

#: ../../partition_table.pm:1
#, c-format
msgid "Bad backup file"
msgstr "Måva fitchî di copeye di såvrité"

#: ../../partition_table.pm:1
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Åk n' a nén stî come dji sayive di rifé a pårti do fitchî %s: %s"

#: ../../partition_table.pm:1
#, c-format
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Vos avoz on trô dvins vosse tåvlea di pårtixhaedje, mins dji n' pout nén "
"l' eployî.\n"
"Li seule solucion c' est di bodjî vos mwaissès pårticions po-z aveur li trô "
"a costé des pårticions stindowes"

#: ../../partition_table.pm:1
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Sitindowe pårticion nén sopoirtêye so cisse platfôme chal"

#: ../../partition_table.pm:1
#, c-format
msgid "mount failed: "
msgstr "li montaedje a fwait berwete: "

#: ../../pkgs.pm:1
#, c-format
msgid "maybe"
msgstr "ki vénreut co bén a pont"

#: ../../pkgs.pm:1
#, c-format
msgid "nice"
msgstr "plaijhi a-z avu"

#: ../../pkgs.pm:1
#, c-format
msgid "very nice"
msgstr "mo plaijhi a-z avu"

#: ../../pkgs.pm:1
#, c-format
msgid "important"
msgstr "ki vént bén a pont"

#: ../../pkgs.pm:1
#, c-format
msgid "must have"
msgstr "k' i fåt d' tote foice avu"

#: ../../raid.pm:1
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "I gn a nén des pårticions assez pol livea RAID %d\n"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed"
msgstr "mkraid n' a nén stî"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid n' a nén stî (motoit vos n' avoz nén les raidtools?)"

#: ../../raid.pm:1
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Dji n' pout radjouter ene pårticion a on RAID _abwesné_ md%d"

#: ../../services.pm:1
#, c-format
msgid "Stop"
msgstr "Arester"

#: ../../services.pm:1
#, c-format
msgid "Start"
msgstr "Enonder"

#: ../../services.pm:1
#, c-format
msgid "On boot"
msgstr "A l' enondaedje"

#: ../../services.pm:1
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
"Mande escuzes, mins dj' a pont d' ôtès\n"
"informåcions so ci siervice chal."

#: ../../services.pm:1
#, c-format
msgid "Services and deamons"
msgstr "Siervices et démons"

#: ../../services.pm:1
#, c-format
msgid "stopped"
msgstr "djoké"

#: ../../services.pm:1
#, c-format
msgid "running"
msgstr "en alaedje"

#: ../../services.pm:1
#, c-format
msgid "Choose which services should be automatically started at boot time"
msgstr ""
"Tchoezixhoz kés siervices dvèt esse enondés a l' enondaedje do sistinme"

#: ../../services.pm:1
#, c-format
msgid "Database Server"
msgstr "Sierveu di båze di dnêyes"

#: ../../services.pm:1
#, c-format
msgid "Remote Administration"
msgstr "Administråcion då lon"

#: ../../services.pm:1
#, c-format
msgid "File sharing"
msgstr "Pårtaedje di fitchîs"

#: ../../services.pm:1
#, c-format
msgid "Internet"
msgstr "Rantoele"

#: ../../services.pm:1
#, c-format
msgid "Printing"
msgstr "Eprimaedje"

#: ../../services.pm:1
#, c-format
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
"Enonder li sierveu d' fontes å moumint di l' enondaedje\n"
"(çoula est obligatwere si vos vloz eployî XFree)."

#: ../../services.pm:1
#, c-format
msgid "Load the drivers for your usb devices."
msgstr "Tcherdjî les mineus po vos éndjins USB."

#: ../../services.pm:1
#, 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 est ene usteye ki schoûte les diferins démons ki lyi evoyèt\n"
"des messaedjes po mete dvins les fitchîs djournå do sistinme.\n"
"C' est ene bone idêye di l' aveur todi en alaedje."

#: ../../services.pm:1
#, c-format
msgid "Launch the sound system on your machine"
msgstr "Enonder li sistinme di son so voste éndjole"

#: ../../services.pm:1
#, 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 (similiar to finger)."
msgstr ""
"Li protocole rwho c' est po des lodjoes å lon poleur vey ene djivêye\n"
"di tos les uzeus ki sont raloyîs sol éndjole, si l' démon rwho est\n"
"astalé eyet en alaedje (çoula ravize a finger)."

#: ../../services.pm:1
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"Li protocole rusers c' est po les uzeus k' i gn a sor ene rantoele poleur\n"
"idintifyî kî est raloyî so des ôtès éndjoles."

#: ../../services.pm:1
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"Li protocole rstat c' est po les uzeus k' i gn a sor ene rantoele poleur\n"
"vey des informåcions sol performance d' ene éndjole del rantoele."

#: ../../services.pm:1
#, 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 ""
"Li démon routed c' est po-z aveur li tåvlea di routaedje IP esse metou a "
"djoû\n"
"otomaticmint viè l' protocole RIP. Li protocole RIP est bråmint eployî avou\n"
"les ptitès rantoeles, mins des pus complesses rantoeles ont mezåjhe di pus "
"complesses protocoles."

#: ../../services.pm:1
#, 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 ""
"Assinaedje di peur éndjins (raw devices) po les éndjins di sôre blok (come\n"
"les pårticions des deurès plakes), po des programas come Oracle\n"
"ou des lijheus d' plakes lazer DVD s' endè siervi"

#: ../../services.pm:1
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Schaper et rprinde l' éntropeye do sistinme, po-z aveur ene askepiance\n"
"di nombes aleatoires di meyeuse cwålité."

#: ../../services.pm:1
#, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
"Postfix est ene usteye ki fwait voyaedjî les emiles d' ene éndjole a l' ôte."

#: ../../services.pm:1
#, 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 ""
"Li mapeu d' pôrts manaedje les raloyaedjes RPC, ki sont-st eployîs pa\n"
"des protocoles come NFS ou NIS. Li sierveu portmap doet esse en alaedje\n"
"so les éndjoles ki dvèt esse des sierveus po des protocoles ki s' e siervèt "
"do RPC."

#: ../../services.pm:1
#, c-format
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops.  It won't get started unless configured so it is safe to "
"have\n"
"it installed on machines that don't need it."
msgstr ""
"Li sopoirt PCMCIA c' est po sopoirter des sacwès come des cåtes rantoele\n"
"ou des modems, avou les poirtåvès copiutreces. I n' srè nén enondé a moens\n"
"di esse apontyî, adon c' est nén måva del leyî astalé minme so les éndjoles\n"
"wice k' on n' s' e siervèt nén."

#: ../../services.pm:1
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr "Sopoirt po les scrireces OKI 4w et copatibes."

#: ../../services.pm:1
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and XFree at boot."
msgstr ""
"Mete otomaticmint en alaedje li coine des tapes limerikes del taprece\n"
"a l' enondaedje; ossu bén so X11 k' e conzôle."

#: ../../services.pm:1
#, 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 est on protocole populaire po pårtaedjî des fitchîs so les rantoeles TCP/"
"IP.\n"
"Ci siervice chal c' est po-z aveur li foncsionalité di blocaedje\n"
"di fitchîs pa NFS."

#: ../../services.pm:1
#, 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 est on protocole populaire po pårtaedjî des fitchîs so les rantoeles TCP/"
"IP.\n"
"Ci siervice chal c' est po-z aveur on sierveu NFS, ki est apontyî\n"
"viè l' fitchî /etc/exports."

#: ../../services.pm:1
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Enonde ou arestêye totes les eterfaces di rantoele apontieyes po\n"
"s' mete en alaedje cwand c' est ki l' éndjole s' enonde."

#: ../../services.pm:1
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Monte et dismonte les ponts di montaedje po Network File System (NFS), \n"
"SMB (Lan Manager/Windows) et NCP (NetWare)."

#: ../../services.pm:1
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"named (BIND) est on sierveu di nos d' dominne (DNS) eployî po-z aveur les "
"adresses IP limerikes a pårti des nos des lodjoes."

#: ../../services.pm:1
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""
"Li forveyou sierveu Linux, eployî po fé on sierveu di hôte performance\n"
"et di hôte disponibilité (high-availability)."

#: ../../services.pm:1
#, 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 ""
"lpd est li démon d' eprimaedje k' i gn en a mezåjhe po lpr poleur rexhe "
"comufåt.\n"
"C' est on sierveu ki manaedje les bouyes po les scrireces."

#: ../../services.pm:1
#, c-format
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr ""
"Pa côps linuxconf va fé totès sôres di bouyes å moumint di\n"
"l' enondaedje po wårder l' apontiaedje do sistinme."

#: ../../services.pm:1
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr "Deteccion et apontiaedje otomatikes del éndjolreye a l' enondaedje."

#: ../../services.pm:1
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Fé otomaticmint des noveles tiestires do nawea dins /boot\n"
"a pårti di /usr/include/linux/{autoconf,version}.h"

#: ../../services.pm:1
#, 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 ""
"Ci pacaedje chal tchedje li taprece tchoezeye e /etc/sysconfig/keyboard.\n"
"Çoula pout esse apontyî avou l' usteye kbdconfig.\n"
"Vos l' dvoz leyî en alaedje pol plupårt des éndjoles."

#: ../../services.pm:1
#, 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 ""
"Enonde ene passete po les pakets rantoele, pol séreye di naweas Linux 2.2,\n"
"vos end avoz mezåjhe po mete so pîs on côpe feu po mete voste éndjole\n"
"a hipe des atakes des hacneus."

#: ../../services.pm:1
#, 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 ""
"Li démon Internet (inetd) est on «super-sierveu» k' enonde ene drigleye\n"
"d' ôtes siervices k' ont a vey avou Internet cwand c' est k' i gn a "
"mezåjhe.\n"
"Metans: telnet, ftp, rsh eyet rlogin.  Si vos n' purdoz nén inetd, nouk di "
"ces\n"
"siervices la ni såreut esse enondé."

#: ../../services.pm:1
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
"Apache est on sierveu HTTP. Il est eployî po siervi des pådjes waibe et des "
"CGI."

#: ../../services.pm:1
#, c-format
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
"HardDrake fwait ene deteccion del éndjolreye, et pout ossu apontyî\n"
"les noveas/candjîs éndjins."

#: ../../services.pm:1
#, 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 ""
"Avou GPM vos avoz li sopoirt del sori po les programes Linux e mode tecse,\n"
"come li «comandeu di meynute» (Midnight Commander, mc). Et vos avoz eto\n"
"li sopoirt po côper et d' plaker sol conzôle, et sopoirt po des menus\n"
"pop-up sol conzôle."

#: ../../services.pm:1
#, 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 ""
"cron est on programe sitandård po Unix.  Il enonde des programes tchoezis\n"
"pa l' uzeu a des moumints metous pa l' uzeu.  Li cron da Vixie radjoute "
"sacwants\n"
"siervice å programe cron tradicionél di Unix, par egzimpe ene meyeuse "
"såvrité\n"
"eyet des pus ritchès tchuzes po l' apontiaedje."

#: ../../services.pm:1
#, 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 ""
"Enonde les cmandes metowes avou li cmande at å moumint defini avou li cmande "
"at.\n"
"Sieve eto a enonder des cmandes batch cwand c' est ki l' éndjole n' a nén\n"
"trop d' ovraedje so les bresses."

#: ../../services.pm:1
#, 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 ""
"apmd sieve a shure l' etat del batreye et a scrire les racsegnmints avou "
"syslog.\n"
"I pout eto siervi a clôre l' éndjole cwand c' est ki les batreyes divnèt "
"flåwes."

#: ../../services.pm:1
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr ""
"Anacron manaedje des comandes a enonder periodicmint.\n"
"I ravize a «cron» mins po des sistinmes ki n' sont nén en alaedje\n"
"24e/24e. Anacron si tchedje di s' mete a djoû et d' enonder les tårdjowès\n"
"comandes cwand l' éndjole est enondêye."

#: ../../services.pm:1
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Enonder li sistinme di son ALSA (Advanced Linux Sound Architecture)"

#: ../../standalone.pm:1
#, c-format
msgid "Installing packages..."
msgstr "Astalant les pacaedjes..."

#: ../../standalone.pm:1
#, c-format
msgid ""
"\n"
"Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
"\n"
"Po s' e siervi: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] "
"[--testing] [-v|--version] "

#: ../../standalone.pm:1
#, c-format
msgid ""
" [everything]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolution"
msgstr ""

#: ../../standalone.pm:1
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
"[--manual] [--device=éndjin] [--update-sane=ridant_sourd_sane] [--update-"
"usbtable] [--dynamic=éndjin]"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTION]...\n"
"  --no-confirmation      don't ask first confirmation question in "
"MandrakeUpdate mode\n"
"  --no-verify-rpm        don't 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:1
#, c-format
msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"

#: ../../standalone.pm:1
#, 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 : don't be interactive. To be used with (dis)connect."
msgstr ""

#: ../../standalone.pm:1
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=fitchî] [--word=mot] [--explain=regexp] [--alert]"

#: ../../standalone.pm:1
#, c-format
msgid "[keyboard]"
msgstr "[taprece]"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS]...\n"
"Mandrake 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:1
#, c-format
msgid ""
"Font Importation and monitoring "
"application                                     \n"
"--windows_import : import from all available windows partitions.\n"
"--xls_fonts      : show all fonts that already exist from xls\n"
"--strong         : strong verification of font.\n"
"--install        : accept any font file and any directry.\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:1
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - print this help message.\n"
"  --report          - program should be one of mandrake tools\n"
"  --incident        - program should be one of mandrake tools"
msgstr ""
"[TCHUZES] [NO_DO_PROGRAME]\n"
"\n"
"TCHUZES:\n"
"  --help            - mostere ci messaedje d' aidance chal.\n"
"  --report          - li programe doet esse ene des usteyes di mandrake\n"
"  --incident        - li programe doet esse ene des usteyes di mandrake"

#: ../../standalone.pm:1
#, 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:1
#, 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 ""
"Çouchal, c' est on libe programe; vos l' poloz bén spåde et vos l' poloz\n"
"bén candjî tot shuvant li Licinse Publike Djeneråle (GPL) di GNU eplaideye\n"
"pal Free Software Foundation; ça pout esse li 2e modêye del licinse ou\n"
"(si vos inmez mî) ene pus nouve.\n"
"\n"
"Li programe est spårdou avou l' espwer k' i serè ahessåve,\n"
"mins SINS NOLE WAERANTEYE; dji n' waeranti nén minme ki vos VINDRÎZ\n"
"bén li programe ou ki vos vs È SIEVRÎZ BÉN PO ENE SÔRE OU L' ÔTE.\n"
"Waitîz li Licinse Publike Djeneråle (GPL) di GNU po vey les pondants\n"
"eyet les djondants.\n"
"\n"
"Avou ci programe ci, vos dvrîz aveur rshût ene copeye del Licinse Publike\n"
"Djeneråle (GPL) di GNU; si vos n' l' avoz nén avou, sicrijhoz al\n"
"    Free SoftWare Foundation, Inc.,\n"
"    59 Temple Place - Suite 330,\n"
"    Boston, MA 02111-1307, USA.\n"

#: ../../steps.pm:1
#, c-format
msgid "Exit install"
msgstr "Moussî foû"

#: ../../steps.pm:1
#, c-format
msgid "Install updates"
msgstr "Metaedjes a djoû"

#: ../../steps.pm:1
#, c-format
msgid "Configure services"
msgstr "Apontyî les siervices"

#: ../../steps.pm:1
#, c-format
msgid "Configure X"
msgstr "Apontyî X"

#: ../../steps.pm:1
#, c-format
msgid "Install bootloader"
msgstr "Astaler l' enondrece"

#: ../../steps.pm:1
#, c-format
msgid "Configure networking"
msgstr "Apontyî li rantoele"

#: ../../steps.pm:1
#, c-format
msgid "Add a user"
msgstr "Radjouter èn uzeu"

#: ../../steps.pm:1
#, c-format
msgid "Root password"
msgstr "Sicret di root"

#: ../../steps.pm:1
#, c-format
msgid "Install system"
msgstr "Astaler sistinme"

#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
msgstr "Pacaedjes a astaler"

#: ../../steps.pm:1
#, c-format
msgid "Format partitions"
msgstr "Abwesner pårticions"

#: ../../steps.pm:1
#, c-format
msgid "Partitioning"
msgstr "Pårtixhaedje"

#: ../../steps.pm:1
#, c-format
msgid "Choose your keyboard"
msgstr "Tchoezi vosse taprece"

#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
msgstr "Li classe d' astalåcion"

#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
msgstr "Trover les deurès plakes"

#: ../../steps.pm:1
#, c-format
msgid "Configure mouse"
msgstr "Apontyî li sori"

#: ../../steps.pm:1
#, c-format
msgid "License"
msgstr "Licince"

#: ../../steps.pm:1
#, c-format
msgid "Language"
msgstr "Lingaedje"

#: ../../ugtk2.pm:1
#, c-format
msgid "utopia 25"
msgstr "utopia 25"

#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../network/netconnect.pm:1
#: ../../standalone/drakTermServ:1 ../../standalone/drakbackup:1
#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
msgid "OK"
msgstr "'l est bon"

#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../standalone/logdrake:1
#, c-format
msgid "logdrake"
msgstr "logdrake"

#: ../../ugtk.pm:1
#, c-format
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (mineu di håynaedje pol astalaedje)"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
"Vos ploz eployî l' acceleråcion 3D di vosse cåte videyo avou XFree86 %s,\n"
"ASTEME: CI SOPOIRT EST CO ESPERIMENTÅ ET POUT DJALER VOSSE COPIUTRECE."

#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s avou del acceleråcion 3D ESPERIMENTÅLE"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vos ploz eployî l' acceleråcion 3D di vosse cåte videyo avou XFree %s."

#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s avou del acceleråcion 3D"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Vosse cåte pout aveur del acceleråcion 3D seulmint avou XFree %s.\n"
"ASTEME: CI SOPOIRT EST CO ESPERIMENTÅ ET POUT DJALER VOSSE COPIUTRECE.\n"
"Vosse cåte est sopoirtêye pa XFree %s ki pout aveur on meyeu sopoirt pol 2D."

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Vosse cåte pout aveur del acceleråcion 3D seulmint avou XFree %s.\n"
"Vosse cåte est sopoirtêye pa XFree %s ki pout aveur on meyeu sopoirt pol 2D."

#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s"
msgstr "XFree %s"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Apontyî rén kel cåte «%s»%s"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Use Xinerama extension"
msgstr "Eployî l' egztension «Xinerama»"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Configure all heads independently"
msgstr "Apontyî totes les waitroûles sepårumint"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
msgstr "Kén apontiaedje di XFree voloz vs?"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree configuration"
msgstr "Apontiaedje di XFree"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Select the memory size of your graphics card"
msgstr "Dijhoz li memwere di vosse cåte grafike"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your system supports multiple head configuration.\n"
"What do you want to do?"
msgstr ""
"Li sistinme da vosse sopoite d' eployî pus d' ene\n"
"waitroûle e minme tins.\n"
"Cwè voloz vs fé?"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Multi-head configuration"
msgstr "Apontiaedje po-z aveur pus d' ene waitroûle"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Choose an X server"
msgstr "Tchoezixhoz on sierveu X"

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

#: ../../Xconfig/card.pm:1
#, c-format
msgid "64 MB or more"
msgstr "64 Mo ou di pus"

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

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

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

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

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

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

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

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

#: ../../Xconfig/main.pm:1
#, c-format
msgid ""
"Keep the changes?\n"
"The current configuration is:\n"
"\n"
"%s"
msgstr ""
"Wårder les candjmints?\n"
"L' apontiaedje do moumint est:\n"
"\n"
"%s"

#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Options"
msgstr "Tchuzes"

#: ../../Xconfig/main.pm:1
#, c-format
msgid "Test"
msgstr "Saye"

#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolution"
msgstr "Finté"

#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Monitor"
msgstr "Waitroûle"

#: ../../Xconfig/main.pm:1
#, c-format
msgid "Graphic Card"
msgstr "Cåte grafike"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Vertical refresh rate"
msgstr "Frécwénce di rafristaedje d' astampé"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Horizontal refresh rate"
msgstr "Frécwénce di rafristaedje di coûtchî"

#: ../../Xconfig/monitor.pm:1
#, 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 ""
"Les deus pus consecantès sacwès, c' est (1) li frécwénce di \n"
"rafristaedje d' astampé (vertical refresh rate) eyet, co pus impôrtant,\n"
"li frécwénce di rafristaedje di coûtchî (horizontal refresh rate).\n"
"\n"
"Ni tchoezixhoz MÅY ene frécwénce pus foite ki çki vosse waitroûle sopoite,\n"
"sins cwè vos pôrîz distrure vosse waitroûle."

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr ""
"Li sayaedje Plug'n Play a fwait berwete. Tchoezixhoz li sôre di waitroûle "
"s' i vs plait"

#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Vendor"
msgstr "Vindeu"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play"
msgstr "Plug'n Play"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Choose a monitor"
msgstr "Tchoezixhoz ene waitroûle"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
msgstr "Cåte grafike: %s"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Tchoezixhoz li finté et li parfondeu di coleur"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolutions"
msgstr "Fintés"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "4 billion colors (32 bits)"
msgstr "4 miyårds di coleurs (32 bits)"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
msgstr "16 miyons di coleurs (24 bits)"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "65 thousand colors (16 bits)"
msgstr "65 meye coleurs (16 bits)"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "32 thousand colors (15 bits)"
msgstr "32 meye coleurs (15 bits)"

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

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Is this the correct setting?"
msgstr "Est çki c' est l' apontiaedje corek?"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Leaving in %d seconds"
msgstr "Dji va cwiter dins %d segondes"

#: ../../Xconfig/test.pm:1
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
"Åk n' a nén stî:\n"
"%s\n"
"Sayîz di dacndjî sacwants parametes"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
"Loukîz a vos: sayî cisse cåte grafike chal pout djaler vosse copiutrece"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Do you want to test the configuration?"
msgstr "Voloz vs sayî l' apontiaedje?"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Test of the configuration"
msgstr "Saye di l' apontiaedje"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "What norm is your TV using?"
msgstr "Kéne nôrme fåt-i eployî po vosse TV?"

#: ../../Xconfig/various.pm:1
#, 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 ""
"I shonne ki vosse cåte grafike a ene prijhe TV-OUT.\n"
"Ele pout esse apontieye po-z aveur li rexhowe do frame-buffer evoyeye so on "
"posse TV.\n"
"\n"
"Po çoula vos dvoz raloyî vosse cåte grafike a vosse posse TV divant "
"d' enonder li copiutrece.\n"
"Adonpu, tchoezixhoz l' intrêye «TVout» dins l' menu del enondrece\n"
"\n"
"Voloz vs sopoirter cisse possibilité?"

#: ../../Xconfig/various.pm:1
#, c-format
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
"Would you like XFree to start when you reboot?"
msgstr ""
"Si vos voloz, voste éndjole pout esse metowe dins li môde grafike (dizo X)\n"
"do côp k' ele s' enonde.\n"
"Voloz vs enonder X cwand vos renondez voste éndjole?"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphical interface at startup"
msgstr "Enonder X a l' enondaedje"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Mineu di XFree86: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Sierveu XFree86: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Resolution: %s\n"
msgstr "Fintés: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Color depth: %s\n"
msgstr "Parfondeu di coleur: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memwere del cåte: %s Ko\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics card: %s\n"
msgstr "Cåte grafike: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frécwénce d' astampé del waitroûle: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frécwénce di coûtchî del waitroûle: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor: %s\n"
msgstr "Waitroûle: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse device: %s\n"
msgstr "Éndjin del sori: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse type: %s\n"
msgstr "Sôre di sori: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sôre del taprece: %s\n"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Options: %s"
msgstr "Tchuzes: %s"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount point: "
msgstr "Pont di montaedje: "

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Server: "
msgstr "Sierveu: "

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Li hårdêye doet cmincî avou «http://» ou «https://»"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Dinez l' hårdêye do sierveur WebDAV, s' i vs plait."

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount point"
msgstr "Pont di montaedje"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Server"
msgstr "Sierveu"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount"
msgstr "Monter"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Unmount"
msgstr "Dismonter"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "New"
msgstr "Novea"

#: ../../diskdrake/dav.pm:1
#, 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 ""
"WebDAV est on protocole ki vs permete di monter des ridants d' on sierveu\n"
"waibe come si c' esteut on ridant locå so vosse deure plake (çoula si\n"
"l' sierveu då lon est apontyî po fé do sierveu WebDAV).\n"
"Si vos vloz radjouter des ponts di montaedjes WebDAV, tchoezixhoz «Novea»."

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``%s'' instead"
msgstr "Eployî «%s» al plaece"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Type"
msgstr "Sôre"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Eployî «Dismonter» al plaece"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Delete"
msgstr "Disfacer"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create"
msgstr "Askepyî"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
msgstr "Sôre do sistinme di fitchîs:"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
msgstr "Vude"

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

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

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

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Swap"
msgstr "Swap"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Journalised FS"
msgstr "FS djournalijhî"

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

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "No hard drives found"
msgstr "Nole deure plake di trovêye"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
msgstr "Clitchîz so ene pårticion s' i vs plait"

#: ../../diskdrake/hd_gtk.pm:1
#, 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 ""
"Vos avoz ene grande pårticion Windows.\n"
"Dji vos propoze, d' aprume, di l' raptixhî\n"
"(clitchîz sol pårticion, et poy so «Candjî di grandeu»)"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Choose action"
msgstr "Accions"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Wizard"
msgstr "Macrea"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"Si vos contez eployî aboot, loukîz di leyî on pô del plaece (avou 2048 \n"
"secteus, vos froz bén) å cminçmint del plake"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please make a backup of your data first"
msgstr "Fijhoz ene copeye di såvrité divant di tcheryî pus lon."

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Read carefully!"
msgstr "Lijhoz avou atincion!"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Encryption key (again)"
msgstr "Clé d' ecriptaedje (co ene feye)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Encryption key"
msgstr "Clé d' ecriptaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "The encryption keys do not match"
msgstr "Les clés d' ecriptaedje ni sont nén les minmes"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Cisse clé d' ecriptaedje est trop simpe (ele doet esse d' å moens %d letes)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Tchoezixhoz vosse clé d' ecriptaedje pol sistinme di fitchîs"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Filesystem encryption key"
msgstr "Clé d' ecriptaedje do sistinme di fitchîs"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Type: "
msgstr "Sôre: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "on channel %d id %d\n"
msgstr "sol canå %d id %d\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table type: %s\n"
msgstr "Sôre di tåvlea di pårtixhaedje: %s\n"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Info: "
msgstr "Informåcion: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Djeometreye: %s cilindes, %s tiesses, %s secteus\n"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Read-only"
msgstr "Lere-seulmint"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Device: "
msgstr "Éndjin: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Cisse sipeciåle pårticion\n"
"d' enondaedje chal c' est po\n"
"vos poleur tchoezi l' sistinme\n"
"d' operance a-z enonder cwand\n"
"vos enondez li copiutrece.\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"I gn a des tchances po ki cisse\n"
"pårticion chal soeye ene pårticion\n"
"k' i gn a des mineus dvins. Vos\n"
"dvrîz motoit l' leyî.\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: %s"
msgstr "No do fitchî loopback: %s"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Chunk size %s\n"
msgstr "Grandeu des bokets %s\n"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Pårticion prémetowe po-z enonder l' éndjole\n"
"    (po l' enondaedje di MS-DOS, nén po LILO)\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Fitchî(s) loopback:\n"
"   %s\n"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mounted\n"
msgstr "Montêye\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Not formatted\n"
msgstr "Nén abwesnêye\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Formatted\n"
msgstr "Abwesnêye\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Do cilinde %d å cilinde %d\n"

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

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start: sector %s\n"
msgstr "Enondaedje: secteu %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Name: "
msgstr "No: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lete del plake DOS: %s (dji saye d' adviner)\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "partition %s is now known as %s"
msgstr "li pårticion %s est asteure kinoxhowe come %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removing %s"
msgstr "Dji bodje %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Copying %s"
msgstr "Copiant %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving files to the new partition"
msgstr "Dji bodje les fitchîs viè l' novele pårticion"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Li ridant %s a ddja sacwantès dnêyes\n"
"(%s)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hide files"
msgstr "Catchî les fitchîs"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move files to the new partition"
msgstr "Bodjî les fitchîs viè l' novele pårticion"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Totes les dnêyes sol pårticion %s vont esse pierdowes dispoy abwesnaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Vos dvoz renonder voste éndjole po les candjmints esse metous en alaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Li tåvlea di pårtixhaedje del plake %s va esse scrite sol plake!"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "I gn a mezåjhe do pacaedje «%s». El voloz astaler?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "What type of partitioning?"
msgstr "Kéne sôre di pårtixhaedje?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Prindoz asteme: cisse operåcion chal est dandjureuse."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "chunk size"
msgstr "grandeu des bokets"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "level"
msgstr "livea"

#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
#, c-format
msgid "device"
msgstr "éndjin"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Various"
msgstr "Totès sôres"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount options"
msgstr "Tchuzes pol montaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File already exists. Use it?"
msgstr "Li fitchî egzistêye dedja. Voloz vs l' eployî ?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Ci fitchî chal est ddja eployî d' èn ôte loopback. Purdoz è èn ôte"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Give a file name"
msgstr "Dinez on no d' fitchî"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Filesystem type: "
msgstr "Sôre do sistinme di fitchîs: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size in MB: "
msgstr "Grandeu e Mo:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: "
msgstr "No do fitchî loopback: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition can't be used for loopback"
msgstr "Cisse pårticion ni pout nén esse eployeye pol loopback"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "LVM name?"
msgstr "No do LVM?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "new"
msgstr "novea"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Tchoezi on LVM ki egzistêye dedja po î radjouter"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Tchoezi on RAID ki egzistêye dedja po î radjouter"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving partition..."
msgstr "Bodjant li pårticion..."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving"
msgstr "Bodjant"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which sector do you want to move it to?"
msgstr "Å ké secteu voloz vs aler?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Sector"
msgstr "Secteu"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which disk do you want to move it to?"
msgstr "Kéne deure plake voloz vs bodjî?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move"
msgstr "Bodjî"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "New size in MB: "
msgstr "Novele grandeu e Mo: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose the new size"
msgstr "Tchoezixhoz li novele grandeu"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resize"
msgstr "Candjî di grandeu"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Totes les dnêyes sol pårticion %s vont esse pierdowes dispoy raptixhaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Totes les dnêyes so cisse pårticion chal dvèt esse schapêyes"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition is not resizeable"
msgstr "Cisse pårticion ni pout nén candjî si grandeu"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Dji carcule les limites do sistinme di fitchîs FAT"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Wice voloz vs monter %s?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Dji n' såreu dismete li pont di montaedje, ca cisse pårticion est eployeye "
"pol loopback.\n"
"Vos dvoz oister li loopback po cmincî."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Wice voloz vs monter l' éndjin %s?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Wice voloz vs monter l' fitchî di loopback %s?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Discandjî di ext2 a ext3"

#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#, c-format
msgid "Which filesystem do you want?"
msgstr "Ké sistinme di fitchîs voloz vs?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Change partition type"
msgstr "Candjî li sôre del pårticion"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Totes les dnêyes sol pårticion %s vont esse pierdowes dispoy candjî si sôre."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove the loopback file?"
msgstr "Bodjî li fitchî loopback?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"You can't 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 ""
"Vos n' poloz nén fé di novele pårticion\n"
"(ca vos avoz arivé å macsimom di pårticions primaires possibe).\n"
"I vs fåt d' aprume oister ene pårticion primaire eyet ndè fé ene sitindowe."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Preference: "
msgstr "Preferince: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start sector: "
msgstr "Secteu di cminçmint: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create a new partition"
msgstr "Fé ene novele pårticion"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Use for loopback"
msgstr "Eployî po loopback"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Modify RAID"
msgstr "Candjî l' RAID"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
msgstr "Bodjî foû do LVM"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
msgstr "Bodjî foû do RAID"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to LVM"
msgstr "Radjouter å LVM"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to RAID"
msgstr "Radjouter å RAID"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Format"
msgstr "Abwesner"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Detailed information"
msgstr "Sipepieuse informåcion"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
msgstr "Dji saye di rapexhî li tåvlea di pårtixhaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Metoz ene plakete dvins li lijheu\n"
"Totes les dnêyes sol plakete vont esse pierdowes"

#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../network/modem.pm:1
#, c-format
msgid "Warning"
msgstr "Adviertixhmint"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Select file"
msgstr "Tchoezi fitchî"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Li copeye di såvrité del tåvlea di pårtixhaedje n' a nén li minme grandeu.\n"
"Doe dju continuwer tot l' minme?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removable media automounting"
msgstr "Montaedje otomatike des sopoirts bodjåves"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Reload partition table"
msgstr "Ritcherdjî li tåvlea di pårtixhaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Rescue partition table"
msgstr "Rapexhî li tåvlea di pårtixhaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Restore partition table"
msgstr "Rimete li tåvlea di pårtixhaedje come divant"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Save partition table"
msgstr "Schaper li tåvlea di pårtixhaedje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Po-z aveur pus d' pårticions, vos dvoz disfacer ene, po poleur askepyî ene "
"stindowe pårticion"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "I can't add any more partition"
msgstr "Dji n' pou nén radjouter ene pårticion"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
msgstr "Totes les pårticions sont ocupêyes"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hard drive information"
msgstr "Informåcion sol deure plake"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Auto allocate"
msgstr "Grandeu otomatike"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Clear all"
msgstr "Tot netyî"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voloz vs wårder les candjmints di /etc/fstab ?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Moussî foû sins scrire li tåvlea di pårtixhaedje?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without saving"
msgstr "Cwiter sins schaper"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Continue anyway?"
msgstr "Voloz vs vormint continuwer?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Toggle to expert mode"
msgstr "Candjî pol môde sipepieus"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Toggle to normal mode"
msgstr "Candjî pol môde normå"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Undo"
msgstr "Disfé"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Exit"
msgstr "Moussî foû"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose a partition"
msgstr "Tchoezixhoz ene pårticion"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose another partition"
msgstr "Tchoezixhoz ene ôte pårticion"

#: ../../diskdrake/removable.pm:1
#, c-format
msgid "Change type"
msgstr "Candjî l' sôre"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Search servers"
msgstr "Dji cwir les sierveus"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain"
msgstr "Dominne"

#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Username"
msgstr "No d' uzeu"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "Dinez vosse no d' uzeu, sicret eyet no d' domine po-z aveur å lodjeu."

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain Authentication Required"
msgstr "L' acertinaedje des dominnes est obligatwere"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Another one"
msgstr "Èn ôte"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Which username"
msgstr "Ké no d' uzeu"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Can't login using username %s (bad password?)"
msgstr "Dji n' a savou vs elodjî dizo l' no %s (måva scret motoit?)"

#: ../../harddrake/data.pm:1
#, c-format
msgid "cpu # "
msgstr "processeu l° "

#: ../../harddrake/data.pm:1
#, c-format
msgid "SMBus controllers"
msgstr "Controleus SMBus"

#: ../../harddrake/data.pm:1
#, c-format
msgid "USB controllers"
msgstr "Controleus USB"

#: ../../harddrake/data.pm:1
#, c-format
msgid "SCSI controllers"
msgstr "Controleus SCSI"

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Firewire controllers"
msgstr "Controleus USB"

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

#: ../../harddrake/data.pm:1
#, c-format
msgid "Joystick"
msgstr "Djîsse di djeu"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Scanner"
msgstr "Sicanrece"

#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Unknown/Others"
msgstr "Nén cnoxhou|Ôtes"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Bridges and system controllers"
msgstr ""

#: ../../harddrake/data.pm:1
#, c-format
msgid "Modem"
msgstr "Modem"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Ethernetcard"
msgstr "Cåte rantoele"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Processors"
msgstr "Processeus"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Webcam"
msgstr "Camera"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Soundcard"
msgstr "Cåte son"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Other MultiMedia devices"
msgstr "Ôtes éndjins multimedia"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Tvcard"
msgstr "Cåte tévé"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
msgstr "Cåte videyo"

#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Tape"
msgstr "Binde"

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

#: ../../harddrake/data.pm:1
#, c-format
msgid "CD/DVD burners"
msgstr "Broûleu di CD/DVD"

#: ../../harddrake/data.pm:1
#, c-format
msgid "CDROM"
msgstr "Plake lazer"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Disk"
msgstr "Deure plake"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Zip"
msgstr "Plakete ZIP"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Floppy"
msgstr "Plakete"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Let me pick any driver"
msgstr "Leyîz mu tchoezi tot l' minme ké mineu"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Driver:"
msgstr "Mineu:"

#: ../../harddrake/sound.pm:1
#, 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 ""
"Si vos pinsoz vormint ki vos savoz ké mineu est l' bon po vosse cåte,\n"
"vos l' poloz tchoezi del djivêye chal pa dzeur.\n"
"\n"
"Li mineu do moumint po vosse cåte son «%s» est «%s» "

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Choosing an arbitratry driver"
msgstr "Tchoezixhant tot l' minme ké mineu"

#: ../../harddrake/sound.pm:1
#, 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 use\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:1
#, c-format
msgid "Sound trouble shooting"
msgstr ""

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Aroke: Li mineu «%s» po vosse cåte son n' est nén el djivêye"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Unkown driver"
msgstr "Mineu nén cnoxhou"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "I gn a nou mineu di cnoxhou po vosse cåte son (%s)"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No known driver"
msgstr "Nou mineu di cnoxhou"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"I gn a nou mineu libe po vosse cåte son (%s), mins i gn a-st on mineu "
"prôprietaire so «%s»."

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No open source driver"
msgstr "Nou mineu libe di cnoxhou"

#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Tårdjîz s' i vs plait, dji mete en alaedje l' apontiaedje"

#: ../../harddrake/sound.pm:1
#, 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'll only be used on next bootstrap."
msgstr ""
"Li vî mineu «%s» a stî metou dins ene boere djivêye.\n"
"\n"
"I gn a-st avou sacwants rapoirts dijhant k' i fjheut des problinmes\n"
"avou l' nawea (des «oops») å moumint del distcherdjî.\n"
"\n"
"Li novea mineu «%s» srè eployî seulmint a pårti do renondaedje ki vént."

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

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independant "
"sound API (it's available on most unices 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 ""
"OSS (Open Sound System) a stî li prumire API pol sopoirt do son. C' est ene "
"API indepindante do SO (ele egzistêye pol plupårt des sistinmes unix) mins "
"c' est ossu ene API foirt båzike eyet limitêye.\n"
"Et al copete do martchî, tchaeke mineu OSS radvinte li rowe.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) est ene årtchitecteure a modules ki "
"sopoite ene lådje fôrtchete di cåtes ISA, USB eyet PCI.\n"
"\n"
"I fornixh ossu ene API di pus hôt livea ki OSS.\n"
"\n"
"Po-z eployî alsa, on pout eployî ossu bén:\n"
"- li viye API di copatibilité avou OSS\n"
"- li nouve API d' ALSA ki fornix sacwantes fonccionålités stindêyes mins a "
"mezåjhe del livreye ALSA.\n"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Vosse cåte eploye pol moumint li mineu %s«%s» (li prémetou mineu po vosse "
"cåte est «%s»)"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Chal vos ploz tchoezi on mineu alternatif (OSS oudonbén ALSA) po vosse cåte "
"son (%s)."

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Sound configuration"
msgstr "Apontiaedje do son"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"I gn a nou mineu OSS/ALSA alternatif di cnoxhou po vosse cåte son (%s) ki "
"pol moumint eploye «%s»"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No alternative driver"
msgstr "Nou mineu alternatif"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "enable radio support"
msgstr "mete en alaedje li sopoirt pol radio"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Radio support:"
msgstr "Sopoirt pol radio:"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "PLL setting:"
msgstr "Apontiaedje PLL:"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "number of capture buffers for mmap'ed capture"
msgstr "nombe di tampons po les copeyes di waitroûlêyes avou mmap()"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Number of capture buffers:"
msgstr "Nombe di tampons po les waitroûlêyes:"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Tuner type:"
msgstr "Sôre di _tuner_:"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Card model:"
msgstr "Modele del cåte:"

#: ../../harddrake/v4l.pm:1
#, 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 ""
"Po bråmint di cåtes TV modienes, li module bttv do nawea GNU/Linux fwait "
"l' deteccion otomatike des parametes k' i fåt.\n"
"Si l' cåte da vosse n' est nén detectêye comufåt, vos ploz foirci les bonès "
"sôres di cåte et di des parametes k' i fåt.\n"
"Si l' cåte da vosse n' est nén detectêye comufåt, vos ploz foirci chal les "
"bonès sôres di cåte et di _tuner_. Vos n' avoz k' a tchoezi, s' i fåt, les "
"parametes po vosse cåte TV"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|Generic"
msgstr "Nén cnoxhou|Djenerike"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Nén cnoxhou|CPH06X (bt878) [bråmint di vindeus]"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Nén cnoxhou|CPH05X (bt878) [bråmint di vindeus]"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Auto-detect"
msgstr "Deteccion otomatike"

#: ../../interactive/newt.pm:1
#, c-format
msgid "Do"
msgstr "Fé"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vosse tchuze? (prémetowe %s)"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Bad choice, try again\n"
msgstr "Måva tchuze, sayîz co ene feye\n"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Re-submit"
msgstr "Evoyî cor on côp"

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Prindoz asteme k' ene etikete a candjî:\n"
"%s"

#: ../../interactive/stdio.pm:1
#, 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 ""
"Tchoezixhoz li prumî limero del fortchete di 10 ki vos vloz aspougnî,\n"
"oudonbén vos ploz djusse taper so Enter po continuwer.\n"
"Vosse tchuze? "

#: ../../interactive/stdio.pm:1
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> I gn a sacwantès afwaires a tchoezi (%s).\n"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vosse tchuze? (prémetowe «%s»%s)"

#: ../../interactive/stdio.pm:1
#, c-format
msgid " enter `void' for void entry"
msgstr " tapez «void» po ene intrêye vude"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Do you want to click on this button?"
msgstr "Voloz vs clitchî so ç' boton chal?"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Button `%s': %s"
msgstr "Boton «%s»: %s"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vosse tchuze? (0/1, prémetowe %s)"

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Intrêyes ki vos dvroz rimpli:\n"
"%s"

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"I gn a åk ki n' a nén stî tot tcherdjant li module %s.\n"
"Voloz vs sayî co on côp avou des ôtes parametes?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Specify options"
msgstr "Dijhoz les tchuzes"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Autoprobe"
msgstr "Saye otomatike"

#: ../../modules/interactive.pm:1
#, 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 ""
"A feyes, li mineuse %s a dandjî d' ene miete di pus d' informåcions po-z\n"
"aler comufåt, ca bén k' ele va bén sins, normålmint. Voloz vs diner des\n"
"informåcions asteure ou leyî li mineuse cachî leye-minme dins voste éndjole\n"
"après les informåcions k' ele a dandjî? Pa côps, çoula pout fé aroker li\n"
"copiutrece. Mins ça n' såreut fé nou må."

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../modules/interactive.pm:1
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kéne %s mineuse doe dju sayî?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Module options:"
msgstr "Tchuzes do module:"

#: ../../modules/interactive.pm:1
#, 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 ""
"Asteure, vos poloz dner les tchuzes pol module %s.\n"
"Les tchuzes si scrijhèt: « no=valixhance no2=valixhance2... »\n"
"Metans: « io=0x300 irq=7... »"

#: ../../modules/interactive.pm:1
#, 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 ""
"Vos ploz asteure diner les tchuzes pol module %s.\n"
"Notez ki tote adresse doet esse dinêye e hecsa avou l' betchete 0x, eg: "
"«0x123»"

#: ../../modules/interactive.pm:1
#, c-format
msgid "(module %s)"
msgstr "(module %s)"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: ../../modules/interactive.pm:1
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Astalant mineu po %s cåte %s"

#: ../../modules/interactive.pm:1
#, c-format
msgid "See hardware info"
msgstr "Veyoz les informåcions sol éndjolreye"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Avoz vs des eterfaces %s?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have another one?"
msgstr "Avoz vs ene ôte?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Found %s %s interfaces"
msgstr "Dj' a trové %s eterfaces %s"

#: ../../modules/interactive.pm:1
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Vos ploz apontyî tchaeconk des parametes do module chal."

#: ../../modules/parameters.pm:1
#, c-format
msgid "comma separated strings"
msgstr "tchinnes separêyes pa des comas"

#: ../../modules/parameters.pm:1
#, c-format
msgid "comma separated numbers"
msgstr "limeros separés pa des comas"

#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated strings"
msgstr "%d tchinnes separêyes pa des comas"

#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
msgstr "%d limeros separés pa des comas"

#: ../../modules/parameters.pm:1
#, c-format
msgid "a number"
msgstr "on limero"

#: ../../network/adsl.pm:1
#, c-format
msgid ""
"You need the alcatel microcode.\n"
"Download it at\n"
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
"Vos avoz mezåjhe do microcôde d' alcatel\n"
"Prindoz l' di\n"
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"et s' copyîz l' fitchî mgmt.o e /usr/share/speedtouch"

#: ../../network/adsl.pm:1
#, 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 don't know, choose 'use pppoe'"
msgstr ""
"Li voye li pus simpe di s' adjonde avou l' adsl, c' est pppoe.\n"
"Mins nerén, gn a des ôtes raloyaedjes ki s' siervèt fok di pptp ou dhcp.\n"
"Si vos n' e savoz rén, tchoezixhoz «eployî pppoe»."

#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
#, c-format
msgid "Connect to the Internet"
msgstr "Si raloyî al rantoele daegnrece"

#: ../../network/adsl.pm:1
#, c-format
msgid "Sagem (using pppoa) usb"
msgstr "Sagem usb (eployant pppoa)"

#: ../../network/adsl.pm:1
#, c-format
msgid "Alcatel speedtouch usb"
msgstr "Alcatel Speedtouch USB"

#: ../../network/adsl.pm:1
#, c-format
msgid "use dhcp"
msgstr "eployî dhcp"

#: ../../network/adsl.pm:1
#, c-format
msgid "use pptp"
msgstr "eployî pptp"

#: ../../network/adsl.pm:1
#, c-format
msgid "use pppoe"
msgstr "eployî pppoe"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Other ports"
msgstr "Ôtes pôrts"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Everything (no firewall)"
msgstr "Totafwait (nou côpe feu)"

#: ../../network/drakfirewall.pm:1
#, 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."
msgstr ""
"Port nén valide di dné: %s.\n"
"Li bone cogne c' est «pôrt/tcp» ou «pôrt/udp», \n"
"avou «pôrt» on limero inte 1 eyet 65535."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"You can enter miscellaneous ports. \n"
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
"Vos ploz dner diferins limeros di pôrt. \n"
"Des egzimpes valides sont: 139/tcp 139/udp.\n"
"Loukîz l' fitchî /etc/services po pus d' informåcions."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr "Ké siervices voloz vs k' i soeye accessibe a pårti del daegntoele?"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"Make sure you have configured your Network/Internet access with\n"
"drakconnect before going any further."
msgstr ""
"Apontieu di côpe feu drakfirewall\n"
"\n"
"Acertinez vs ki vos avoz bén apontyî vosse rantoele eyet l' accès al\n"
"daegntoele avou drakconnet divant d' aler pus lon."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"This configures a personal firewall for this Mandrake Linux machine.\n"
"For a powerful and dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
"Apontiaedje do côpe feu drakefirewall\n"
"\n"
"Çouci apontieye on côpe feu personel (dj' ô bén, po esse eployî sor on\n"
"posse éndjolrece) po ciste éndjole Mandrake Linux chal.\n"
"Po ene pouxhante solucion di côpe feu, loukîz purade do costé\n"
"del distribucion MandrakeSecurity avou on côpe feu di hôte såvrité."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "No network card"
msgstr "Nole cåte rantoele di trovêye"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "POP and IMAP Server"
msgstr "Sierveu POP et IMAP"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Mail Server"
msgstr "Sierveu d' emilaedje"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Domain Name Server"
msgstr "Sierveu di nos d' dominne"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Web Server"
msgstr "Sierveu waibe"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr "Li no d' lodjoe po zeroconf doet aveur on pont (.)"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Host name"
msgstr "No do lodjoe"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Zeroconf Host name"
msgstr "No do lodjoe Zero-apontiaedje"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Enter a Zeroconf host name without any dot if you don't\n"
"want to use the default host name."
msgstr ""
"\n"
"\n"
"Dinez on no d' lodjoe po zeroconf sins pont si vos n' voloz\n"
"nén eployî li prémetou no d' lodjoe."

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Configuring network"
msgstr "Apontiant li rantoele"

#: ../../network/ethernet.pm:1
#, c-format
msgid "no network card found"
msgstr "nole cåte rantoele di trovêye"

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
"Tchoezixhoz kéne cåte rantoele vos vloz eployî po vos raloyî al rantoele "
"daegnrece"

#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
#: ../../standalone/drakpxe:1
#, c-format
msgid "Choose the network interface"
msgstr "Tchoezixhoz l' eterface rantoele"

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
"Nole cåte rantoele a stî detectêye so vosse sistinme.\n"
"Dji n' pou nén apontyî cisse sôre di raloyaedje."

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcp-client."
msgstr ""
"Ké cliyant dhcp voloz vs eployî?\n"
"Li prémetou est «dhcp-client»"

#: ../../network/isdn.pm:1
#, c-format
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nole cåte RDIS PCI di trovêye. Tchoezixhoz ene dins l' djivêye ki shût."

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
"Dj' a trové ene cåte RDIS PCI, mins dji n' sai nén ké mineu eployî.\n"
"Tchoezixhoz li bone cåte PCI dins l' djivêye ki shût."

#: ../../network/isdn.pm:1
#, c-format
msgid "Which of the following is your ISDN card?"
msgstr "Kéne est li cåte RDIS da vosse dins l' djivêye ?"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISDN Configuration"
msgstr "Apontiaedje pol RDIS"

#: ../../network/isdn.pm:1
#, c-format
msgid "Abort"
msgstr "Rinoncî"

#: ../../network/isdn.pm:1
#, c-format
msgid "Continue"
msgstr "Continuwer"

#: ../../network/isdn.pm:1
#, 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 ""
"\n"
"Si vos avoz ene cåte ISA, les valixhances sol waitroûlêye ki shût dvreut\n"
"esse les bones.\n"
"\n"
"Si vos avoz ene cåte PCMCIA, vos dvoz cnoxhe l' IRQ et I/R di vosse cåte.\n"

#: ../../network/isdn.pm:1
#, c-format
msgid "I don't know"
msgstr "Dji n' sai nén"

#: ../../network/isdn.pm:1
#, c-format
msgid "PCI"
msgstr "PCI"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: ../../network/isdn.pm:1
#, c-format
msgid "What kind of card do you have?"
msgstr "Kéne sôre di cåte avoz vs?"

#: ../../network/isdn.pm:1
#, c-format
msgid "Found \"%s\" interface do you want to use it ?"
msgstr "Dj' a trové ene eterface «%s», el voloz vs eployî?"

#: ../../network/isdn.pm:1
#, c-format
msgid "Which protocol do you want to use?"
msgstr "Ké protocole voloz vs eployî?"

#: ../../network/isdn.pm:1
#, c-format
msgid "Protocol for the rest of the world"
msgstr "Protocole po les ôtes payis"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
"Protocole po les ôtes payis \n"
" nou canå D (leased lines)"

#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol"
msgstr "Protocole po l' Europe"

#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol (EDSS1)"
msgstr "Protocole po l' Europe (EDSS1)"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Select your provider.\n"
"If it isn't listed, choose Unlisted."
msgstr ""
"Tchoezixhoz vosse ahesseu.\n"
" S' i n' si trove nén el djivêye, tchoezixhoz «Unlisted»"

#: ../../network/isdn.pm:1
#, c-format
msgid "External ISDN modem"
msgstr "Cåte RDIS difoûtrinne"

#: ../../network/isdn.pm:1
#, c-format
msgid "Internal ISDN card"
msgstr "Cåte RDIS divintrinne"

#: ../../network/isdn.pm:1
#, c-format
msgid "What kind is your ISDN connection?"
msgstr "Kéne sôre di raloyaedje RDIS avoz vs?"

#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Network Configuration Wizard"
msgstr "Macrea d' apontiaedje del rantoele"

#: ../../network/isdn.pm:1
#, c-format
msgid "Old configuration (isdn4net)"
msgstr "Vî apontiaedje (isdn4net)"

#: ../../network/isdn.pm:1
#, c-format
msgid "New configuration (isdn-light)"
msgstr "Novea apontiaedje (isdn-light)"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
"* The Old configuration uses isdn4net. It contains powerful\n"
"  tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
"  standard, but with less tools.\n"
"\n"
"We recommand the light configuration.\n"
msgstr ""
"Kén apontiaedje RDIS voloz vs?\n"
"\n"
"* Li vî apontiaedje eploye isdn4net. Il a des poûxhantès usteyes,\n"
"  mins i pout esse on po deur a-z apontyî po on apurdisse,\n"
"  et n' est nén foirt sitandård.\n"
"\n"
"* L' apontiaedje ledjir est pus åjhey a coprinde, pus standård,\n"
"  mins avou moens d' usteyes.\n"
"\n"
"Nos vs ricomandans l' apontiaedje ledjir.\n"
"\n"

#: ../../network/modem.pm:1
#, c-format
msgid "Do nothing"
msgstr "Èn rén fé"

#: ../../network/modem.pm:1
#, c-format
msgid "Install rpm"
msgstr "Astaler rpm"

#: ../../network/modem.pm:1
#, c-format
msgid ""
"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
"On winmodem båzé so «%s» a stî trové, voloz vs astaler li mineu k' end a "
"mezåjhe?"

#: ../../network/modem.pm:1
#, c-format
msgid "Title"
msgstr "Tite"

#: ../../network/modem.pm:1
#, c-format
msgid ""
"Your modem isn't supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
"Li modem da vosse n' est nén sopoirté på sistinme.\n"
"Loukîz sol waibe http://www.linmodems.org/"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Second DNS Server (optional)"
msgstr "Deujhinme sierveu DNS (opcionel)"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "First DNS Server (optional)"
msgstr "Prumî sierveu DNS (opcionel)"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Domain name"
msgstr "No di dominne"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "CHAP"
msgstr "CHAP"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Script-based"
msgstr "Pa scripe"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Terminal-based"
msgstr "Pa terminå"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "PAP"
msgstr "PAP"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Login ID"
msgstr "ID d' elodjaedje"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Phone number"
msgstr "Limero di telefone"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection name"
msgstr "No di raloyaedje"

#: ../../network/modem.pm:1
#, c-format
msgid "Dialup options"
msgstr "Tchuzes di houcaedje pa modem"

#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "Tchoezixhoz li pôrt séreye ki vosse modem est raloyî dzo"

#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
msgstr "Apontiaedje del Rantoele"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
"Åk n' a nén stî tins di l' apontiaedje.\n"
"Sayîz vosse raloyaedje avou «net_monitor» ou «mcc». Si vosse raloyaedje ni "
"va nén, motoit k' vos dvrîz renonder l' apontiaedje"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
"On côp ki ci sreut fwait, nos vos rcomindans di renonder l' evironmint\n"
"X11 da vosse po nén risker des rujhes avou l' candjmint d' no di l' éndjole."

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
"Proficiat, l' apontiaedje del rantoele (locåle et daegnrece) est fini.\n"
"\n"
"L' apontiaedje va asteure esse metou en alaedje pol sistinme da vosse.\n"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr ""
"Åk n' a nén stî tot renondant li rantoele: \n"
"\n"
"%s"

#: ../../network/netconnect.pm:1
#, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr "I gn a mezåjhe di renonder li rantoele. El voloz vs fé?"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Network configuration"
msgstr "Apontiaedje del rantoele"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Voloz vs vos raloyî a tchaeke côp ki l' éndjole est enondêye?"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection"
msgstr "Raloyaedje al rantoele daegnrece"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
"Vos avoz apontyî diferinnes manires di s' raloyî al rantoele daegnrece.\n"
"Tchoezixhoz li cene ki vos vloz eployî.\n"
"\n"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the connection you want to configure"
msgstr "Tchoezixhoz li raloyaedje ki vos voloz apontyî"

#: ../../network/netconnect.pm:1
#, c-format
msgid "ethernet card(s) detected"
msgstr "cåte(s) rantoele detectêye(s)"

#: ../../network/netconnect.pm:1
#, c-format
msgid "LAN connection"
msgstr "Raloyaedje al rantoele locåle"

#: ../../network/netconnect.pm:1
#, c-format
msgid "cable connection detected"
msgstr "Raloyaedje viè cåbe TV detecté"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Cable connection"
msgstr "Raloyaedje viè cåbe TV"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected"
msgstr "detecté"

#: ../../network/netconnect.pm:1
#, c-format
msgid "ADSL connection"
msgstr "Raloyaedje ADSL"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected %s"
msgstr "%s detecté"

#: ../../network/netconnect.pm:1
#, c-format
msgid "ISDN connection"
msgstr "Raloyaedje viè RDIS"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Winmodem connection"
msgstr "Raloyaedje viè winmodem"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected on port %s"
msgstr "detecté sol pôrt %s"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Normal modem connection"
msgstr "Raloyaedje viè modem normå"

#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
msgstr "Dji deteke les éndjins..."

#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, c-format
msgid "Expert Mode"
msgstr "Môde sipepieus"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Use auto detection"
msgstr "Eployî li deteccion otomatike"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
msgstr "Tchoezixhoz li profil a-z apontyî"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
"Wilicome å macrea d' apontiaedje del rantoele\n"
"\n"
"Dji va cmincî d' apontyî vosse raloyaedje al rantoele (daegnrece).\n"
"Si vos n' vloz nén li deteccion otomatike, disclitchîz lu.\n"

#: ../../network/netconnect.pm:1
#, 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 ""
"Come vos fjhoz l' astalaedje a pårti del rantoele, li rantoele est ddja "
"apontieye.\n"
"Clitchîz so «'l est bon» po wårder l' apontiaedje da vosse, ou so  «Rinoncî» "
"po rapontyî li raloyaedje al rantoele.\n"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"\n"
"\n"
"\n"
"We are now going to configure the %s connection.\n"
"\n"
"\n"
"Press OK to continue."
msgstr ""
"\n"
"\n"
"\n"
"Asteure nos alans fé l' apontiaedje do raloyaedje %s.\n"
"\n"
"\n"
"Clitchîz so «'l est bon» po continuwer."

#: ../../network/netconnect.pm:1
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Asteure nos alans fé l' apontiaedje do raloyaedje %s."

#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection & configuration"
msgstr "Apontiaedje & raloyaedje al rantoele daegnrece"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Configure the connection"
msgstr "Apontyî li raloyaedje"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Disconnect"
msgstr "Si disraloyî"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Connect"
msgstr "Si raloyî"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
"\n"
"Vos ploz rifé l' apontiaedje do raloyaedje."

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"\n"
"You can connect to the Internet or reconfigure your connection."
msgstr ""
"\n"
"Vos ploz vos raloyî al rantoele daegnrece oudonbén rifé l' apontiaedje do "
"raloyaedje."

#: ../../network/netconnect.pm:1
#, c-format
msgid "You are not currently connected to the Internet."
msgstr "Vos n' estoz nén raloyî al rantoele daegnrece pol moumint."

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
"Vos ploz vos disraloyî oudonbén rifé l' apontiaedje do raloyaedje."

#: ../../network/netconnect.pm:1
#, c-format
msgid "You are currently connected to the Internet."
msgstr "Vos estoz raloyî al rantoele daegnrece pol moumint."

#: ../../network/network.pm:1
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "Li hårdêye doet cmincî avou «http:» ou «ftp:»"

#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
msgstr "Li proxy doet esse http://..."

#: ../../network/network.pm:1
#, c-format
msgid "FTP proxy"
msgstr "Proxy FTP"

#: ../../network/network.pm:1
#, c-format
msgid "HTTP proxy"
msgstr "Proxy HTTP"

#: ../../network/network.pm:1
#, c-format
msgid "Proxies configuration"
msgstr "Apontiaedje des proxies"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "L' adresse IP del pasrele doet esse del cogne 1.2.3.4"

#: ../../network/network.pm:1
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "L' adresse IP do sierveu DNS doet esse del cogne 1.2.3.4"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
msgstr "Éndjin di pasrele"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Pasrele (eg %s)"

#: ../../network/network.pm:1
#, c-format
msgid "DNS server"
msgstr "Sierveu DNS"

#: ../../network/network.pm:1
#, 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 ""
"Intrez chal li no IP di voste éndjole (host name).\n"
"Li no doet esse etir, metans: «mybox.mylab.myco.com».\n"
"Vos poloz dner eto l' adresse IP del pasrele s' i gn en a ene."

#: ../../network/network.pm:1
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
"Li frécwénce doet aveur ene cawete «k», «M» ou «G» (par egzimpe, «2.46G» po "
"ene frécwénce di 2.46 GHz), oudonbén radjoutez des zeros assez."

#: ../../network/network.pm:1
#, 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 ""
"Li frécwénce doet aveur ene cawete «k», «M» ou «G» (par egzimpe, «2.46G» po "
"ene frécwénce di 2.46 GHz), oudonbén radjoutez des zeros assez."

#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "L' adresse IP doet esse del cogne 1.2.3.4"

#: ../../network/network.pm:1
#, c-format
msgid "Start at boot"
msgstr "En alaedje a l' enondaedje"

#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Assign host name from DHCP address"
msgstr "Vos dvoz dner on no d' lodjoe ou ene adresse IP.\n"

#: ../../network/network.pm:1
#, c-format
msgid "Network Hotplugging"
msgstr "Tchôcaedje a tchôd del rantoele"

#: ../../network/network.pm:1
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr ""
"Aler vey l' idintifiant del cåte rantoele (ça pout siervi po les poirtåves)"

#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "DHCP host name"
msgstr "No do lodjoe"

#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
#, c-format
msgid "Netmask"
msgstr "Maske rantoele"

#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "IP address"
msgstr "Adresse IP"

#: ../../network/network.pm:1
#, c-format
msgid "(bootp/dhcp/zeroconf)"
msgstr "(bootp/dhcp/zeroconf)"

#: ../../network/network.pm:1
#, c-format
msgid "Automatic IP"
msgstr "Adresses IP otomatikes"

#: ../../network/network.pm:1
#, c-format
msgid " (driver %s)"
msgstr " (mineu %s)"

#: ../../network/network.pm:1
#, c-format
msgid "Configuring network device %s"
msgstr "Apontiant l' éndjin di rantoele %s"

#: ../../network/network.pm:1
#, 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 ""
"Chal, intrez l' apontiaedje IP di voste éndjole.\n"
"Totafwait doet esse sicrit come ene adresse IP, avou des\n"
"ponts inte les limeros (metans: 1.2.3.4)."

#: ../../network/network.pm:1
#, c-format
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"ASTEME: Cist éndjin a ddja stî apontyî po esse raloyî al rantoele "
"daegnrece.\n"
"Clitchîz so «'l est bon» po wårder cist apontiaedje la.\n"
"Oudonbén vos ploz candjî les tchamps chal pa dzeu po spotchî l' apontiaedje "
"avou on novea."

#: ../../network/shorewall.pm:1
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
"Asteme! Dj' a detecté on côpe feu ddja apontyî. I vos fåreut motoit on po "
"d' apontiaedje manuwel après l' astalåcion."

#: ../../network/shorewall.pm:1
#, c-format
msgid "Firewalling configuration detected!"
msgstr "Dj' a detecté l' apontiaedje d' on côpe feu!"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
msgstr "Sicret do conte"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
msgstr "No d' elodjaedje do conte (no d' uzeu)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection timeout (in sec)"
msgstr "Tårdjaedje (e seg) pol raloyaedje"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection speed"
msgstr "Roedeu do raloyaedje"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Dialing mode"
msgstr "Môde di houcaedje"

#: ../../network/tools.pm:1
#, c-format
msgid "Choose your country"
msgstr "Tchoezixhoz vosse payis"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 2 (optional)"
msgstr "2inme DNS do ahesseu (opcionel)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 1 (optional)"
msgstr "1î DNS do ahesseu (opcionel)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider phone number"
msgstr "Limero di telefone di l' ahesseu"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "No do ahesseu (eg: walonet.be)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Your personal phone number"
msgstr "Li limero di telefone da vosse"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_1"
msgstr "I/R del cåte (1)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_0"
msgstr "I/R del cåte (0)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO"
msgstr "I/R del cåte"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card mem (DMA)"
msgstr "Canå DMA del cåte"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IRQ"
msgstr "IRQ del cåte"

#: ../../network/tools.pm:1
#, c-format
msgid "Please fill or check the field below"
msgstr "Rimplixhoz ou verifyîz les tchamps chal pa dzo"

#: ../../network/tools.pm:1
#, c-format
msgid "Connection Configuration"
msgstr "Apontiaedje do raloyaedje"

#: ../../network/tools.pm:1
#, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
"Li sistinme ni shonne nén esse raloyî al rantoele daegnrece.\n"
"Sayîz di rapontyî li raloyaedje."

#: ../../network/tools.pm:1
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "Po des råjhons di såvrité, i va esse disraloyî tot d' shûte."

#: ../../network/tools.pm:1
#, c-format
msgid "The system is now connected to the Internet."
msgstr "Li sistinme est raloyî al rantoele daegnrece."

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Testing your connection..."
msgstr "Dji saye vosse raloyaedje..."

#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voloz vs sayî di vos raloyî al rantoele daegnrece asteure?"

#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
msgstr "Apontiaedje pol rantoele daegnrece"

#: ../../partition_table/raw.pm:1
#, 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 ""
"Ene sacwè di mwais arive a vosse deure plake. \n"
"Åk n' a nén stî tot sayant di verifyî l' etegrité des dnêyes. \n"
"Çoula vout dire ki tot çki vos alez scrire el plake va fini come \n"
"des crombès sacwès a l' astcheyance."

#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid " (Default)"
msgstr " (Prémetou)"

#: ../../printer/cups.pm:1
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Sol sierveu CUPS «%s»"

#: ../../printer/cups.pm:1 ../../printer/main.pm:1
#, c-format
msgid "Remote Printers"
msgstr "Sicrireces å lon"

#: ../../printer/cups.pm:1 ../../printer/data.pm:1
#, c-format
msgid "CUPS"
msgstr "CUPS"

#: ../../printer/cups.pm:1
#, c-format
msgid "(on this machine)"
msgstr "(so ciste éndjole chal)"

#: ../../printer/cups.pm:1
#, c-format
msgid "(on %s)"
msgstr "(so %s)"

#: ../../printer/data.pm:1
#, c-format
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Li novea sistinme di comon eprimaedje po Unix"

#: ../../printer/data.pm:1
#, c-format
msgid "LPRng"
msgstr "LPRng"

#: ../../printer/data.pm:1
#, c-format
msgid "LPRng - LPR New Generation"
msgstr "LPRng - Ene amidrêye modêye do démon d' eprimaedje LPR"

#: ../../printer/data.pm:1
#, c-format
msgid "LPD"
msgstr "LPD"

#: ../../printer/data.pm:1
#, c-format
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Li vî démon d' eprimaedje di GNU/Linux"

#: ../../printer/data.pm:1
#, c-format
msgid "PDQ"
msgstr "PDQ"

#: ../../printer/data.pm:1
#, c-format
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Eprimer sins caweye"

#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Unknown Model"
msgstr "Modele nén cnoxhou"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Unknown model"
msgstr "Modele nén cnoxhou"

#: ../../printer/main.pm:1
#, c-format
msgid "%s (Port %s)"
msgstr "%s (Pôrt %s)"

#: ../../printer/main.pm:1
#, c-format
msgid "Host %s"
msgstr "Lodjoe %s"

#: ../../printer/main.pm:1
#, c-format
msgid "Network %s"
msgstr "Rantoele %s"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
msgstr "Eterface «%s»"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Local network(s)"
msgstr "Rantoele(s) locåle(s)"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Raw printer (No driver)"
msgstr "Eprimaedje direk (sins mineu)"

#: ../../printer/main.pm:1
#, c-format
msgid ", using command %s"
msgstr ", tot-z eployant li cmande %s"

#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " sol sierveu Novell «%s», sicrirece «%s»"

#: ../../printer/main.pm:1
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " sol sierveu Windows «%s», pårtaedje «%s»"

#: ../../printer/main.pm:1
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", lodjoe TCP/IP «%s», pôrt %s"

#: ../../printer/main.pm:1
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " sol sierveu LPD «%s», sicrirece «%s»"

#: ../../printer/main.pm:1
#, c-format
msgid ", printing to %s"
msgstr ", ki rexhe so %s"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device"
msgstr ", éndjin multi-fonccions"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on HP JetDirect"
msgstr ", éndjin multi-fonccions so ene sicrirece HP Jetdirect"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on USB"
msgstr ", éndjin USB multi-fonccions"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on parallel port \\#%s"
msgstr ", éndjin multi-fonccions sol pôrt paralele \\#%s"

#: ../../printer/main.pm:1
#, c-format
msgid ", USB printer"
msgstr ", sicrirece USB"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid ", USB printer \\#%s"
msgstr ", sicrirece USB \\#%s"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid " on parallel port \\#%s"
msgstr " sol pôrt paralele \\#%s"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printers"
msgstr "Sicrireces locåles"

#: ../../printer/main.pm:1
#, c-format
msgid "Pipe job into a command"
msgstr "Evoyî l' bouye a ene comande å truviè d' ene buze"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter a printer device URI"
msgstr "Dinez on URI d' éndjin di scrirece"

#: ../../printer/main.pm:1
#, c-format
msgid "Printer on NetWare server"
msgstr "Sicrirece sor on sierveu NetWare"

#: ../../printer/main.pm:1
#, c-format
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Sicrirece sor on sierveu SMB/Windows"

#: ../../printer/main.pm:1
#, c-format
msgid "Network printer (TCP/Socket)"
msgstr "Sicrirece rantoele (TCP/soket)"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer on remote lpd server"
msgstr "Sicrirece sor on sierveu lpd å lon"

#: ../../printer/main.pm:1
#, c-format
msgid "Printer on remote CUPS server"
msgstr "Sicrirece sor on sierveu CUPS å lon"

#: ../../printer/main.pm:1
#, c-format
msgid "Remote printer"
msgstr "Sicrirece å lon"

#: ../../printer/main.pm:1
#, c-format
msgid "Local printer"
msgstr "Sicrirece locåle"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring applications..."
msgstr "Apontiant les programes..."

#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Printerdrake"
msgstr "Printerdrake"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Dji oistêye li scrirece «%s»..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Voloz vs vormint bodjî foû li scrirece «%s»?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove printer"
msgstr "Oister ene sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Learn how to use this printer"
msgstr "Aprinde kimint rexhe so cisse sicrirece chal"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print test pages"
msgstr "Rexhe les pådjes di saye"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
"Li bodjaedje del sicrirece «%s» po Star Office/OpenOffice.org/GIMP a fwait "
"berwete."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr "Li scrirece «%s» a stî bodjeye po Star Office/OpenOffice.org/GIMP."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr "Oistaedje d' ene sicrirece po Star Office/OpenOffice.org/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Oister cisse sicrirece chal po Star Office/OpenOffice.org/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
"Li radjoutaedje del sicrirece «%s» po Star Office/OpenOffice.org/GIMP a "
"fwait berwete."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr "Li scrirece «%s» a stî radjoutêye po Star Office/OpenOffice.org/GIMP."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "Radjoutaedje d' ene sicrirece po Star Office/OpenOffice.org/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr "Radjouter cisse sicrirece chal po Star Office/OpenOffice.org/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Li scrirece «%s» a stî metowe come prémetowe sicrirece."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Default printer"
msgstr "Prémetowe sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Set this printer as the default"
msgstr "Mete cisse sicrirece come prémetowe sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer options"
msgstr "Tchuzes pol scrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model"
msgstr "Vindeu, modele del sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model, driver"
msgstr "Vindeu, modele, mineu del sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Dji oistêye li viye scrirece «%s»..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer name, description, location"
msgstr "No, discrijhaedje, eplaeçmint del sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer connection type"
msgstr "Sôre di raloyaedje del sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Raw printer"
msgstr "Eprimaedje direk"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do it!"
msgstr "El fé!"

#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
msgid "Close"
msgstr "Clôre"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr ""
"Sicrirece %s\n"
"Cwè voloz vs candjî avou cisse sicrirece chal?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Modify printer configuration"
msgstr "Candjî l' apontiaedje del sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add a new printer"
msgstr "Radjouter ene novele sicrirece"

#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Normal Mode"
msgstr "Môde normå"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Change the printing system"
msgstr "Candjî li sistinme d' eprimaedje"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer sharing"
msgstr "Pårtaedje des scrireces"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS configuration"
msgstr "Apontiaedje di CUPS"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Rafrister li djivêye des scrireces (po-z aveur veyåves totes les scrireces "
"CUPS å lon)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Display all available remote CUPS printers"
msgstr "Håyner totes les scrireces CUPS då lon k' i gn a"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Les scrireces shuvantes sont-st apontieyes. Dobe-clitchîz so ene di zeles "
"pol candjî, pol mete come prémetowe sicrirece, ou po-z aveur des "
"informåcions dso."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"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/GIMP."
msgstr ""
"Les scrireces shuvantes sont-st apontieyes. Dobe-clitchîz so ene di zeles "
"pol candjî, pol mete come prémetowe sicrirece, po-z aveur des informåcions "
"dso; ou po fé k' ene sicrirece so on sierveu CUPS å lon soeye veyåve pa Star/"
"Open Office."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr "Sistinme d' eprimaedje: "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking installed software..."
msgstr "Cwerant après les astalés programes..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing Foomatic..."
msgstr "Astalant Foomatic..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Failed to configure printer \"%s\"!"
msgstr "L' apontiaedje del sicrirece «%s» a fwait berwete!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Apontiant li scrirece «%s»..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer data..."
msgstr "Lijhant les dnêyes del sicrirece..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Which printing system (spooler) do you want to use?"
msgstr "Ké sistinme d' eprimaedje (sôre di caweyaedje) voloz vs eployî?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Spooler"
msgstr "Tchoezixhoz li caweye di scrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Setting Default Printer..."
msgstr "Definixhant li prémetowe sicrirece..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing %s ..."
msgstr "Dj' astale %s ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing %s ..."
msgstr "Dji oistêye %s ..."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Li sistinme d' eprimaedje (%s) ni srè nén enonder otomaticmint cwand "
"l' éndjole s' enondrè.\n"
"\n"
"C' est possibe ki l' enondaedje otomatike fuxhe essocté paski l' livea di "
"såvrité a stî ragrandi, ca l' sistinme d' eprimaedje est on pont possibe "
"d' atakes po les hacneus.\n"
"\n"
"Voloz vs rimete en alaedje l' enondaedje otomatike do sistinme d' eprimaedje?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting the printing system at boot time"
msgstr "Enonder li sistinme d' eprimaedje a l' enondaedje del éndjole"

#: ../../printer/printerdrake.pm:1
#, 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 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.\n"
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
"Vos alez astaler li sistinme d' eprimaedje %s so ene éndjole k' est avou "
"l' livea di såvrité «%s».\n"
"\n"
"Ci sistinme d' eprimaedje chal enonde on démon (ene bouye di fond) ki ratind "
"après les bouyes d' eprimaedje et les manaedje. Ci démon chal pout eto esse "
"raloyî pa des éndjoles då lon sol rantoele, dj' ô bén ça pout esse on pont "
"possibe po les hacneus fé des atakes. Po cisse råjhon la seulment kékes "
"démons sont-st enondés dins ci livea di såvrité chal avou l' apontiaedje "
"prémetou.\n"
"\n"
"Voloz vs vormint apontyî l' eprimaedje so ciste éndjole chal?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Astalaedje d' on sistinme d' eprimaedje e livea di såvrité «%s»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "paranoid"
msgstr "couyon"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "high"
msgstr "hôte"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Restarting printing system..."
msgstr "Renondant li sistinme d' eprimaedje..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuration of a remote printer"
msgstr "Apontiaedje d' ene sicrirece å lon"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Li rantoele n' esteut nén en alaedje, et dj' a nén polou l' enonder. "
"Verifyîz vost apontiaedje et voste éndjolreye. Et poy sayîz cor on côp "
"d' apontyî vosse sicrirece å lon."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network is 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\""
msgstr ""
"L' apontiaedje del rantoele k' a stî fwait tins di l' astalaedje ni pout nén "
"esse enondé asteure. Acertinez vs kel rantoele divént accessibe djusse après "
"l' enondaedje, eyet coridjîz l' apontiaedje avou li cinte di contrôle di "
"Mandrake, al seccion «Rantoele & Daegntoele»/«Raloyaedje», et après apontyîz "
"li scrirece, todi avou l' cinte di contrôle di Mandrake, al seccion "
"«Éndjolreye»/«Sicrirece»."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configure the network now"
msgstr "Apontyî li rantoele asteure"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Go on without configuring the network"
msgstr "Continuwer sins apontyî li rantoele"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Vos alez apontyî ene sicrirece å lon. Çouchal a mezåjhe d' ene rantoele en "
"alaedje, mins li vosse n' est nén co apontieye. Si vos continuwez sins "
"rantoele vos n' pôroz nén sayî li scrirece ki vos apontyîz pol moumint. Cwè "
"voloz vs fé?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network functionality not configured"
msgstr "Li sopoirt del rantoele n' a nén stî apontyî"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting network..."
msgstr "Dj' enonde li rantoele..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refreshing printer data..."
msgstr "Rafristant les dnêyes del sicrirece..."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Vos avoz fwait on transfer di vosse viye prémetowe sicrirece («%s»), El "
"voloz vs mete ossu come prémetowe sicrirece pol novea sistinme d' eprimaedje "
"%s?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transfer printer configuration"
msgstr "Transferer l' apontiaedje del sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transferring %s..."
msgstr "Transfer di %s ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "New printer name"
msgstr "Novea no del sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
"Li scrirece «%s» egzistêye dedja,\n"
"voloz vs vormint spotchî si apontiaedje?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Li no del scrirece doet aveur seulmint des letes, des chifes et li sine "
"«sorlignî» (_)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transfer"
msgstr "Transfer"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"I gn a ddja ene scrirece lomêye «%s» so %s. \n"
"Clitchîz so «Transfer» pol sipotchî.\n"
"Vos ploz ossu dner on novea no, oudonbén passer houte\n"
"l' apontiaedje di cisse sicrirece chal."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not transfer printers"
msgstr "Nén transferer les scrireces"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
"\n"
"Noerixhoz les scrireces ki vos vloz transferer et clitchîz \n"
"so «Transfer»."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
"\n"
"Ossu, les scrireces apontieyes avou des fitchîs PPD dnés pal costrujheu "
"oudonbén avou les mineus CUPS d' oridjene ni polèt nén esse transferêyes "
"nerén."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
"Sol copete di tot çoula, les caweyes ki n' ont nén stî fwaites avou ci "
"programe chal nerén avou «foomatic-configure» ni polèt nén esse transferêyes."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD eyet LPRng ni sopoirtèt nén les scrireces IPP.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"PDQ sopoite seulmint les scrireces locåles, les scrireces LPD å lon eyet les "
"scrireces viè soket/TCP.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
"CUPS ni sopoite nén les scrireces so des sierveus Novell nerén les cenes "
"k' evoyèt les dnêyes so tot l' minme kéne comande.\n"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Vos ploz copyî l' apontiaedje del sicrirece ki vos avoz fwait pol caweye %s "
"pol caweye %s, li cene en alaedje pol moumint. Totes les dnêyes "
"d' apontiaedje (no del sicrirece, discrijhaedje, eplaeçmint, sôre di "
"raloyaedje, eyet prémetowes tchuzes) vont esse sipotcheyes pa les cis ki vos "
"copeyroz, mins les bouyes k' atindèt po rexhe ni vont nén esse candjeyes di "
"caweye.\n"
"Totes les caweyes ni polèt nén esse transferêyes di cisse manire påzès "
"råjhons ki shuvèt:\n"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Vosse sicrirece a stî apontieye otomaticmint po vs diner accès ås lijheus di "
"cåtes foto di vosse copiutrece. Asteure vos ploz aveur accès a vos cåtes "
"foto avou l' programe grafike «MtoolsFM» (Menu: «Programes» -> «Usteyes po "
"fitchîs» -> «Manaedjeu di fitchîs MTools») oudonbén sol roye di comande avou "
"«mtools» (fijhoz «man mtools» po pus di racsegnes). Vos trovroz les fitchîs "
"del cåte foto dizo l' lete di lijheu «P:» ou shuvantes si vos avoz pus "
"d' ene sicrirece HP avou des lijheus di cåtes foto. Dins «MtoolsFM» vos ploz "
"candjî inte les letes di lijheu avou l' tchamp k' est dins l' coine al "
"copete et a droete dins les djivêyes di fitchîs."

#: ../../printer/printerdrake.pm:1
#, 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"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
"L' éndjin multi-fonccions da vosse a stî apontyî otomaticmint po pleur fé "
"des scanaedjes. Asteure vos ploz scaner e roye di comande avou "
"«scanimage» («scanimage -d hp:%s» si vos vloz specifyî li scanrece cwand vos "
"nd avoz pus d' ene), oudonbén avou les eterfaces grafikes «xscanimage» ou "
"«xsane». Si vos eployîz li GIMP, vos ploz ossu scanner tot tchoezixhant li "
"boune intrêye el menu «/Fitchî/Adcweri». Tapez ossu «man scanimage» el roye "
"di cmande si vos vloz pus di racsegnes.\n"
"\n"
"N' eployîz nén «scannerdrake» po cist éndjin chal!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing test page(s)..."
msgstr "Dji rexhe li/les pådje(s) di saye..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print option list"
msgstr "Djivêye des tchuzes pol eprimaedje"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Dji rexhe sol sicrirece «%s»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Eprimaedje/Accès cåtes foto so «%s»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Eprimaedje/sicanaedje so «%s»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Eprimaedje/sicanaedje/cåtes foto so «%s»"

#: ../../printer/printerdrake.pm:1
#, 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\n"
"\n"
msgstr ""
"Po-z saveur les tchuzes k' i gn a pol sicrirece lijhoz li djivêye chal pa "
"dzo oudonbén clitchîz sol boton «Djivêye des tchuzes pol eprimaedje». %s%s\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"\n"
"Les comandes «%s» et «%s» permetèt ossu di candjî les tchuzes po ene bouye "
"d' eprimaedje dnêye. Tot simplumint radjoutez les tchuzes ki vos vloz el "
"roye di comande, eg: «%s <fitchî>».\n"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Vos ploz ossu eployî l' eterface grafike «xpdq» po defini des tchuzes et \n"
"manaedjî les bouyes d' eprimaedje.\n"
"Si vos eployîz KDE come sicribanne vos avoz on boton «panike», et ene "
"imådjete sol sicribanne, avou l' tecse «DJOKER l' eprimaedje!», ki va djoker "
"sol moumint totes les bouyes d' eprimaedje cwand vos l' clitchîz. Çouchal "
"pout esse ahessåve si li scrirece a des problemes avou l' papî.\n"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Cisse comande vos l' poloz ossu eployî pol tchamp «Comande po rexhe» k' i gn "
"a el purnea di dialogue pol eprimaedje di beacôp di programes, mins chal ni "
"metoz nén li no di fitchî ca c' est l' programe kel dinrè.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
"Po-z eprimer on fitchî a pårti del roye di comande (d' on purnea terminå) "
"eployîz li comande «%s <fitchî>» oudonbén «%s <fitchî>».\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
"Po-z aveur ene djivêye des tchuzes k' i gn a pol sicrirece clitchîz sol "
"boton «Djivêye des tchuzes pol eprimaedje»."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"\n"
"Li comande «%s» permete ossu di candjî les tchuzes po ene bouye "
"d' eprimaedje dnêye. Tot simplumint radjoutez les tchuzes ki vos vloz el "
"roye di comande, eg: «%s <fitchî>». "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
"Po-z eprimer on fitchî a pårti del roye di comande (d' on purnea terminå) "
"eployîz li comande «%s <fitchî>».\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
"Vochal ene djivêye des tchuzes k' i gn a pol sicrirece do moumint:\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Vos ploz ossu eployî ces comandes la pol tchamp «Comande po rexhe» k' i gn a "
"el purnea di dialogue pol eprimaedje di beacôp di programes, mins chal ni "
"metoz nén li no di fitchî ca c' est l' programe kel dinrè.\n"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Po-z eprimer on fitchî a pårti del roye di comande (d' on purnea terminå) "
"eployîz li comande «%s <fitchî>» oudonbén ene usteye d' eprimaedje grafike: "
"«xpp <fitchî>» ou «kprinter <fitchî>». Les usteyes grafikes permetèt di "
"tchoezi li scrirece a rexhe avou et candjî åjheymint les tchuzes.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Did it work properly?"
msgstr "Est-ce ki çoula rota comufåt?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
"Li ou les pådjes di saye ont stî evoyeyes al sicrirece.\n"
"Ça pout prinde ene pitite hapêye divant ki li scrirece s' enonde.\n"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Li ou les pådjes di saye ont stî evoyeyes al sicrirece.\n"
"Ça pout prinde ene pitite hapêye divant ki li scrirece s' enonde.\n"
"Avançmint:\n"
"%s\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not print any test page"
msgstr "Èn nén rexhe di pådje di saye"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo test page"
msgstr "Pådje di saye cwålité foto"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Alternative test page (A4)"
msgstr "Pådje di saye alternative (grandeu A4)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Alternative test page (Letter)"
msgstr "Pådje di saye alternative (grandeu «letter»)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Standard test page"
msgstr "Pådje di saye standård"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print"
msgstr "Rexhe"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "No test pages"
msgstr "Nén rexhe les pådjes di saye"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Tchoezixhoz les pådjes di saye ki vos vloz rexhe s' i vs plait.\n"
"Note: li pådje pol saye del cwålité foto pout bén prinde on long moumint a "
"rexhe del sicrirece, avou des scrireces lazer ki n' ont nén beacôp "
"d' memwere, i s' pout minme kel pådje ni rexhe måy.\n"
"Dins l' plupårt des cas c' est assez avou l' pådje di saye sitandård."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Test pages"
msgstr "Rexhe les pådjes di saye"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
"Voloz vs mete cisse sicrirece chal («%s»)\n"
"come li prémetowe sicrirece?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s out of range!"
msgstr "Li tchuze %s est foû limites!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
msgstr "Li tchuze %s doet esse on limero!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Li tchuze %s doet esse on limero etir!"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Apontiaedjes pol prémetowe sicrirece\n"
"\n"
"Acertinez vs kel grandeu do papî eyet li sôre d' intche ou l' môde "
"d' eprimaedje (cwand on les pout tchoezi) sont-st apontyîs comufåt. Et ossu "
"ki l' apontiaedje del éndjolreye po les scrireces lazer (memwere, baks "
"duplecs, baks di rawete) est fwait comufåt. Notez k' avou ene grande finté "
"ou cwålité pol rexhowe l' eprimaedje pout esse bén pus londjin."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Your printer belongs to the group of GDI laser printers (winprinters) sold "
"by different manufacturers which uses the Zenographics ZJ-stream raster "
"format for the data sent to the printer. The driver for these printers is "
"still in a very early development stage and so it will perhaps not always "
"work properly. Especially it is possible that the printer only works when "
"you choose the A4 paper size.\n"
"\n"
"Some of these printers, as the HP LaserJet 1000, for which this driver was "
"originally created, need their firmware to be uploaded to them after they "
"are turned on. In the case of the HP LaserJet 1000 you have to search the "
"printer's Windows driver CD or your Windows partition for the file "
"\"sihp1000.img\" and upload the file to the printer with one of the "
"following commands:\n"
"\n"
"     lpr -o raw sihp1000.img\n"
"     cat sihp1000.img > /dev/usb/lp0\n"
"\n"
"The first command can be given by any normal user, the second must be given "
"as root. After having done so you can print normally.\n"
msgstr ""
"Vosse sicrirece est do groupe di scrireces lazer GDI (ossu lomêyes "
"winprinters) vindowes pa sacwants fabricants k' eployèt li sistinme ZJ-"
"stream di Zenographics po-z evoyî les dnêyes sol sicrirece. Li mineu po ces "
"scrireces la est co å cminçmint di s' diswalpaedje, et motoit bén k' i "
"n' rotrè nén comufåt a tos les côps. Pårticulirmint c' est nén possibe "
"d' eprimî avou do papî ki n' est nén al cogne sitandård A4.\n"
"\n"
"Sacwantes di ces scrireces la, come li HP LaserJet 1000, ki l' mineu a stî "
"scrît oridjinålmint por leye, ont mezåjhe di rçure leu firmware djusse après "
"aveur stî metowes en alaedje. Dins l' cas del HP LaserJet 1000 vos dvoz "
"prinde sol CD di mineus Windows del sicrirece ou sol pårticion Windows li "
"fitchî «sihp10000.img» eyet l' evoyî al sicrirece avou ene des comandes ki "
"shuvèt:\n"
"\n"
"     lpr -o raw sihp1000.img\n"
"     cat sihp1000.img > /dev/usb/lp0\n"
"\n"
"Li prumire comande pout esse enondêye pa tot l' minme ké uzeu; pol deujhinme "
"i få esse root. On côp ki vos l' avoz fwait, vos ploz eployî l' sicrirece "
"normålmint.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr "Sicrirece Lazer GDI k' eploye li ZJ-Stream di Zenographics"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Po vos poleur eprimer avou vosse Lexmark inkjet eyet cist apontiaedje chal, "
"i vs fåt les mineus po les scrireces a djet d' intche di Lexmark. Alez sol "
"waibe http://www.lexmark.com et clitchîz sol boton «Drivers». Poy, "
"tchoezixhoz vosse modele, et «Linux» come sistinme d' operance. Les mineus "
"vnèt come des pacaedjes RPM ou des scripes shell avou ene eterface "
"d' astalaedje eteractive grafike. Vos n' avoz nén mezåjhe del apontyî avou "
"ciste eterface grafike. Clitchîz so «Rinoncî» djusse après accepter "
"l' licince, et poy fijhoz rexhe les pådjes po mete e roye les tiesse "
"d' eprimaedje avou «lexmarkmaintain» et coridjîz s' i fåt l' alignmint des "
"tiesse d' eprimaedje avou ci programe la."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Lexmark inkjet configuration"
msgstr "Apontiaedje del sicrirece Lexmark inkjet"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Les mineus po les scrireces a djet d' intche k' ont stî dné pa Lexmark "
"sopoirtèt seulmint les scrireces locåles, nén les scrireces å lon ou so des "
"sierveus d' eprimaedje. I vos fåt l' mete so on pôrt locå oudonbén "
"l' apontyî sol éndjole wice k' ele est raloyeye."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Vos estoz po-z apontyî ene sicrirece OKI laser winprinter.\n"
"Ces scrireces la eployèt on protocole di comunicåcion foirt sipeciål, çou ki "
"fwait k' ele ni polèt roter comufåt ki raloyeyes å prumî pôrt paralele. "
"Cwand li scrirece est raloyeye a on ôte pôrt ou raloyeye a on sierveu "
"d' eprimaedje, i vos l' fåt mete sol prumî pôrt paralele divant d' poleur "
"rexhe li pådje di saye. Ôtrumint ele ni rotrè nén. Li sôre di raloyaedje ki "
"vos avoz dné ni srè nén prindou e conte pal mineu."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "OKI winprinter configuration"
msgstr "Apontiaedje del sicrirece OKI winprinter"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
"Si vosse sicrirece n' est nén el djivêye, tchoezixhoz ene copatibe (lijhoz "
"li manuwel del sicrirece) ou ene ki rshonne li pus."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"\n"
"\n"
"Verifyîz ki Printerdrake a fwait comufåt li deteccion \n"
"otomatike do modele di vosse sicrirece, s' i vs plait.\n"
"Cweroz après li modele corek el djivêye si on måva \n"
"modele a stî trové, ou si c' est «Eprimaedje direk» \n"
"(çou ki vout dire ki nou mineu a stî trové)."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Which printer model do you have?"
msgstr "Ké modele di scrirece avoz vs?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer model selection"
msgstr "Tchuze do modele del sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer database..."
msgstr "Lijhant les båzes di dnêyes des scrireces..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select model manually"
msgstr "Tchoezi li modele al mwin"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The model is correct"
msgstr "Li modele est corek"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Printerdrake a comparé li no do modele trové avou li deteccion otomatike "
"avou li djivêye des modeles di s' båze di dnêyes po vey li meyeuse "
"corespondance. Cisse tchuze otomatike pout esse fåsse, sortot si vosse "
"sicrirece ni s' trove nén el djivêye. Verifyîz d' abôrd si l' tchuze est "
"coreke, et clitchîz so «Li modele est corek» si c' est insi, oudonbén so "
"«Tchoezi li modele al mwin» si vos vloz l' candjî.\n"
"\n"
"Po vosse sicrirece Printerdrake a trové:\n"
"\n"
"%s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Your printer model"
msgstr "Li modele di vosse sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Preparing printer database..."
msgstr "Dji prepare les båzes di dnêyes des scrireces..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Location"
msgstr "Eplaeçmint"

#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Description"
msgstr "Discrijhaedje"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Name of printer"
msgstr "No del sicrirece"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Totes les scrireces divèt poirter on no (par egzimpe lp).\n"
"Les tchamps di discrijhaedje ou di l' eplaeçmint polèt esse leyîs e blanc. "
"C' est des rawetes po les uzeus."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter Printer Name and Comments"
msgstr "Dinez l' no eyet l' rawete pol sicrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Making printer port available for CUPS..."
msgstr "Dji rind les pôrts des scrireces disponibes po CUPS..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo memory card access on your HP multi-function device"
msgstr "Accès åzès cåtes memwere po les fotos so l' éndjin multi-fonccions HP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning on your HP multi-function device"
msgstr "Sicanaedje so l' éndjin multi-fonccions HP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing mtools packages..."
msgstr "Astalant les pacaedjes mtools..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing SANE packages..."
msgstr "Astalant les pacaedjes SANE..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking device and configuring HPOJ..."
msgstr "Verifiaedje les éndjins eyet apontiaedje di HPOJ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing HPOJ package..."
msgstr "Astalant les pacaedjes HPOJ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
"Est çki vosse sicrirece est on éndjin multi-fonccions d' amon HP ou Sony "
"(OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 avou scanrece, Sony IJP-"
"V100), ene HP PhotoSmart ou ene HP LaserJet 2200?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "A command line must be entered!"
msgstr "Ene roye di cmande doet esse tapêye!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Command line"
msgstr "Roye di cmande"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Chal vos ploz dner tot l' minme li kéne comande ki l' bouye î doet esse "
"voyeye åd truviè d' ene buze"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Pipe into command"
msgstr "Evoyî l' bouye a ene comande å truviè d' ene buze"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Detected model: %s %s"
msgstr "Modele detecté: %s %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "A valid URI must be entered!"
msgstr "Ene hårdêye di valåbe doet esse dinêye!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
msgstr "URI di l' éndjin del scrirece"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Vos ploz mete directumint li hårdêye del sicrirece. Li hårdêye doet shure "
"les specificåcions di CUPS ou di Foomatic. Notez ki totes les sôres di "
"hårdêyes ni sont nén sopoirtêyes pa totes les caweyes di scrireces."

#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Port"
msgstr "Pôrt"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer host name or IP"
msgstr "Adresse IP ou no do lodjoe del scrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The port number should be an integer!"
msgstr "Li pôrt doet esse on limero etir!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer host name or IP missing!"
msgstr "Nole adresse IP et nou no pol lodjoe del scrirece!"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Po-z eprimî avou ene sicrirece TCP ou soket, vos dvoz dner li no d' lodjoe "
"ou l' adresse IP del sicrirece, et motoit ossu li limero do pôrt (si "
"premetowe valixhance est 9100). So les sierveus HP JetDirect li pôrt est "
"normålmint li 9100, so d' ôtes sierveus çoula pout candjî. Lijhoz li manuel "
"di voste éndjolreye."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Tchoezixhoz e l' djivêye ene des scrireces trovêyes otomaticmint oudonbén "
"rimplixhoz les tchamps avou l' no d' lodjoe ou l' adresse IP et l' limero "
"d' pôrt (prémetou a 9100)."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "TCP/Socket Printer Options"
msgstr "Tchuzes scrirece rantoele TCP/soket"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Lodjoe «%s», pôrt %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", lodjoe «%s», pôrt %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning network..."
msgstr "Dj' analijhe li rantoele..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection"
msgstr "Deteccion otomatike des scrireces"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP queue name missing!"
msgstr "Nou no d' caweye NCP!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP server name missing!"
msgstr "Nou no d' sierveu NCP!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print Queue Name"
msgstr "No del caweye del scrirece"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Server"
msgstr "Sierveu di scrireces"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Po rexhe avou ene sicrirece NetWare, vos dvoz diner li no NetWare do sierveu "
"di scrireces (ki pout ni nén esse li minme ki si no di lodjoe TCP/IP) di "
"minme ki li no del caweye del scrirece ki vos voloz eployî, eyet les nos et "
"mots di passe des uzeus k' i fåreut."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NetWare Printer Options"
msgstr "Tchuzes scrirece NetWare"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Raloyî vosse sicrirece a on sierveu Linux eyet leyî li(les) éndjole(s) "
"Windows s' î raloyî come des cliyants.\n"
"\n"
"Voloz vs vormint continuwer l' epontiaedje del sicrirece di cisse manire "
"chal?"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Apontyî vosse sierveu Windows po kel sicrirece soeye disponive dizo "
"l' protocole IPP eyet apontyî l' eprimaedje a pårti di ciste éndjole chal "
"avou l' sôre di raloyaedje «%s» dins Printerdrake.\n"

#: ../../printer/printerdrake.pm:1
#, 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:1
#, c-format
msgid "SECURITY WARNING!"
msgstr "ADVIERIXHMINT DI SÅVRITÉ!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Samba share name missing!"
msgstr "Nou no di pårtaedje samba!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Either the server name or the server's IP must be given!"
msgstr "I fåt dner li no do sierveu oudonbén l' adresse IP do sierveu!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detected"
msgstr "Detecté otomaticmint"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Workgroup"
msgstr "Groupe d' ovraedje"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Share name"
msgstr "No del pårteye"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server IP"
msgstr "IP do sierveu SMB"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server host"
msgstr "Lodjoe sierveu SMB"

#: ../../printer/printerdrake.pm:1
#, 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 ""
" Si l' sicrirece ki vos vloz a stî detectêe otomaticmint, vos n' avoz k' a "
"l' tchozi dins l' djivêye et radjouter les nos d' uzeu, sicret et li groupe "
"d' ovraedje s' end a mezåjhe."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Po rexhe avou ene sicrirece SMB, vos dvoz dner li no SMB do lodjoe (ki pout "
"ni nén esse li minme ki si no di lodjoe TCP/IP) et motoit si adresse IP, di "
"minme ki li no del pårteye scrirece ki vos vloz eployî, eyet les nos, mots "
"di passe des uzeus et informåcion des hopeas d' ovraedje k' i fåreut."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Tchuzes scrirece SMB/Windows"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Sicrirece «%s» sol sierveu «%s»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ", sicrirece «%s» sol sierveu «%s»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote printer name missing!"
msgstr "Nou no pol sicrirece å lon!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote host name missing!"
msgstr "Nou no pol lodjoe å lon!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote printer name"
msgstr "No del sicrirece å lon"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote host name"
msgstr "No do lodjoe å lon"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Po-z eployî ene sicrirece lpd å lon, vos dvoz dner li no di lodjoe do "
"sierveu di scrireces eyet li no del sicrirece sol sierveu."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
msgstr "Tchuzes scrirece lpd å lon"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Manual configuration"
msgstr "Apontiaedje manuel"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must choose/enter a printer/device!"
msgstr "Vos dvoz tchoezi/dner ene sicrirece/on éndjin!"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"(Les pôrts paraleles: /dev/lp0, /dev/lp1,..., corespondèt a LPT1:, "
"LPT2:,..., Li 1re sicrirece USB: /dev/usb/lp0, li 2inme sicrirece USB: /dev/"
"usb/lp1,...) "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Please choose the port that your printer is connected to."
msgstr "Tchoezixhoz li pôrt ki vosse sicrirece est raloyeye dzo."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Tchoezixhoz li pôrt ki vosse sicrirece est raloyeye oudonbén dnez on no "
"d' fitchî ou d' éndjin sol roye d' intrêye, s' i vs plait."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Please choose the printer to which the print jobs should go."
msgstr "Tchoezixhoz li scrirece ki les bouyes d' eprimaedje î sront evoyeyes."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Tchoezixhoz li scrirece ki vos vloz apontyî, s' i vs plait. Si apontiaedje "
"srè fwait totafwaitmint otomaticmint. Si vosse sicrirece n' a nén stî "
"detectêye comufåt, ou si vos inmez mî on apontiaedje diferin, metoz en "
"alaedje «Apontiaedje manuel»."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Here is a list of all auto-detected printers. "
msgstr "Vochal ene djivêye des scrireces k' ont stî detectêyes otomaticmint. "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Currently, no alternative possibility is available"
msgstr "I gn a pol moumint nén d' ôte tchuze possibe"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"L' apontiaedje del sicrirece srè fwait totafwaitmint otomaticmint. Si vosse "
"sicrirece n' a nén stî detectêye comufåt, ou si vos inmez mî on apontiaedje "
"diferin, metoz en alaedje «Apontiaedje manuel»."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The following printer was auto-detected. "
msgstr "Li scrirece ki shût a stî detectêye otomaticmint. "

#: ../../printer/printerdrake.pm:1
#, 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 ""
"S' i vs plait, tchoezixhoz li scrirece ki les bouyes d' eprimaedje sont-st "
"evoyeyes dnez on no d' fitchî ou d' éndjin sol roye d' intrêye."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the printer you want to set up or enter a device name/file "
"name in the input line"
msgstr ""
"Tchoezixhoz li scrirece ki vos vloz apontyî oudonbén dnez on no d' fitchî ou "
"d' éndjin sol roye d' intrêye, s' i vs plait."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr ""
"Ou vos ploz ossu dner on no d' fitchî ou d' éndjin sol roye d' intrêye."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If it is not the one you want to configure, enter a device name/file name in "
"the input line"
msgstr ""
"Si c' est nén li cene ki vos vloz apontyî, dnez on no d' fitchî ou d' éndjin "
"sol roye d' intrêye."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Available printers"
msgstr "Sicrireces k' i gn a"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "No printer found!"
msgstr "Nole sicrirece di trovêye!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must enter a device or file name!"
msgstr "Vos dvoz taper on no d' éndjin ou d' fitchî!"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Nole sicrirece locåle di trovêye! Po-z end astaler manuwelmint ene dinez on "
"no d' éndjin sol roye d' intrêye (Les pôrts paraleles: /dev/lp0, /dev/"
"lp1,..., corespondèt a LPT1:, LPT2:,..., Li 1re sicrirece USB: /dev/usb/lp0, "
"li 2inme sicrirece USB: /dev/usb/lp1,...)."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printer"
msgstr "Sicrirece locåle"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "USB printer \\#%s"
msgstr "Sicrirece USB \\#%s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer on parallel port \\#%s"
msgstr "Sicrirece sol pôrt paralele \\#%s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Sicrirece «%s» sol sierveu SMB/Windows «%s»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Sicrirece rantoele «%s», pôrt %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Detected %s"
msgstr "%s detecté"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ", sicrirece «%s» sol sierveu SMB/Windows «%s»"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", sicrirece rantoele «%s», pôrt %s"

#: ../../printer/printerdrake.pm:1
#, 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 Mandrake Control "
"Center."
msgstr ""
"\n"
"Proficiat! Li scrirece da vosse est asteure astalêye eyet apontieye!\n"
"\n"
"Vos ploz eprimî avou li comande «Eprimî» di vos programes (normålmint elle "
"est dizo l' menu «Fitchî»).\n"
"\n"
"Si vos vloz radjouter, bodjî ou candjî l' no d' ene sicrirece, ou si vos "
"vloz candjî les prémetowès tchuzes (sôre di papî, cwålité del rexhowe,...), "
"tchoezixhoz «Sicrirece» dins l' seccion «Éndjolreye» do cinte di contrôle di "
"Mandrake."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr "Oto-deteccion des scrireces raloyeyes a des éndjoles dizo Windows"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected directly to the local network"
msgstr "Oto-deteccion des scrireces raloyeyes directumint sol rantoele locåle"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to this machine"
msgstr "Oto-deteccion des scrireces raloyeyes a ciste éndjole chal"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"\n"
"Bénvnowe sol macrea d' apontiaedje des scrireces\n"
"\n"
"Ci macrea chal vs aidrè a-z astaler vos scrireces ki sont raloyeyes a cisse "
"copiutrece chal.\n"
"\n"
"Si vos avoz des scrireces di raloyeyes so ciste éndjole chal, verifyîz "
"k' ele sont bén tchoûkeyes et loumêyes po zeles poleur esse detectêyes "
"otomaticmint.\n"
"\n"
"Clitchîz so «Shuvant» cwand vos estoz presse, ou so «Rinoncî» si vos "
"n' voloz nén apontyî vos scrireces pol moumint."

#: ../../printer/printerdrake.pm:1
#, 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 don't 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 ""
"\n"
"Bénvnowe sol macrea d' apontiaedje des scrireces\n"
"\n"
"Ci macrea chal vs aidrè a-z astaler vos scrireces ki sont raloyeyes a cisse "
"copiutrece chal ou sol rantoele locåle.\n"
"\n"
"Si vos avoz des scrireces di raloyeyes so ciste éndjole chal, verifyîz "
"k' ele sont bén tchoûkeyes et loumêyes po zeles poleur esse detectêyes "
"otomaticmint. Vos scrireces rantoele dvèt ossu esse en alaedje.\n"
"\n"
"Notez ki l' deteccion otomatike des scrireces sol rantoele prind ene miete "
"pus di tins ki l' deteccion des scrireces ki sont raloyeyes direk so ciste "
"éndjole chal. Adon, vos dvrîz disclitchî li deteccion des scrireces rantoele "
"si vos n' end avoz nén mezåkje.\n"
"\n"
"Clitchîz so «Shuvant» cwand vos estoz presse, ou so «Rinoncî» si vos "
"n' voloz nén apontyî vos scrireces pol moumint."

#: ../../printer/printerdrake.pm:1
#, 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"
"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) 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 don't 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 ""
"\n"
"Bénvnowe sol macrea d' apontiaedje des scrireces\n"
"\n"
"Ci macrea chal vs aidrè a-z astaler vos scrireces ki sont raloyeyes a cisse "
"copiutrece chal, sol rantoele locåle ou so ene éndjole Windows å lon.\n"
"\n"
"Si vos avoz des scrireces di raloyeyes so ciste éndjole chal, verifyîz "
"k' ele sont bén tchoûkeyes et loumêyes po zeles poleur esse detectêyes "
"otomaticmint. Vos scrireces rantoele ou so les éndjoles Windows dvèt ossu "
"esse en alaedje.\n"
"\n"
"Notez ki l' deteccion otomatike des scrireces sol rantoele prind ene miete "
"pus di tins ki l' deteccion des scrireces ki sont raloyeyes direk so ciste "
"éndjole chal. Adon, vos dvrîz disclitchî li deteccion des scrireces rantoele "
"et Windows si vos n' end avoz nén mezåkje.\n"
"\n"
"Clitchîz so «Shuvant» cwand vos estoz presse, ou so «Rinoncî» si vos "
"n' voloz nén apontyî vos scrireces pol moumint."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"\n"
"Wilicome å macrea d' apontiaedje des scrireces\n"
"\n"
"Ci macrea chal vos permetrè d' astaler des scrireces locåles ou då lon po ls "
"eployî a pårti di ciste éndjole chal et ossu d' ôtès éndjoles sol rantoele.\n"
"\n"
"I vos dmandrè totes les informåcions k' i fåt po-z apontyî les scrireces et "
"vos denrè accès a tos les mineus di scrirece k' i gn a, les tchuzes po les "
"mineus, et les sôres di raloyaedje åzès scrireces."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Printerdrake could not determine which model your printer %s is. Please "
"choose the correct model from the list."
msgstr ""
"\n"
"\n"
"Printerdrake n' a nén savou vey li modele di vosse sicrirece %s. Tchoezixhoz "
"l' modele corek e l' djivêye s' i vs plait."

#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
msgid ")"
msgstr ")"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid " on "
msgstr " so "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "("
msgstr "("

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring printer ..."
msgstr "Apontiant li scrirece..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Searching for new printers..."
msgstr "Dji cwir après des nouvès scrireces..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
"NOTE: Sorlon li modele del sicrirece eyet li sistinme d' eprimaedje, i gn "
"årè mezåjhe d' astaler disk' a %d Mo di pacaedjes di rawete."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr "Estoz vs seur di voleur apontyî l' eprimaedje so ciste éndjole chal?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you want to enable printing on the printers mentioned above?\n"
msgstr ""
"Voloz vs mete en alaedje l' eprimaedje so les scrireces chal pa dzeur?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
msgstr ""
"Voloz vs mete en alaedje l' eprimaedje so les scrireces sol rantoele "
"locåle?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""
"Voloz vs mete en alaedje l' eprimaedje so les scrireces chal pa dzeur ou so "
"les scrireces sol rantoele locåle?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid " (Make sure that all your printers are connected and turned on).\n"
msgstr " (Acertinoz vs ki totes vos scrireces sont raloyeyes ey en alaedje).\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"There are no printers found which are directly connected to your machine"
msgstr "Nole sicrirece a stî trovêye di raloyeye direk so voste éndjole"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
"\n"
"I gn a %d scrireces nén cnoxhowes di raloyeyes direk so voste éndjole"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
"\n"
"I gn a-st ene sicrirece nén cnoxhowe di raloyeye direk so voste éndjole"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"is directly connected to your system"
msgstr ""
"Li scrirece shuvante\n"
"\n"
"%s%s\n"
"est raloyeye direk so voste éndjole"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
"Les scrireces shuvantes\n"
"\n"
"%s%s\n"
"sont raloyeyes direk so voste éndjole"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printers\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
"Les scrireces shuvantes\n"
"\n"
"%s%s\n"
"sont raloyeyes direk so voste éndjole"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "and %d unknown printers"
msgstr "eyet %d scrireces nén cnoxhowes sont "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "and one unknown printer"
msgstr "eyet ene sicrirece nén cnoxhowe sont "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking your system..."
msgstr "Verifiant vosse sistinme..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Restarting CUPS..."
msgstr "Dji renonde CUPS..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This server is already in the list, it cannot be added again.\n"
msgstr ""
"Ci sierveu chal est ddja el djivêye, i n' pout nén esse radjouté co ene "
"feye.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Examples for correct IPs:\n"
msgstr "Egzimpes d' adresses IP corekes:\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The entered IP is not correct.\n"
msgstr "L' adresse IP dnêye n' est nén coreke.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Server IP missing!"
msgstr "Nole adresse IP pol sierveu!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""
"Dinez l' adresse IP eyet l' pôrt do lodjoe ki vos vloz eployî ses scrireces."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Accessing printers on remote CUPS servers"
msgstr "Accès åzès scrireces sor on sierveu CUPS å lon"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected server"
msgstr "Oister li tchoezi sierveu"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Edit selected server"
msgstr "Candjî li tchoezi sierveu"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add server"
msgstr "Radjouter sierveu"

#: ../../printer/printerdrake.pm:1
#, 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:1
#, c-format
msgid "IP address of host/network:"
msgstr "Adresse IP do lo lodjoe/del rantoele:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This host/network is already in the list, it cannot be added again.\n"
msgstr ""
"Ci lodjoe/cisse rantoele est ddja el djivêye, i/ele ni pout nén esse "
"radjoutêye co ene feye.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The entered host/network IP is not correct.\n"
msgstr "L' adresse IP dnêye pol lodjoe/rantoele n' est nén coreke.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host/network IP address missing."
msgstr "I manke l' adresse IP do lodjoe/del rantoele."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
msgstr ""
"Tchoezixhoz li rantoele ou l' lodjoe ki les scrireces locåles dvèt î esse "
"disponibes:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Sharing of local printers"
msgstr "Pårtaedjaedje di sicrireces locåles"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
msgstr "Oister les tchoezis lodjoes/rantoeles"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Edit selected host/network"
msgstr "Candjî li tchoezi lodjoe/rantoele"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add host/network"
msgstr "Radjouter lodjoe/rantoele"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""
"Çouchal c' est les éndjoles eyet rantoeles ki li/les scrirece(s) locåle(s) î "
"est/sont disponibe(s):"

#: ../../printer/printerdrake.pm:1
#, 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:1
#, c-format
msgid "Automatic correction of CUPS configuration"
msgstr "Coridjaedje otomatike di l' apontiaedje di CUPS"

#: ../../printer/printerdrake.pm:1
#, 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:1
#, c-format
msgid "None"
msgstr "Nole"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Additional CUPS servers: "
msgstr "Sierveus CUPS di rawete: "

#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
msgid "No remote machines"
msgstr "Nole éndjole då lon"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Custom configuration"
msgstr "Apontiaedje da vosse"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer sharing on hosts/networks: "
msgstr "Pårtaedje di scrireces so les lodjoes/rantoeles: "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
msgstr "Trover otomaticmint les scrireces so des éndjoles då lon"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The printers on this machine are available to other computers"
msgstr ""
"Les scrireces so ciste éndjole chal sont disponibes po d' ôtès copiutreces"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""
"Vos ploz eto decider chal si les scrireces so des éndjonles då lon dvèt esse "
"metowes otomaticmint disponibes po ciste éndjole chal."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
"Chal vos ploz tchoezi si les scrireces raloyeyes locålmint so ciste éndjole "
"chal dvèt esse accessibe pa des éndjoles då lon, et pa kénès éndjoles."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS printer sharing configuration"
msgstr "Apontiaedje do påraedjaedje des scrireces di CUPS"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr "Deteccion otomatike des scrireces (Locåles, TCP/soket eyet SMB)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""
"\n"
"Po les scrireces d' on sierveu CUPS å lon i gn a nou mezåjhe dels\n"
"apontyî chal: ele sront otomaticmint trovêyes."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "How is the printer connected?"
msgstr "Kimint li scrirece est ele raloyeye?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Connection"
msgstr "Tchoezixhoz li raloyaedje del sicrirece"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (umask)\n"
"\n"
"Set the user umask."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (val)\n"
"\n"
"Set the shell timeout. A value of zero means no timeout."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (size)\n"
"\n"
"Set shell commands history size. A value of -1 means unlimited."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check open ports."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result by mail."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"if set to yes, check for empty passwords, for no password in /etc/shadow and "
"for users with the 0 id other than root."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report unowned files."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (umask)\n"
"\n"
"Set the root umask."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (length, ndigits=0, nupper=0)\n"
"\n"
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Set the password history length to prevent password reuse."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (max, inactive=-1)\n"
"\n"
"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
"\\fP."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (name)\n"
"\n"
"Add the name as an exception to the handling of password aging by msec."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Enable/Disable sulogin(8) in single user level."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Activate/Disable daily security check."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Activate/Disable ethernet cards promiscuity check."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Use password to authenticate users."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable msec hourly security check."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable the logging of IPv4 strange packets."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, alert=1)\n"
"\n"
"Enable/Disable IP spoofing protection."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, alert=1)\n"
"\n"
"Enable/Disable name resolution spoofing protection.  If\n"
"\\fIalert\\fP is true, also reports to syslog."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, expr='*.*', dev='tty12')\n"
"\n"
"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
"expression describing what to log (see syslog.conf(5) for more details) and\n"
"dev the device to report the log."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
"allow and /etc/at.allow\n"
"(see man at(1) and crontab(1))."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: ()\n"
"\n"
"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
"server\n"
"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
"server\n"
"is used by chkconfig --add to decide to add a service if it is present in "
"the file\n"
"during the installation of packages."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
"\\fIarg\\fP = ALL. Only local ones\n"
"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
"services you need, use /etc/hosts.allow\n"
"(see hosts.allow(5))."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"The argument specifies if clients are authorized to connect\n"
"to the X server on the tcp port 6000 or not."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, listen_tcp=None)\n"
"\n"
"Allow/Forbid X connections. First arg specifies what is done\n"
"on the client side: ALL (all connections are allowed), LOCAL (only\n"
"local connection) and NONE (no connection)."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid direct root login."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid remote root login."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid reboot by the console user."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
"\\fP = NONE no issues are\n"
"allowed else only /etc/issue is allowed."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid autologin."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Accept/Refuse icmp echo."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Accept/Refuse broadcasted icmp echo."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Accept/Refuse bogus IPv4 error messages."
msgstr ""