summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbackup
blob: db3daa65018b545f4359bafec37ccd56c2605396 (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
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
#!/usr/bin/perl
#
#  Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s@epita.fr>
#  Updated 2002 by Stew Benedict <sbenedict@mandrakesoft.com>
#  Redistribution of this file is permitted under the terms of the GNU
#  Public License (GPL)
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2, or (at your option)
#  any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#________________________________________________________________
#
#  Description:
#
#   Drakbackup is used to backup your system.
#   During the configuration you can select 
# 	- System files, 
# 	- Users files, 
# 	- Other files.
# 	or All your system ...  and Other (like windows Partitions)
#
#   Drakbackup allows you to backup your system on:
# 	- Harddrive.
# 	- NFS.
# 	- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).
# 	- FTP.
# 	- Rsync.
# 	- Webdav.
# 	- Tape.
#
#   Drakbackup allows you to Restore your system on
#   choosen directory.
#
#   Per default all backup will be stored on your
#   /var/lib/drakbackup directory
#
#   Configuration file:
# 	/etc/drakconf/drakbackup/drakbakup.conf
#
#________________________________________________________________
#
#  Backup files formats:
#	
#	no incremental backup:
#			backup_sys_date_hour.tar.*
#			backup_user_toto_date_hour.tar.*
#			backup_other_date_hour.tar.*
#
#	first incremental backup: (if backup_base* does not exist )
#
#			backup_base_sys_date_hour.tar.*
#			backup_base_user_toto_date_hour.tar.*
#			backup_base_other_date_hour.tar.*
#			
#	other incremental backup: (if backup_base* already exist )
#
#			backup_incr_sys_date_hour.tar.*
#			backup_incr_user_toto_date_hour.tar.*
#			backup_incr_other_date_hour.tar.*
#
#	all backup runs will generate:
#
#			drakbackup_date_hour.txt
#
#			this will contain media & hostname	
#________________________________________________________________
# 
# REQUIRE:      cron if daemon
#               cdrecord & mkisofs
#		perl Net::FTP
#		ssh-askpass
#		sitecopy - for webdav
#		rsync
#		perl Expect
	
# BUGS :
#DONE		restore->other_media->next->previous => crash ...
#DONE		selection des sources a inclure dans le backup cd. 
#DONE		help -> ok after install_rpm
#    	sort of fixed - doesn't always land where you would expect
#		but at least it doesn't die
#           
# TODO:
#		1 - print ftp problem for user. 
#	    2 - calcul disk space.
#		   use quota.
#DONE       3 - ssh & rsync -> expect or .identity.pub/authorized_keys 
#WHY? - Apple can read Joliet - would you really be restoring on MacOS?		
#Or for bootable - PPC is being depracated anyway ;(
#		4 - write on cd --> ! change Joliet to HFS for Apple
#DONE		5 - cd writer detection  -> cdrw: /sys/dev/cdrom/info  /scsi/host0/bus0/target4/lun0 
#			/proc/sys/dev/cdrom/
#		6 - total backup.( all partitions wanted, windows partitions for example!)
#		    dump use for total backup.
#		7 - custom deamon
#		8 - placer README dans $save_path -> prevenir des danger de supprimer la premier version
#		    explain configuration file variables (mainly for non X users)
#DONE		9 - webdav
#	    10- backend : --resore_all, --restore_sys, --restore_users
#WHAT IS THIS?
#			  --build_cd_autoinst 	
#DONE--default does this NOW			  
#			  --backup_now --backup_default_now
#DONE-BASIC SUPPORT		11- tape device support		 
#		12- cpio use !!
#		13- boot floppy disk (with dialog)
#		14- build autoboot with backup and install cd 
#		15- use .backupignore like on CVS
#		16- afficher les modif dans un fichier texte du meme nom 
#			pour afficher durant le restore.
#		17- futur: could be possible to restore a specific file 
#			or directory at specific date. 
#		18- possible all files each time from directory.
#		               
# DONE TODAY:
#________________________________________________________________

use Gtk;
use lib qw(/usr/lib/libDrakX);

use standalone;     #- warning, standalone must be loaded very first, for 'explanations'

use interactive;
use my_gtk qw(:helpers :wrappers);
use common;
use strict;
use Time::localtime;
use detect_devices;
use Data::Dumper;

my $in = 'interactive'->vnew('', 'default');
$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/;

if ("@ARGV" =~ /--help|-h/) {
    print q(Backup and Restore application

--default             : save default directories.
--debug		      : show all debug messages.
--show-conf           : list of files or directories to backup.
--config-info	      : explain configuration file options (for non-X users).
--daemon              : use daemon configuration. 
--help                : show this message.
--version             : show version name.
);
    exit(0);
}

if ("@ARGV" =~ /--version/) {
    print "Drakbackup Version 1.2\n";
    exit(0);
}

# Backend Options.
# make this global for status screen      
my $window1;
my $central_widget;
my $previous_widget;
my $current_widget;
my $interactive;
my $up_box;
my $advanced_box;
my $box2;
my $cfg_file_exist = 0;
my @all_user_list;
my $list_other;
my $DEBUG = 0;
my $restore_sys = 1; 
my $restore_user = 1; 
my $restore_other = 1; 
my $restore_step_sys_date = "";
my @user_backuped;
my @sys_backuped;
my $sys_backuped = 0;
my $other_backuped = 0;
my @user_list_to_restore;
my @sys_list_to_restore;
my $cd_device_entry;
my $custom_help;
my $button_box;
my $button_box_tmp;
my $next_widget;
my $sav_next_widget;
my $system_state;
my $restore_state;
my $save_path_entry;
my $restore_find_path_entry;
my $pbar;
my $pbar1;
my $pbar2;
my $pbar3;
my $stext;
my $the_time;
my @user_list_to_restore2;
my @data_backuped;
my $label_tail;
my @list_to_build_on_cd; 
my $restore_path = "/";
my $restore_other_path = 0;
my $restore_other_src;
my $path_to_find_restore;
my $other_media_hd;
my $backup_bef_restore = 0;
my $table;
my @user_list_backuped;
my @files_corrupted;
#- ack - not a great default - changed 20020814 (SB)
my $remove_user_before_restore = 0;
my @file_list_to_send_by_ftp;
my $results;
my @net_methods = ("ftp", "rsync", "ssh", "webdav");
my @media_types = ("cd", "hd", "tape");
my %cd_devices;
my $cd_drives;
my $std_device;
my @tape_devices;

# config. FILES -> Default PATH  & Global variables.
my @sys_files = ("/etc");
my @user_list;
my @list_other = () ;
my $cfg_dir = "/etc/drakxtools/drakbackup/";
my $save_path = "/var/lib/drakbackup";
my $log_buff;
my $comp_mode = 0;
my $backup_sys = 1;
my $backup_user = 1;
my $backup_daemon = 1;
my $backup_sys_versions = 0;
my $backup_user_versions = 0;
my $backup_other_versions = 0;
my $what_no_browser = 1;
my $cdrw = 0;
my $dvdr = 0;
my $dvdram = 0;
my $net_proto = '';
my $host_path = '';
my $login_user = '';
my $daemon = 0;
my $backend_only = 0;
my $daemon_media = '';
my $hd_quota = 0;

#- 7/4/2002 SB - consolidate net methods
my $where_use_net = 0;

my $where_net = 0;
my $where_hd = 1;
my $del_hd_files = 0;
my $where_cd = 0;
my $where_tape = 0;
my $cd_time = 650;
my $when_space;
my $cd_with_install_boot = 0;
my $cd_device = '';
my $host_name = '';
my $backupignore = 0; 
my $remember_pass = 0;
my $passwd_user = '';
my $tape_device;
my $media_erase = 0;
my $media_eject = 0;
my $multi_session = 0;
my $session_offset = '';
my $tape_norewind = 0;
my $no_critical_sys = 1;
my $send_mail = 0;
my $user_mail;
my $scp_port = 22;
my $use_expect = 0;
my $xfer_keys = 0;
my $user_keys = 1;
my $user_home = $ENV{"HOME"};
my $backup_key = $user_home . "/.ssh/identity-drakbackup";
my $nonroot_user = 0;
my $not_warned = 0;
my $media_problem = 0;
my $cd_volname = '';

# allow not-root user with own config
if ($ENV{USER} ne 'root') {
	$cfg_dir = "$user_home/.drakbackup/";
	$save_path = $cfg_dir . "backups";
	-d $save_path or mkdir_p $save_path;
	$nonroot_user = 1;
	$not_warned = 1;
	$backup_sys = 0;
	$backup_daemon = 0;
	$daemon = 0;
	@user_list = ("$ENV{USER}");
}
my $cfg_file = $cfg_dir . "drakbackup.conf";

foreach (@ARGV) {

    /--default/ and backend_mode();
    /--daemon/ and daemon_mode();
    /--show-conf/ and show_conf();
	/--config-info/ and explain_conf();
	/--cd-info/ and get_cd_info(), exit(0);
    /--debug/ and $DEBUG = 1, next;
}

sub show_conf {
    print "DrakBackup configuration:\n\n";
    read_conf_file();
    system_state();
    print $system_state . "\n";
    exit(0);
}

sub explain_conf {
	print "\nConfiguration File Options: \n\n";
	print "Configuration file is located in:\n";
	print "                          Root Mode: /etc/drakxtools/drakbackup/drakbackup.conf.\n";
	print "                          User Mode: ~/.drakbackup/drakbackup.conf.\n\n";
	print "SYS_FILES=                Space seperated list of system directories to backup.\n";
	print "HOME_FILES=               Space seperated list of user home directories to backup.\n";
	print "OTHER_FILES=              Space seperated list of other files to backup.\n";
	print "PATH_TO_SAVE=             Default Hard Drive path to create backup files in.\n";
	print "                            Root Mode: default is /var/lib/drakbackup.\n";
	print "                            User Mode: default is ~/.drakbackup/backups.\n";
	print "NO_SYS_FILES              Don't backup system files.\n";
	print "NO_USER_FILES             Don't backup user files.\n";
	print "OPTION_COMP               Compression option - TAR.GZ or TAR.BZ2 (tar.gz is default).\n";
	print "BROWSER_CACHE             Backup web browser cache also.\n";
	print "CDRW                      Backup media is re-writable CD.\n";
	print "DVDR                      Backup media is recordable DVD (not fully supported yet).\n";
	print "DVDRAM                    Backup media is DVDRAM (not fully supported yet).\n";
	print "NET_PROTO=                Network protocol to use for remote backups: \n";
	print "                             ftp, rsync, ssh, or webdav.\n";
	print "HOST_NAME=                Remote backup host.\n";
	print "HOST_PATH=                Backup storage path or module on remote host.\n";
	print "REMEMBER_PASS             Remember password on remote host in config file.\n";
	print "USER_KEYS                 Ssh keys are already setup for communicating with remote host.\n";
	print "DRAK_KEYS                 Use special drakbackup generated host keys.\n";
	print "                             (requires perl-Expect, disabled).\n";
	print "USE_EXPECT                Use expect to do the whole scp transfer, without keys.\n";
	print "                             (requires perl-Expect, disabled).\n";
	print "LOGIN=                    Remote host login name.\n";
	print "PASSWD=                   Password on remote host (if REMEMBER_PASS is enabled).\n";
	print "DAEMON_MEDIA=             Daemon mode backup via given media.\n";
	print "                             (hd, cd, tape, ftp, rsync, ssh, or webdav).\n";
	print "HD_QUOTA                  Use quota to limit hard drive space used for backups.\n";
	print "                             (not supported yet).\n";
	print "USE_HD                    Use Hard Drive for backups (currently all modes use HD also).\n";
	print "USE_CD                    Use CD for backups.\n";
	print "USE_NET                   Use network for backups (driven by NET_PROTO).\n";
	print "USE_TAPE                  Use tape for backup.\n";
	print "DEL_HD_FILES              Delete local hard drive tar files after backup to other media.\n";
	print "TAPE_NOREWIND             Use non-rewinding tape device.\n";
	print "CD_TIME=                  Length of CD media (not currently utilized).\n";
	print "DAEMON_TIME_SPACE=        Interval between daemon backup runs (hourly, daily, weekly)..\n";
	print "CD_WITH_INSTALL_BOOT      Build a bootable restore CD (currently not utilized).\n";
	print "CD_DEVICE=                Cdrecord style CD device name (ie: 1,3,0).\n";
	print "USER_MAIL=                User to send backup results to via email.\n";
	print "SEND_MAIL                 Do send backup results via email.\n";
	print "TAPE_DEVICE               Device to use for tape backup (ie: /dev/st0).\n";
	print "MEDIA_ERASE               Erase media before new backup (applies to tape, CD).\n";
	print "MEDIA_EJECT               Eject media after backup completes.\n";
	print "MULTI_SESSION             Allow muliple sessions to be written to CD media.\n";
	print "SYS_INCREMENTAL_BACKUPS   Do incremental backups of system files.\n";
	print "USER_INCREMENTAL_BACKUPS  Do imcremental backups of user files.\n";
	print "OTHER_INCREMENTAL_BACKUPS Do incremental backups if other files.\n";
	print "NO_CRITICAL_SYS           Do not backup critical system files:\n";
	print "                             passwd, fstab, group, mtab\n";
	print "CRITICAL_SYS              Do backup above system files.\n";
	exit(0);
}

sub backend_mode {
	$backend_only = 1;
    build_backup_files();
    exit(0);
}

sub daemon_mode {
    $daemon = 1;
    build_backup_files();
    exit(0);
}

interactive_mode();

sub all_user_list {
    my ($username) = @_;
    my $passwdfile = "/etc/passwd";
    my $user;
    my $uid;
    @all_user_list = ();

    open (PASSWD, $passwdfile) or exit 1; 
    while (defined(my $line = <PASSWD>)) {
		chomp($line);
		($user, $uid) = (split(/:/, $line))[0, 2];
		if ($uid >= 500 || $uid == 0) {
	    	push @all_user_list, $user;
		}
    }
    close (PASSWD);
    if ($DEBUG) {
		print "/--  User list  --/ \n";
		print " -> $_\n" foreach (@all_user_list);
		print "\n";
    }
}

sub the_time {
    $the_time = "_";
    $the_time .= localtime->year() + 1900;
    if (localtime->mon() < 9) { $the_time .= "0" }
    $the_time .= localtime->mon() +1;
    if (localtime->mday() < 10) { $the_time .= "0" }
    $the_time .= localtime->mday();
    $the_time .= "_";
    if (localtime->hour() < 10) { $the_time .= "0" }
    $the_time .= localtime->hour();
    if (localtime->min() < 10) { $the_time .= "0" }
    $the_time .= localtime->min();
    if (localtime->sec() < 10) { $the_time .= "0" }
    $the_time .= localtime->sec();    
}

sub get_tape_info {
	my @line_data;
	my $info = "/tmp/dmesg";
	@tape_devices = ();
	system("dmesg | grep 'st[0-9] at' > $info");
	
	open(INFO, $info) || warn("Can't open $info\n");
	while (<INFO>) {
		@line_data = split(/[ \t,]+/, $_);
		push @tape_devices, "/dev/" . $line_data[3]; 
	}
    close(INFO);
	unlink($info);
}

sub get_cd_info {
	my @cd_info = cat_("/proc/sys/dev/cdrom/info");
	my @line_data;
	my @drive_names;
	my $i;
	my $key;
	my $info;
	
	#- kind of ugly - I'm sure Pixel could improve this, but it works
	#- parse /proc/sys/dev/cdrom/info and get all the cd device capabilities
	foreach (@cd_info) {
		@line_data = split(/[:\t]+/, $_);
		if ($line_data[0] =~ "drive name") {
			$cd_drives = @line_data-1;
			chop($line_data[$cd_drives]);
			@drive_names = @line_data;
			print "drives: $cd_drives\n" if (!$interactive);
		}
		chop($line_data[$cd_drives]) if $cd_drives;
		if ($line_data[0] eq "drive speed") {
			for ($i = 1; $i <= $cd_drives; $i++) {
				$cd_devices{$drive_names[$i]}{speed} = $line_data[$i];
			}
		}
		if ($line_data[0] eq "Can change speed") {
			for ($i = 1; $i <= $cd_drives; $i++) {
				$cd_devices{$drive_names[$i]}{chg_speed} = $line_data[$i];
			}
		}
		if ($line_data[0] eq "Can read multisession") {
			for ($i = 1; $i <= $cd_drives; $i++) {
				$cd_devices{$drive_names[$i]}{multisession} = $line_data[$i];
			}
		}
		if ($line_data[0] eq "Can write CD-R") {
			for ($i = 1; $i <= $cd_drives; $i++) {
				$cd_devices{$drive_names[$i]}{cdr} = $line_data[$i];
			}
		}
		if ($line_data[0] eq "Can write CD-RW") {
			for ($i = 1; $i <= $cd_drives; $i++) {
				$cd_devices{$drive_names[$i]}{cdrw} = $line_data[$i];
			}
		}
		if ($line_data[0] eq "Can write DVD-R") {
			for ($i = 1; $i <= $cd_drives; $i++) {
				$cd_devices{$drive_names[$i]}{dvdr} = $line_data[$i];
			}
		}
		if ($line_data[0] eq "Can write DVD-RAM") {
			for ($i = 1; $i <= $cd_drives; $i++) {
				$cd_devices{$drive_names[$i]}{dvdram} = $line_data[$i];
			}
		}
	}
	
	#- now we know all the capabilities, we need the cdrecord device id
	#- this is scsi-channel, id, lun from /dev/scsi/host*
	#- oops - can't count on devfs - use dmesg

	$info = "/tmp/dmesg";
	system("dmesg | grep sr[0-9] > $info");
	
	open(INFO, $info) || warn("Can't open $info\n");
	while (<INFO>) {
		if (/sr[0-9] at/) {
			@line_data = split(/[ \t,]+/, $_);
			chop($line_data[11]);
			$line_data[5] =~ s/scsi//;
			$cd_devices{$line_data[3]}{rec_dev} = $line_data[5] . "," . $line_data[9] . "," . $line_data[11];
		}
    }
    close(INFO);
    unlink($info);

	#- should we also try to get the human readable name for display purposes?
	
	#- now just report the data if we called --cd-info from the command line
	if (!$interactive) {
		foreach $key (keys %cd_devices) {
			print "\n{$key}->{rec_dev} = $cd_devices{$key}->{rec_dev}\n"; 
			print "{$key}->{speed} = $cd_devices{$key}->{speed}\n";
			print "{$key}->{chg_speed} = $cd_devices{$key}->{chg_speed}\n";
			print "{$key}->{multisession} = $cd_devices{$key}->{multisession}\n";
			print "{$key}->{cdr} = $cd_devices{$key}->{cdr}\n";
			print "{$key}->{cdrw} = $cd_devices{$key}->{cdrw}\n";
			print "{$key}->{dvdr} = $cd_devices{$key}->{dvdr}\n";
			print "{$key}->{dvdram} = $cd_devices{$key}->{dvdram}\n"; 
		}
	} else {
		#- in non-interactive mode we just let all the devices through
		#- as a general purpose probe - in reality we want only burners
		foreach $key (keys %cd_devices) {
			delete $cd_devices{$key} if ($cd_devices{$key}{rec_dev} eq '')
   		}
	}
}

sub save_conf_file {

	write_sitecopyrc() if ($net_proto eq 'webdav');
	write_password_file() if (($net_proto eq 'rsync') && ($passwd_user ne ''));	
	
    my @cfg_list = ("SYS_FILES=@sys_files\n",
		     "HOME_FILES=@user_list\n", 
		     "OTHER_FILES=@list_other\n",
		     "PATH_TO_SAVE=$save_path\n",
		     "HOST_PATH=$host_path\n",
		     "NET_PROTO=$net_proto\n",
		     "CD_TIME=$cd_time\n",
		     "USER_MAIL=$user_mail\n",		     
		     "DAEMON_TIME_SPACE=$when_space\n",
		     "CD_DEVICE=$cd_device\n",
		     "LOGIN=$login_user\n",
		     "TAPE_DEVICE=$tape_device\n",
		     "HOST_NAME=$host_name\n"
		     );
    $no_critical_sys and push @cfg_list, "NO_CRITICAL_SYS\n" ; 
    $no_critical_sys or push @cfg_list, "CRITICAL_SYS\n" ; 
    $send_mail and push @cfg_list, "SEND_MAIL\n";
    $backup_sys_versions and push @cfg_list, "SYS_INCREMENTAL_BACKUPS\n" ; 
    $backup_user_versions and push @cfg_list, "USER_INCREMENTAL_BACKUPS\n" ; 
    $backup_other_versions  and push @cfg_list, "OTHER_INCREMENTAL_BACKUPS\n" ; 
    $media_erase and push @cfg_list, "MEDIA_ERASE\n" ; 
	$media_erase and push @cfg_list, "MEDIA_EJECT\n" ; 
	$multi_session and push @cfg_list, "MULTI_SESSION\n" ; 
    $remember_pass and push @cfg_list, "LOGIN=$login_user\n" ; 
    $remember_pass and push @cfg_list, "PASSWD=$passwd_user\n" ;
    $remember_pass and push @cfg_list, "REMEMBER_PASS\n" ;
	$user_keys and push @cfg_list, "USER_KEYS\n" ;
	$xfer_keys and push @cfg_list, "DRAK_KEYS\n" ;
	$use_expect and push @cfg_list, "USE_EXPECT\n" ;	
    $cd_with_install_boot and push @cfg_list, "CD_WITH_INSTALL_BOOT\n" ;
    ($daemon_media eq 'ssh') and $backup_daemon and push @cfg_list, "DAEMON_MEDIA=ssh\n" ;
    ($daemon_media eq 'ftp') and $backup_daemon and push @cfg_list, "DAEMON_MEDIA=ftp\n" ;
    ($daemon_media eq 'hd') and $backup_daemon and push @cfg_list, "DAEMON_MEDIA=hd\n" ;
    ($daemon_media eq 'cd') and $backup_daemon and push @cfg_list, "DAEMON_MEDIA=cd\n" ;
	($daemon_media eq 'tape') and $backup_daemon and push @cfg_list, "DAEMON_MEDIA=tape\n" ;
	($daemon_media eq 'webdav') and $backup_daemon and push @cfg_list, "DAEMON_MEDIA=webdav\n" ;
	($daemon_media eq 'rsync') and $backup_daemon and push @cfg_list, "DAEMON_MEDIA=rsync\n" ;
    $hd_quota and  push @cfg_list, "HD_QUOTA\n" ;
    $where_hd and  push @cfg_list, "USE_HD\n" ;
    $where_cd and  push @cfg_list, "USE_CD\n" ;
	$where_tape and push @cfg_list, "USE_TAPE\n" ;
	$tape_norewind and push @cfg_list, "TAPE_NOREWIND\n" ;
    $where_net and  push @cfg_list, "USE_NET\n" ;
    $cdrw and push @cfg_list, "CDRW\n"; 
    $dvdr and push @cfg_list, "DVDR\n"; 
    $dvdram and push @cfg_list, "DVDRAM\n"; 
    $what_no_browser or push @cfg_list, "BROWSER_CACHE\n" ;
    $backup_sys or push @cfg_list,  "NO_SYS_FILES\n";
    if ($comp_mode) {
    	push @cfg_list, "OPTION_COMP=TAR.BZ2\n";
    } else { 
    	push @cfg_list, "OPTION_COMP=TAR.GZ\n";   
    }
	$del_hd_files and push @cfg_list, "DEL_HD_FILES\n" ;
    output_p($cfg_file, @cfg_list);
    chmod(0600, $cfg_file);
    save_cron_files() if ($backup_daemon);
}

sub read_cron_files {
    my $daemon_found = 0;
    foreach (qw(hourly daily weekly monthly)) {
		if (-f "/etc/cron.$_/drakbackup") {
	    	$when_space = $_;	    
	    	$daemon_found = 1;
	    	last;
		}
    }
    !$daemon_found and $backup_daemon = 0; 
}

sub save_cron_files {
	if ($nonroot_user) {
		show_warning("w", "Cron not available yet as non-root") if ($not_warned);
		$not_warned = 0;
		$backup_daemon = 0;
		return(1);
	}
    my @cron_file = ("#!/bin/sh\n", "export TERM=xterm\n", "/usr/sbin/drakbackup --daemon > /dev/null 2>&1\n");

    if ($backup_daemon) {
		foreach (qw(hourly daily weekly monthly)) {
	    	-f "/etc/cron.$_/drakbackup" and rm_rf("/etc/cron.$_/drakbackup");
		}
		output_p("/etc/cron.$when_space/drakbackup",  @cron_file);
		system("chmod +x /etc/cron.$when_space/drakbackup");
    } else {
		foreach (qw(hourly daily weekly monthly)) {
	    	-f "/etc/cron.$_/drakbackup" and rm_rf("/etc/cron.$_/drakbackup");
		}
    }
}

sub read_conf_file {
    if (-e $cfg_file) {
        open (CONF_FILE, "<". $cfg_file) || print "You must be root to read configuration file. \n";
        while (<CONF_FILE>) {
	    	next unless /\S/;
	    	next if /^#/;
	    	chomp;
	    	if (/^SYS_FILES/)		{ s/^SYS_FILES=//gi;    @sys_files = split(' ', $_) }
	    	if (/^HOME_FILES/)		{ s/^HOME_FILES=//gi;   @user_list = split(' ', $_) }
	    	if (/^OTHER_FILES/)		{ s/^OTHER_FILES=//gi;  @list_other = split(' ', $_) }
	    	if (/^PATH_TO_SAVE/)	{ s/^PATH_TO_SAVE=//gi; $save_path = $_ }
	    	if (/^NO_SYS_FILES/)   { $backup_sys = 0 }
	    	if (/^NO_USER_FILES/)  { $backup_user = 0 }
	    	if (/^OPTION_COMP/)    { s/^OPTION_COMP=//gi; /TAR.GZ/ and  $comp_mode = 0; /TAR.BZ2/ and $comp_mode = 1 }
	    	if (/^BROWSER_CACHE/)  { $what_no_browser = 0 }
	    	if (/^CDRW/)           { $cdrw = 1 }
	    	if (/^DVDR/)           { $dvdr = 1 }
	    	if (/^DVDRAM/)           { $dvdram = 1 }
	    	if (/^NET_PROTO/)      { s/^NET_PROTO=//gi; $net_proto = $_ }
	    	if (/^HOST_PATH/)      { s/^HOST_PATH=//gi; $host_path = $_ } 
	    	if (/^DAEMON_MEDIA/)   { s/^DAEMON_MEDIA=//gi; $daemon_media = $_ }
	    	if (/^HD_QUOTA/)       { $hd_quota = 1 }
	    	if (/^USE_HD/)         { $where_hd = 1 }
	    	if (/^USE_CD/)         { $where_cd = 1 }
	    	if (/^USE_NET/)        { $where_net = 1 }
	    	if (/^USE_TAPE/)       { $where_tape = 1 }
			if (/^TAPE_NOREWIND/)       { $tape_norewind = 1 }
	    	if (/^CD_TIME/)        { s/^CD_TIME=//gi; $cd_time = $_ }
	    	if (/^DAEMON_TIME_SPACE/) { s/^DAEMON_TIME_SPACE=//gi; $when_space = $_ }
	    	if (/^CD_WITH_INSTALL_BOOT/) { $cd_with_install_boot = 1 }
	    	if (/^CD_DEVICE/)    { s/^CD_DEVICE=//gi; $cd_device = $_ }
	    	if (/^HOST_NAME/)      { s/^HOST_NAME=//gi; $host_name = $_ } 
	    	if (/^REMEMBER_PASS/)  { $remember_pass = 1 }
	    	if (/^USER_KEYS/)	   	{ $user_keys = 1 }
			if (/^DRAK_KEYS/)		{ $xfer_keys = 1; $user_keys = 0 }
			if (/^USE_EXPECT/)		{ $use_expect = 1; $user_keys = 0 }
			if (/^LOGIN/)          { s/^LOGIN=//gi;  $login_user  = $_ }
	    	if (/^PASSWD/)         { s/^PASSWD=//gi; $passwd_user = $_; $remember_pass = 1 }
	    	if (/^USER_MAIL/)      { s/^USER_MAIL=//gi; $user_mail = $_ }		     
	    	if (/^SEND_MAIL/)      { $send_mail = 1 }
	    	if (/^TAPE_DEVICE/)    { s/TAPE_DEVICE=//gi; $tape_device = $_ }
	    	if (/^MEDIA_ERASE/)     { $media_erase = 1 }
	    	if (/^MEDIA_EJECT/)     { $media_eject = 1 }
	    	if (/^MULTI_SESSION/)     { $multi_session = 1 }
	    	if (/^SYS_INCREMENTAL_BACKUPS/)   { $backup_sys_versions = 1 }
	    	if (/^USER_INCREMENTAL_BACKUPS/)  { $backup_user_versions = 1 }
	    	if (/^OTHER_INCREMENTAL_BACKUPS/) { $backup_other_versions = 1 }
	    	if (/^NO_CRITICAL_SYS/)  { $no_critical_sys = 1 }
	    	if (/^CRITICAL_SYS/)  { $no_critical_sys = 0 }
	    	if (/^DEL_HD_FILES/)  { $del_hd_files = 1 }
		}
		read_cron_files();
		$cfg_file_exist = 1;
    } else { 
    	$cfg_file_exist = 0;
		#- these were 1 by default, but that made it so the user could never save the 
		#- inverse behavior. this allows incremental as the default if not configured
		$backup_sys_versions = 1;
		$backup_user_versions = 1; 
    }
    close CONF_FILE;    
}

sub write_sitecopyrc {
	#- FIXME - how to deal with existing sitecopyrc
    my @cfg_list = ("site drakbackup\n",
		     "\tserver $host_name\n",
		     "\tremote $host_path\n",
		     "\tlocal $save_path\n",
		     "\tusername $login_user\n",
		     "\tpassword $passwd_user\n",
		     "\tprotocol webdav\n"
			);
    output_p("$user_home/.sitecopyrc", @cfg_list);
    chmod(0600, "$user_home/.sitecopyrc");
    -d "$user_home/.sitecopy" or mkdir_p ("$user_home/.sitecopy");
    chmod(0700, "$user_home/.sitecopy");
}

sub write_password_file {
	output_p("$cfg_dir/rsync.user", "$passwd_user\n");
	chmod(0600, "$cfg_dir/rsync.user");
}

sub show_warning {
	my ($mode, $warning) = @_;
	$mode = "WARNING" if ($mode eq "w");
	$mode = "FATAL" if ($mode eq "f");
	if ($interactive) {
		$in->ask_warn('', "$mode: $warning");
	} else {
		warn "$mode: $warning\n";
	}
	$log_buff .= "\n$mode: $warning\n";
}
	
sub complete_results {
    system_state();
    $results .=  "***********************************************************************\n\n";
    $daemon or $results .=  _("\n                      DrakBackup Report \n\n");
    $daemon and $results .= _("\n                      DrakBackup Daemon Report\n\n\n");
    $results .=  "***********************************************************************\n\n";
    $results .= $system_state;
    $results .=  "\n\n***********************************************************************\n\n";
    $results .=             _("\n                    DrakBackup Report Details\n\n\n");
    $results .=  "***********************************************************************\n\n";
}

sub ftp_client {
    use Net::FTP; 
    my $ftp;

    $DEBUG and print "file list to send : $_\n "  foreach @file_list_to_send_by_ftp;
    if ($DEBUG && $interactive) { $ftp = Net::FTP->new($host_name, Debug => 1) or return(1) }
    elsif ($interactive)  {  $ftp = Net::FTP->new($host_name, Debug => 0) or return(1) }
    else {  $ftp = Net::FTP->new($host_name, Debug => 0) or return(1) }
    $ftp->login($login_user, $passwd_user);
    $ftp->cwd($host_path); 
    foreach (@file_list_to_send_by_ftp) {
		$interactive and $pbar->set_value(0);
		$interactive and progress($pbar, 0.5, $_);
		$interactive and $pbar->set_show_text($_);
		$ftp->put($_);
		$interactive and progress($pbar, 0.5, $_);
		$interactive and $pbar->set_show_text($_);
		$interactive and progress($pbar3, 1/@file_list_to_send_by_ftp, _("Total progess"));
    }
    $ftp->quit; 
    return(0);
}

#- this is just here to get around Expect for the moment
sub exp_continue {
	return(0);
}

sub do_expect {

	#- Sort of a general purpose expect routine, we use it to backup files to
	#- a remote server, as well as transfer a key and restore.
	#- Using the key after it is setup is preferred.
	
	my ($mode, $filename) = @_;
		
	#- move this to the top? - problem is need for perl-Expect (in contribs)

#- temporarily disabled
#	use Expect;
show_warning("w", "Sorry, perl-Expect is not installed/enabled. To use\nthis feature, install perl-Expect and comment lines 702-704,\n as well as 718,719. Then uncomment line 717."); 
return(1);

	#- for debugging set to 1
	$Expect::Exp_Internal = 0;
	#- for debugging set to 1
	$Expect::Debug = 0;
	$Expect::Log_Stdout = 0; 

	my $spawn_ok;
	my $no_perm;
	my $bad_passwd;
	my $bad_dir;
	my $timeout  = 20;
	
	my $exp_command;
	my @send_files = ("$backup_key.pub");
	
	@send_files = @file_list_to_send_by_ftp if ($mode eq "backup");
	
	$interactive and $pbar->set_value(0);
	$interactive and $pbar3->set_value(0);
	$interactive and progress($pbar, 0.5, "File Transfer...");

	foreach (@send_files) {
		$exp_command = "scp -P $scp_port $_ $login_user\@$host_name:$host_path" if ($mode eq "backup");
		$exp_command = "ssh-copy-id -i $_ $login_user\@$host_name" if ($mode eq "sendkey");
	
		if ((-e $backup_key) && ($mode eq "sendkey")) {
			if ($in->ask_yesorno('', _("%s exists, delete?\n\nWarning: If you've already done this process you'll probably\n need to purge the entry from authorized_keys on the server.", $backup_key))) {
				unlink($backup_key);
				unlink($backup_key . '.pub');
			} else {
				return(0);
			}
		}
	
		if (!(-e $backup_key) && ($mode eq "sendkey")) {	
			$in->ask_warn('',_("This may take a moment to generate the keys."));
			cursor_wait();
			#- not using a passphrase for the moment
			system("ssh-keygen -P '' -t dsa -f $backup_key");
			cursor_norm();
		}
		
		my $exp = Expect->spawn($exp_command) or $in->ask_warn('',_("ERROR: Cannot spawn %s.", $exp_command));

		$interactive and progress($pbar3, 1/@send_files, _("Total progess"));
		$interactive and $stext->set_text($_);
	
		#- run scp, look for some common errors and try to track successful progress for GUI
		$exp->expect($timeout,
			[  qr'password: $', sub { 
				$spawn_ok = 1;
				my $fh = shift;
				$fh->send("$passwd_user\n");
				exp_continue } ],
			[ '-re', 'please try again', sub { $bad_passwd = 1; exp_continue } ],
			[ '-re', 'Permission denied', sub { $no_perm = 1; exp_continue } ],
			[ '-re', 'No such file or directory', sub { $bad_dir = 1; exp_continue } ],
#			[ '-re', '%', sub { update_scp_progress(); exp_continue; } ],
			[ eof => sub {
					if (!$spawn_ok) { show_warning("f","No password prompt on $host_name at port $scp_port") }					
					if ($bad_passwd) { show_warning("f", "Bad password on $host_name") }
					if ($no_perm) { show_warning("f", "Permission denied transferring $_ to $host_name") }
					if ($bad_dir) { show_warning("f", "Can't find $host_path on $host_name") }
				} 
			],
			[ timeout => sub { show_warning("f", "$host_name not responding") } ],
		); 

		my $exit_stat = $exp->exitstatus;
		$in->ask_warn('',_("Transfer successful\nYou may want to verify you can login to the server with:\n\nssh -i %s %s\@%s\n\nwithout being prompted for a password.", $backup_key, $login_user, $host_name)) if (($exit_stat eq 0) && ($mode eq "sendkey"));
		$log_buff .= "$_\n" if (($exit_stat eq 0) && ($mode eq "backup"));
		$exp->hard_close();
	}
	$interactive and progress($pbar, 0.5, "Done...");
}

sub ssh_client {
    $DEBUG and print "file list to send : $_\n "  foreach @file_list_to_send_by_ftp;
	my $command;
	my $value;
	
    foreach (@file_list_to_send_by_ftp) {
		if ($user_keys) {
			$command = "scp -P $scp_port $_ $login_user\@$host_name:$host_path";
		} else {
			$command = "scp -P $scp_port -i $backup_key $_ $login_user\@$host_name:$host_path";
		}
		$interactive and $pbar->set_value(0);
		$interactive and progress($pbar, 0.5, "File Transfer...");
		$interactive and $stext->set_text($_);
		$log_buff .= $command . "\n\n";
		open TMP, "$command 2>&1 |";
			while ($value = <TMP>) {
			$log_buff .= $value;
		}
		close TMP;
		$log_buff .= "\n";
		$interactive and progress($pbar, 0.5, "Done...");
		$interactive and progress($pbar3, 1/@file_list_to_send_by_ftp, _("Total progess"));
    }
    return(0);
}

sub webdav_client {
    $DEBUG and print "file list to send : $_\n "  foreach @file_list_to_send_by_ftp;
	if (!(-e "$user_home/.sitecopy/drakbackup")) {
		my $command = "sitecopy -f $host_path";
		spawn_progress($command, "Initializing sitecopy");
	}
	my $command = "sitecopy -u drakbackup";
	spawn_progress($command, "Running sitecopy...");
		if ($log_buff =~ /Nothing to do - no changes found/) {
		show_warning("w", "WebDAV remote site already in sync!");
		return(1);
	}
	if ($log_buff !~ /Update completed successfully/) {
		show_warning("f", "WebDAV transfer failed!");
		return(1);
	}
	return(0);
}

sub rsync_client {
    $DEBUG and print "file list to send : $_\n "  foreach @file_list_to_send_by_ftp;
	my $rsync_cmd = "rsync -tv $save_path/* ";
	$rsync_cmd = $rsync_cmd . "--password-file=$cfg_dir/rsync.user " if ($passwd_user ne '');
	$rsync_cmd = $rsync_cmd . "$login_user\@" if ($login_user ne '');
	$rsync_cmd = $rsync_cmd . "$host_name\:\:$host_path";
	spawn_progress($rsync_cmd, "Running rsync");
	return(0);
}

sub check_for_cd {
	
	#- check for a cd
	my $command = "cdrecord dev=$cd_device -atip";
	spawn_progress($command, "Check for media in drive");
	if ($log_buff =~ /No disk/) {
		show_warning("f", "No CDR/DVDR in drive!");
		return(1);
	}
	if ($log_buff !~ /ATIP info from disk/) {
		show_warning("f", "Does not appear to be recordable media!");
		return(1);
	}
	if (($log_buff =~ /Is not erasable/) && ($media_erase)) {
		show_warning("f", "Not erasable media!");
		return(1);
	}
	 
	if ($multi_session) {
		$command = "cdrecord dev=$cd_device -msinfo";
		spawn_progress($command, "Check for previous session status");
		#- if we don't find a previous session, start fresh
		if ($log_buff =~ /Cannot read session offset/) {
			$media_erase = 1;
			return(0);
		} else {
			#- extract the session info from $log_buff
			my $code_loc = rindex($log_buff, "msinfo") + 8;
			if ($code_loc != -1) { 
				my $bufflen = length($log_buff);
				$session_offset = substr($log_buff, $code_loc, $bufflen-$code_loc-1);
				return(0);
			}
			return(1);
		}
	}
}
	
sub write_on_cd {	
	my $command = "cdrecord -v dev=$cd_device -data ";
	#- only blank if it's the first session
	$command .= "blank=fast " if (($media_erase) && ($session_offset eq ''));
	#- multi-session mode
	$command .= "-multi -pad " if ($multi_session);
	$command .= "$save_path/drakbackup.iso"; 
	
	spawn_progress($command, "Running cdrecord");
	unlink("$save_path/drakbackup.iso");
}

sub erase_cdrw {
	#- we can only hit this via interactive
	$interactive = 0;
	$in->ask_warn('',_("This may take a moment to erase the media."));
	cursor_wait();
	my $command = "cdrecord dev=$cd_device -blank=fast";
	spawn_progress($command, "Erasing CDRW...");
	cursor_norm();	
	$interactive = 1;
}

sub spawn_progress {
	my ($command, $descr) = @_;
	my $value;
	my $timer;

	$interactive and progress($pbar3, 0, _($descr));
	$interactive and $pbar3->set_activity_mode(1);
	$interactive and ($pbar3->set_value(0));
	$interactive and ($timer = Gtk->timeout_add(2, \&progress_timeout));

	$log_buff .= "\n" . $descr . ":\n";
	$log_buff .= $command . "\n\n";
	
	open TMP, "$command 2>&1 |";
	while ($value = <TMP>) {
		$log_buff .= $value;
		if ($interactive) {
			$stext->set_text($value);
			Gtk->main_iteration while (Gtk->events_pending);
		}			
	}
	close TMP;
	$interactive and $pbar3->set_activity_mode(0);
	$interactive and Gtk->timeout_remove($timer);
}

sub progress_timeout {
	my $new_val;
	my $adj;
	$new_val = $pbar3->get_value() + 1;
   	$adj = $pbar3->adjustment;
 	$new_val = $adj->lower if ($new_val > $adj->upper);
	$pbar3->set_value($new_val);	
	return(1);
}

sub build_iso {
	if (($multi_session) && ($session_offset ne '')) {
		#- we want the volname for the catalog
		#- as a normal user volname nor dd if=/dev/cdrom bs=1 skip=32808 count=32 work
		#- try to read the base backup file name?
		
	} else {
		$cd_volname = "Drakbackup" . $the_time;
	}
	#this is safe to change the volname on rewrites, as is seems to get ignored anyway
	my $command = "mkisofs -r -J -T -v -V '$cd_volname' ";
	$command .= "-C $session_offset -M $cd_device " if (($multi_session) && ($session_offset ne ''));
	$command .= "-o $save_path/drakbackup.iso @file_list_to_send_by_ftp";
	spawn_progress($command, "Running mkisofs...");
}

sub build_cd {
	if (!check_for_cd()) {
		build_iso();
		if ($log_buff =~ /Permission denied/) {
			show_warning("f", "Permission problem accessing CD.");
			$media_problem = 1;
			return(1);
		} else {
			write_on_cd();
		}
	}
}

sub build_tape {
	my $command;
	#- do we have a tape?
	$command = "mt -f $tape_device status"; 
	spawn_progress($command, "Checking for tape");
	if ($log_buff =~ /DR_OPEN/) {
		show_warning("f", "No tape in $tape_device!");
		return(1);
	}	
	
	#- try to roll to the end of the data if we're not erasing
	if (!$media_erase) {
		$command = "mt -f $tape_device eod"; 
		spawn_progress($command, "Running mt to find eod");
	} else {
		$command = "mt -f $tape_device rewind"; 
		spawn_progress($command, "Running mt to rewind");	
	}
	
	#- do the backup
	$command = "tar -cvf $tape_device @file_list_to_send_by_ftp";
	spawn_progress($command, "Running tar to tape");
	
	#- eject the tape?
	if ($media_eject) {
		$command = "mt -f $tape_device rewoff";
		spawn_progress($command, "Running mt to eject tape");
	}
}
	
sub send_mail {
    my ($result) = @_;
    my $datem = `date`;

    open F, "|/usr/sbin/sendmail -f$user_mail $user_mail" or return(1);
    print F "From: drakbackup\n";
    print F "To: $user_mail \n";
    print F "Subject: DrakBackup report on $datem \n";
    print F "\n";
    print F "$result\n";
    close F or  return(1);
    return(0);
}

sub build_backup_files {
    my $path_name;
    my $tar_cmd;
    my $more_recent;
    my $tar_cmd_sys;
    my $tar_cmd_user;
    my $tar_cmd_other;
    my $tar_ext;
    my $vartemp;
    my $base_sys_exist = 0;
    my $base_user_exist = 0;
    my $base_other_exist = 0;
    my @list_temp ;
    my @list_other_;
    my @dir_content;
    my $file_date;
    $results = "";
	$log_buff = "";
	#- flush this so if the user does 2 runs in a row we don't try to send the same files
	@file_list_to_send_by_ftp = ();
		
	$interactive and cursor_wait();
    read_conf_file();
    the_time();    
    $send_mail and complete_results();
    -d  $save_path or mkdir_p ($save_path);
    if ($comp_mode) { 
		$DEBUG and $tar_cmd = "tar cv --use-compress-program /usr/bin/bzip2 ";
		$DEBUG or $tar_cmd = "tar c --use-compress-program /usr/bin/bzip2 "; 
		$tar_ext = "tar.bz2" ;
    } else { 
		$DEBUG and $tar_cmd = "tar cvpz "; 
		$DEBUG or $tar_cmd = "tar cpz "; 
		$tar_ext = "tar.gz"
	}
    $tar_cmd_sys = $tar_cmd;
    $tar_cmd_user = $tar_cmd;
    $tar_cmd_other = $tar_cmd;
    $no_critical_sys and $tar_cmd_sys .= "--exclude passwd --exclude fstab --exclude group --exclude mtab";
    $what_no_browser and $tar_cmd_user .= "--exclude NewCache --exclude Cache --exclude cache";
	$nonroot_user and $tar_cmd_user .= " --exclude .drakbackup";
	
    -d $save_path and @dir_content = all($save_path);
    grep (/^backup\_base\_sys/, @dir_content) and $base_sys_exist = 1;

    if (($where_hd && !$daemon) || ($daemon && ($daemon_media eq 'hd'))) {
	  $interactive and progress($pbar, 0.5, _("Backup system files..."));
	  if ($backup_sys) { 
	    if ($backup_sys_versions) {
			#- 8/19/2002 - changed these greps to look at the list, rather than the tar file
			#- we retain the list for other media backups, but the tar file goes away, potentially
 			if (grep /^list\_incr\_sys/, @dir_content) { 
		    	my @more_recent = grep /^list\_incr\_sys/, sort @dir_content; 
		    	$more_recent = pop @more_recent;
		    	$DEBUG and print "more recent file: $more_recent\n";
				system("find @sys_files -cnewer $save_path/$more_recent \! -type d -print > $save_path/list_incr_sys$the_time.txt");
		    	if (!cat_("$save_path/list_incr_sys$the_time.txt")) {
					system("rm $save_path/list_incr_sys$the_time.txt");
		    	} else {
					system("$tar_cmd_sys -f $save_path/backup_incr_sys$the_time.$tar_ext -T $save_path/list_incr_sys$the_time.txt");
					push @file_list_to_send_by_ftp, "$save_path/backup_incr_sys$the_time.$tar_ext";
					push @file_list_to_send_by_ftp, "$save_path/list_incr_sys$the_time.txt";
					$results .= "\nfile: $save_path/backup_incr_sys$the_time.$tar_ext\n";
					$results .= cat_("$save_path/list_incr_sys$the_time.txt");
		    	}
			} elsif (grep /^list_base\_sys/,  @dir_content) { 
		    	my @more_recent = grep /^list\_base\_sys/, sort @dir_content; 
		    	$more_recent = pop @more_recent;
		    	$DEBUG and print "more recent file: $more_recent\n";
  		  		system("find @sys_files -cnewer $save_path/$more_recent \! -type d -print > $save_path/list_incr_sys$the_time.txt");
		    	if (!cat_("$save_path/list_incr_sys$the_time.txt")) {
					system("rm $save_path/list_incr_sys$the_time.txt");
		    	} else {
					system("$tar_cmd_sys -f $save_path/backup_incr_sys$the_time.$tar_ext -T $save_path/list_incr_sys$the_time.txt");
					push @file_list_to_send_by_ftp, "$save_path/backup_incr_sys$the_time.$tar_ext";
					push @file_list_to_send_by_ftp, "$save_path/list_incr_sys$the_time.txt";
					$results .= "\nfile: $save_path/backup_incr_sys$the_time.$tar_ext\n";
					$results .= cat_("$save_path/list_incr_sys$the_time.txt");
		    	}
			} else {
				#- need this for the first pass too, if we're offloading the backups to other media (sb)
				system("find $path_name \! -type d -print > $save_path/list_base_sys$the_time.txt"); 
				system("$tar_cmd_sys -f $save_path/backup_base_sys$the_time.$tar_ext @sys_files"); 
				push @file_list_to_send_by_ftp, "$save_path/backup_base_sys$the_time.$tar_ext";
				push @file_list_to_send_by_ftp, "$save_path/list_base_sys$the_time.txt";
				$results .= "\nfile: $save_path/backup_base_sys$the_time.$tar_ext\n";
			}
	  	} else {
			system("cd $save_path && rm -f backup_sys* backup_base_sys* backup_incr_sys*");
			system("$tar_cmd_sys -f $save_path/backup_sys$the_time.$tar_ext @sys_files");
			push @file_list_to_send_by_ftp, "$save_path/backup_sys$the_time.$tar_ext";
			$results .= "\nfile: $save_path/backup_sys$the_time.$tar_ext\n";
	  	}
	  }
	
	$interactive and progress($pbar, 0.5, _("Backup system files..."));
	$interactive and progress($pbar3, 0.3, _("Hard Disk Backup files..."));

	if (@list_other) {
		system("cd $save_path && rm -f backup_other* ");
		system("$tar_cmd_other -f $save_path/backup_other$the_time.$tar_ext @list_other");
		push @file_list_to_send_by_ftp, "$save_path/backup_other$the_time.$tar_ext";
		$results .= "\nfile: $save_path/backup_other$the_time.$tar_ext\n";
		#old	    foreach (@list_other) { push @list_other_, $_ . "\n"; }
	    @list_other_ = map { "$_\n" } @list_other;
	    output_p($save_path . '/list_other', @list_other_);    
	}
	
	$interactive and progress($pbar1, 1, _("Backup User files..."));
	$interactive and progress($pbar3, 0.3, _("Hard Disk Backup Progress..."));
	
	if ($backup_user) {
	    foreach (@user_list) {
		my $user = $_;
		$path_name = return_path($user);
		if ($backup_user_versions) {
			#- 8/19/2002 - changed these greps to look at the list, rather than the tar file
			#- we retain the list for other media backups, but the tar file goes away, potentially
		    if (grep(/^list\_incr\_user\_$user\_/, @dir_content)) { 
				my @more_recent = grep /^list\_incr\_user\_$user\_/, sort @dir_content; 
				$more_recent = pop @more_recent;
				$DEBUG and print "more recent file: $more_recent\n";
				system("find $path_name -cnewer $save_path/$more_recent \! -type d -print > $save_path/list_incr_user_$user$the_time.txt");
				if (!cat_("$save_path/list_incr_user_$user$the_time.txt")) {
			    	system("rm $save_path/list_incr_user_$user$the_time.txt");
				} else {
					system("$tar_cmd_user -f $save_path/backup_incr_user_$user$the_time.$tar_ext -T $save_path/list_incr_user_$user$the_time.txt");
					push @file_list_to_send_by_ftp, "$save_path/backup_incr_user_$user$the_time.$tar_ext";
					push @file_list_to_send_by_ftp, "$save_path/list_incr_user_$user$the_time.txt";
					$results .= " \nfile: $save_path/backup_incr_user_$user$the_time.$tar_ext\n";
					$results .= cat_("$save_path/list_incr_user_$user$the_time.txt");
				}
		    } elsif (grep /^list\_base\_user\_$user\_/, @dir_content) { 
				my @more_recent = grep /^list\_base\_user\_$user\_/, sort @dir_content; 
				$more_recent = pop @more_recent;			
				$DEBUG and print "more recent file: $more_recent\n";
				system("find $path_name -cnewer $save_path/$more_recent \! -type d -print > $save_path/list_incr_user_$user$the_time.txt");
				if (!cat_("$save_path/list_incr_user_$user$the_time.txt")) {
			    	system("rm $save_path/list_incr_user_$user$the_time.txt");
				} else {
					system("$tar_cmd_user -f $save_path/backup_incr_user_$user$the_time.$tar_ext -T $save_path/list_incr_user_$user$the_time.txt");
					push @file_list_to_send_by_ftp, "$save_path/backup_incr_user_$user$the_time.$tar_ext";
					push @file_list_to_send_by_ftp, "$save_path/list_incr_user_$user$the_time.txt";
					$results .= "\nfile: $save_path/backup_incr_user_$user$the_time.$tar_ext\n";
					$results .= cat_("$save_path/list_incr_user_$user$the_time.txt");
				}
		    } else {
				#- need this for the first pass too, if we're offloading the backups to other media (sb)
				system("find $path_name \! -type d -print > $save_path/list_base_user_$user$the_time.txt");
				system("$tar_cmd_user -f $save_path/backup_base_user_$user$the_time.$tar_ext $path_name");
				push @file_list_to_send_by_ftp, "$save_path/backup_base_user_$user$the_time.$tar_ext";
				push @file_list_to_send_by_ftp, "$save_path/list_base_user_$user$the_time.txt";
				$results .= "\nfile: $save_path/backup_base_user_$user$the_time.$tar_ext\n";
		    }
		} else {
		    system("cd $save_path && rm -f backup_user_$_* backup_base_user_$_* backup_incr_user_$_*");
		    system("$tar_cmd_user -f $save_path/backup_user_$_$the_time.$tar_ext $path_name");
		    push @file_list_to_send_by_ftp, "$save_path/backup_user_$_$the_time.$tar_ext";
		    $results .= "\nfile: $save_path/backup_user_$user$the_time.$tar_ext\n";
		}
	  }
	}
	$interactive and progress($pbar2, 1, _("Backup Other files..."));
	$interactive and progress($pbar3, 0.4, _("Hard Disk Backup files..."));
    }

	my $filecount = @file_list_to_send_by_ftp;
	if (!$filecount) {
		show_warning("w", "No changes to backup!");
		$interactive and cursor_norm();
		$interactive and show_status();
		return(1); 
	}
		
	#- should hit this block if running daemon mode only
	if ($daemon && ($daemon_media ne '')) {
#		ftp_client() if $ftp_daemon;
		rsync_client() if ($daemon_media eq 'rsync');
		ssh_client() if (($daemon_media eq 'ssh') && !($use_expect));
		do_expect("backup", "") if (($daemon_media eq 'ssh') && ($use_expect));
		webdav_client() if ($daemon_media eq 'webdav');
		build_cd() if ($daemon_media eq 'cd');
		build_tape() if ($daemon_media eq 'tape');

		$results .= _("\nDrakbackup activities via %s:\n\n", $daemon_media) ;
		$results .= $log_buff;
	}
	
	#- leave this one alone for now - works well
	#- integrate with other methods later
    if (($where_net && !$daemon && ($net_proto eq 'ftp')) || ($daemon && ($daemon_media eq 'ftp'))) {
		$results .= _("file list sent by FTP : %s\n ", $_)  foreach @file_list_to_send_by_ftp;
		$interactive and build_backup_ftp_status();
		if (ftp_client()) { 
	    	$results .= _("\n FTP connection problem: It was not possible to send your backup files by FTP.\n");
	    	$interactive and client_ftp_pb();
		} 
    }
	
	#- consolidate all the other methods under here - interactive and --default should land here
	if (!$daemon) {
	
		if ($where_net && ($net_proto ne '') && ($net_proto ne 'ftp')) {
			rsync_client() if ($net_proto eq 'rsync');
			ssh_client() if (($net_proto eq 'ssh') && !($use_expect));
			do_expect("backup", "") if (($net_proto eq 'ssh') && ($use_expect));
			webdav_client() if ($net_proto eq 'webdav');
			$results .= _("\nDrakbackup activities via %s:\n\n", $net_proto);
		}
		
		if ($where_cd) {
			build_cd();
			$results .= _("\nDrakbackup activities via CD:\n\n");
		}
	
		if ($where_tape) {
			build_tape();
			$results .= _("\nDrakbackup activities via tape:\n\n");
		}
		$results .= $log_buff;
	
	}
	
    if ($send_mail) { 
		if (send_mail($results)) { 
	    	$interactive and send_mail_pb();
	    	$interactive or print _(" Error during mail sending. \n");
		} 
    }
	
	#- write our catalog file
	if (!$media_problem) {
		my $catalog = "HD:localhost:$save_path";
		$catalog = "$net_proto:$host_name:$host_path" if ($net_proto ne '');
		$catalog = "CD:$cd_volname:$cd_device" if ($where_cd);
		$catalog = "Tape:localhost:$tape_device" if ($where_tape);
		$catalog .= ":" . substr($the_time, 1);
		$catalog .= ":System" if ($backup_sys);
		$catalog .= ":I" if (($backup_sys_versions) && ($backup_sys));
		$catalog .= ":F" if ((!$backup_sys_versions) && ($backup_sys));
		$catalog .= ":Users=(@user_list)" if ($backup_user);
		$catalog .= ":I" if (($backup_user_versions) && ($backup_user));
		$catalog .= ":F" if ((!$backup_user_versions) && ($backup_user));
		$catalog .= ":Other=(@list_other)" if (@list_other);
		$catalog .= ":I" if (($backup_other_versions) && (@list_other));
		$catalog .= ":F" if ((!$backup_other_versions) && (@list_other));
		$catalog .= "\n";
			
		open(CATALOG, ">> $cfg_dir/drakbackup_catalog") || show_warning("w", "Can't create catalog!");
		print(CATALOG $catalog);
		close(CATALOG);
	}
	
	#- clean up HD files if del_hd_files and media isn't hd
	if (($del_hd_files) && (($where_cd) || ($where_tape) || ($where_net)) && ($daemon_media ne 'hd'))  {
		foreach (@file_list_to_send_by_ftp) {
#			unlink($_) if ((/$tar_ext$/) && (!/backup_base/));
			unlink($_) if (/$tar_ext$/);
		}
	}
		
	#- if we had a media problem then get rid of the text log of the backed up files too
	if ($media_problem) {
		system("rm $save_path/list\*$the_time.txt");
	}
	
	$interactive and cursor_norm();
	$interactive and show_status();
}

my @list_of_rpm_to_install;
sub require_rpm {
    my $all_rpms_found = 1;
    my $res;
    my @file_cache =  cat_("/var/log/rpmpkgs");
    @list_of_rpm_to_install = ();
#- reverted to old method - /var/log/rpmpkgs is not always accurate
#    my($pkg) = @_;
    foreach my $pkg (@_) {
#	   $res = grep /$pkg/, @file_cache;
		$res = system("rpm -q $pkg > /dev/null");
		if ($res == 256) { 
			$all_rpms_found = 0; 
			push @list_of_rpm_to_install, $pkg;
		}
    }
    return($all_rpms_found);
}

sub check_pkg_needs {
	my $extra_pkg = '';
	if ($where_net) {
		$extra_pkg = 'rsync' if ($net_proto eq 'rsync');
		$extra_pkg = 'sitecopy' if ($net_proto eq 'webdav');
		$extra_pkg = 'perl-Expect' if (($net_proto eq 'ssh') && ($use_expect));
	}
	$extra_pkg = 'mt-st' if ($where_tape);
	if ($extra_pkg ne '') {
		if (require_rpm($extra_pkg)) {
			return(0);
		} else {
			#- this isn't entirely good, but it's the only way we get here currently
			#- was getting strange return behavior before
			#- still a problem, we can also get here from the cron screen
			install_rpm(\&advanced_where);
			return(1);
		}		
	}	
}

sub cursor_wait {
	# turn the cursor to a watch
	$window1->window->set_cursor(new Gtk::Gdk::Cursor(150));    
	Gtk->main_iteration while Gtk->events_pending;
}

sub cursor_norm {
	# restore normal cursor
	$window1->window->set_cursor(new Gtk::Gdk::Cursor(68));
	Gtk->main_iteration while Gtk->events_pending;
}

sub show_status {
	#- just a generic routine to display an array of text in the GUI screen
	
	my $text = new Gtk::Text(undef, undef);
	
    $table->destroy();
	
    gtkpack($advanced_box,
	   $table = gtkpack_(new Gtk::VBox(0,10),
			1, gtkpack_(new Gtk::HBox(0,0),
        		1, gtktext_insert(gtkset_editable($text, 0), $results),
				0, new Gtk::VScrollbar($text->vadj),
			),
		),
	);
    $central_widget = \$table;
    $table->show_all();    
}

sub list_remove {
    my($widget, $list) = @_;
    my @to_remove;
    push @to_remove, $list->child_position($_) foreach ($list->selection);
    splice @list_other, $_, 1 foreach (reverse sort @to_remove);
    $list->remove_items($list->selection);
}

sub file_ok_sel { 
    my ($widget, $file_selection) = @_;     
    my $file_name = $file_selection->get_filename();
    if (!member($file_name, @list_other)) {
	push(@list_other, $file_name);
	$list_other->add(gtkshow(new Gtk::ListItem($file_name)));
    }
}

sub filedialog_where_hd {
    my $file_dialog;

    $file_dialog = gtksignal_connect(new Gtk::FileSelection(_("File Selection")), destroy => sub { $file_dialog->destroy() } );
    $file_dialog->ok_button->signal_connect(clicked => sub { 
	$save_path_entry->set_text($file_dialog->get_filename()); 
	$file_dialog->destroy() });
    $file_dialog->cancel_button->signal_connect(clicked => sub { $file_dialog->destroy() });
    $file_dialog->show();
}

sub filedialog_restore_find_path {
    my $file_dialog;

    $file_dialog = gtksignal_connect(new Gtk::FileSelection(_("File Selection")), destroy => sub { $file_dialog->destroy() } );
    $file_dialog->ok_button->signal_connect(clicked => sub { 
	$restore_find_path_entry->set_text($file_dialog->get_filename()); 
	$file_dialog->destroy() });
    $file_dialog->cancel_button->signal_connect(clicked => sub { $file_dialog->destroy() });
    $file_dialog->show();
}

sub filedialog {
    my $file_dialog;

    $file_dialog = gtksignal_connect(new Gtk::FileSelection(_("File Selection")), destroy => sub { $file_dialog->destroy() } );
    $file_dialog->ok_button->signal_connect(clicked => \&file_ok_sel, $file_dialog);
    $file_dialog->ok_button->child->set(_("Add"));
    $file_dialog->cancel_button->signal_connect(clicked => sub { $file_dialog->destroy() });
    $file_dialog->cancel_button->child->set(_("Close"));
    $file_dialog->set_filename(_("Select the files or directories and click on 'Add'"));
    $file_dialog->show();
}

################################################  ADVANCED  ################################################  

sub check_list {
    foreach (@_) {
	my $ref = $_->[1];
		gtksignal_connect(gtkset_active($_->[0], ${$ref}), toggled => sub { 
			invbool $ref; 
			${$central_widget}->destroy();
			$current_widget->();
		});
	}
}

sub fonction_env {
    ($central_widget, $current_widget, $previous_widget, $custom_help, $next_widget) = @_;
}

# sub redraw_during_check {
#     my ($tmp1, $tmp2) = @_;
#     gtksignal_connect(gtkset_active($tmp1, $tmp2), toggled => sub { 
# #	invbool \$tmp2;
# 	print "tmp2 bef = $tmp2\n";
# 	$tmp2 = $tmp2 ? 0 : 1;
# 	${$central_widget}->destroy();
# 	print "tmp2 after = $tmp2\n";
# 	$current_widget->();
# 	return ($tmp2);
#     });
# }

sub advanced_what_sys {
    my $box_what_sys;
    
    gtkpack($advanced_box,
	    $box_what_sys =  gtkpack_(new Gtk::VBox(0, 15),
		     1, _("\nPlease check all options that you need.\n"),
		     1, _("These options can backup and restore all files in your /etc directory.\n"),
		     0, my $check_what_sys = new Gtk::CheckButton(_("Backup your System files. (/etc directory)")),
		     0, my $check_what_versions = new Gtk::CheckButton(_("Use incremental backup  (do not replace old backups)")),
		     0, my $check_what_critical = new Gtk::CheckButton(_("Do not include critical files (passwd, group, fstab)")),
		     0, _("With this option you will be able to restore any version\n of your /etc directory."),
		     1, new Gtk::VBox(0, 15),
		     ),
	    );
    check_list([$check_what_sys, \$backup_sys], [$check_what_critical, \$no_critical_sys], [$check_what_versions, \$backup_sys_versions]);
    fonction_env(\$box_what_sys, \&advanced_what_sys, \&advanced_what, "what");
    $up_box->show_all();
}

sub advanced_what_user {
    my ($previous_function) = @_,
    my $box_what_user;
    my %check_what_user;
    
    all_user_list();
    gtkpack($advanced_box,
	    $box_what_user = gtkpack_(new Gtk::VBox(0, 15),
			0, _("Please check all users that you want to include in your backup."),
			0, new Gtk::HSeparator,
			1, createScrolledWindow( 
				gtkpack__(new Gtk::VBox(0,0),
					map { my $name = $_;
						my @user_list_tmp;
						my $b = new Gtk::CheckButton($name); 
						if (grep /^$name$/, @user_list) {
							$check_what_user{$_}[1] = 1;
							gtkset_active($b, 1);
						} else {
							$check_what_user{$_}[1] = 0;
							gtkset_active($b, 0);
						}
						$b->signal_connect(toggled => sub { 
							if ($check_what_user{$name}[1] ) {
								$check_what_user{$name}[1] = 0;
								@user_list_tmp = grep(!/^$name$/, @user_list);
								@user_list = @user_list_tmp;
							} else { 
								$check_what_user{$name}[1] = 1;
								if (!member($name, @user_list)) { push @user_list, $name }
							}
						});
					$b } (@all_user_list) 
				),
			),
			0, my $check_what_browser = new Gtk::CheckButton(_("Do not include the browser cache")),
	    	0, my $check_what_user_versions = new Gtk::CheckButton(_("Use Incremental Backups  (do not replace old backups)")),
		),
	);
    check_list([$check_what_browser, \$what_no_browser], [$check_what_user_versions, \$backup_user_versions]);
    if ($previous_function) { fonction_env(\$box_what_user, \&advanced_what_user, \&$previous_function, "what", \&$previous_function) }
    else { fonction_env(\$box_what_user, \&advanced_what_user, \&advanced_what, "what") }
    $up_box->show_all();
}

sub advanced_what_other {
    my $box_what_other;
    $list_other = new Gtk::List();
    $list_other->set_selection_mode(-extended);
    $list_other->add(gtkshow(new Gtk::ListItem($_))) foreach (@list_other);
    
    gtkpack($advanced_box,
	    $box_what_other = gtkpack_(new Gtk::VBox(0, 15),
		     1, gtkpack_(new Gtk::HBox(0,4),
				 1, createScrolledWindow($list_other),
				 ),
		     0, gtkadd(gtkset_layout(new Gtk::HButtonBox, -spread),
			       gtksignal_connect(new Gtk::Button(_("Add")), clicked => sub { filedialog() }),
			       gtksignal_connect(new Gtk::Button(_("Remove Selected")), clicked => \&list_remove, $list_other),
			       ),
		     0, gtkset_sensitive(my $check_what_other_versions = new Gtk::CheckButton(_("Use Incremental Backups  (do not replace old backups)") ), 0),
		     ),
	    );
    check_list([$check_what_other_versions, \$backup_other_versions]);
    fonction_env(\$box_what_other, \&advanced_what_other, \&advanced_what, "what");
    $up_box->show_all();
}

sub advanced_what_entire_sys{
    my $box_what;
    
    my ($pix_user_map, $pix_user_mask) = gtkcreate_png("user");
    my ($pix_other_map, $pix_other_mask) = gtkcreate_png("net_u");
    my ($pix_sys_map, $pix_sys_mask) = gtkcreate_png("bootloader");

    gtkpack($advanced_box,
	    $box_what = gtkpack_(new Gtk::HBox(0, 15),
		     1, new Gtk::VBox(0, 5),
		     1, gtkpack_(new Gtk::VBox(0, 15),	
				 1, new Gtk::VBox(0, 5),
				 1, gtksignal_connect(my $button_what_other = new Gtk::Button(), 
						      clicked => sub { ${$central_widget}->destroy(); message_underdevel() }),
				 1, gtksignal_connect(my $button_what_all = new Gtk::Button(), 
						      clicked => sub { ${$central_widget}->destroy(); message_underdevel() }),
				 1, new Gtk::VBox(0, 5),
				 ),
		     1, new Gtk::VBox(0, 5),	
		     ),
	    );
    $button_what_other->add(gtkpack(new Gtk::HBox(0,10),
				    new Gtk::Pixmap($pix_sys_map, $pix_sys_mask),
				    new Gtk::Label(_("Linux")),
				    new Gtk::HBox(0, 5)
				    ));
    $button_what_all->add(gtkpack(new Gtk::HBox(0,10),
				  new Gtk::Pixmap($pix_user_map, $pix_user_mask),
				   new Gtk::Label(_("Windows (FAT32)")),
				  new Gtk::HBox(0, 5)
				  ));
    fonction_env(\$box_what, \&advanced_what_entire_sys, \&advanced_what, "");
    $up_box->show_all();
}

sub advanced_what{
    my $box_what;    
    my ($pix_user_map, $pix_user_mask) = gtkcreate_png("ic82-users-40");
    my ($pix_other_map, $pix_other_mask) = gtkcreate_png("ic82-others-40");
    my ($pix_sys_map, $pix_sys_mask) = gtkcreate_png("ic82-system-40");
    my ($pix_sysp_map, $pix_sysp_mask) = gtkcreate_png("ic82-systemeplus-40");

    gtkpack($advanced_box,
	    $box_what =  gtkpack_(new Gtk::HBox(0, 15),
		     1, new Gtk::VBox(0, 5),
		     1, gtkpack_(new Gtk::VBox(0, 15),	
				 1, new Gtk::VBox(0, 5),
				 1, gtksignal_connect(my $button_what_sys = new Gtk::Button(), 
						      clicked => sub { $box_what->destroy(); advanced_what_sys() }),
				 1, gtksignal_connect(my $button_what_user = new Gtk::Button(), 
						      clicked => sub { ${$central_widget}->destroy(); advanced_what_user() }),
				 1, gtksignal_connect(my $button_what_other = new Gtk::Button(), 
						      clicked => sub { ${$central_widget}->destroy(); advanced_what_other() }),
#				 1, gtksignal_connect(my $button_what_all = new Gtk::Button(), 
#						  clicked => sub { ${$central_widget}->destroy(); advanced_what_entire_sys(); }),
				 1, new Gtk::VBox(0, 5),
				 ),
		     1, new Gtk::VBox(0, 5),	
				 ),
	    );
    $button_what_sys->add(gtkpack(new Gtk::HBox(0,10),
				    new Gtk::Pixmap($pix_sys_map, $pix_sys_mask),
				    new Gtk::Label(_("System")),
				    new Gtk::HBox(0, 5)
				    ));
    $button_what_user->add(gtkpack(new Gtk::HBox(0,10),
				    new Gtk::Pixmap($pix_user_map, $pix_user_mask),
				    new Gtk::Label(_("Users")),
				    new Gtk::HBox(0, 5)
				    ));
    $button_what_other->add(gtkpack(new Gtk::HBox(0,10),
				    new Gtk::Pixmap($pix_other_map, $pix_other_mask),
				    new Gtk::Label(_("Other")),
				    new Gtk::HBox(0, 5)
				    ));
#     $button_what_all->add(gtkpack(new Gtk::HBox(0,10),
# 				    new Gtk::Pixmap($pix_sysp_map, $pix_sysp_mask),
# 				    new Gtk::Label(_("An Entire System")),
# 				    new Gtk::HBox(0, 5)
# 				    ));

    fonction_env(\$box_what, \&advanced_what, \&advanced_box, "");
    $up_box->show_all();
}

sub advanced_where_net_types {
    my ($previous_function) = @_,
    my $box_where_net;
	        
    gtkpack($advanced_box,
	    $box_where_net = gtkpack_(new Gtk::VBox(0, 10),
	 		0, new Gtk::HSeparator,
	 		0, gtkpack_(new Gtk::HBox(0,10),
	 			0, my $check_where_use_net = new Gtk::CheckButton(_("Use network connection to backup") ),
				1, new Gtk::HBox(0,10),
	 			0, new Gtk::Label("Net Method:"),
	 			0, gtkset_sensitive(my $entry_net_type = new Gtk::Combo(), $where_net),
	 		),	 
	 		0, gtkpack_(new Gtk::HBox(0,5),
	   			0, gtkset_sensitive(my $check_use_expect = new Gtk::CheckButton(_("Use Expect for SSH")), ($where_net && ($net_proto eq 'ssh'))),
	   			0, gtkset_sensitive(my $check_xfer_keys = new Gtk::CheckButton(_("Create/Transfer\nbackup keys for SSH")), ($where_net && ($net_proto eq 'ssh'))),
				0, gtkset_sensitive(my $button_xfer_keys = new Gtk::Button(_("  Transfer  \nNow")), $xfer_keys),
	   			0, gtkset_sensitive(my $check_user_keys = new Gtk::CheckButton(_("Keys in place already")), ($where_net && ($net_proto eq 'ssh'))),
			),
	 		0, new Gtk::HSeparator,
	 		0, gtkpack_(new Gtk::HBox(0,10),
		    	0, gtkset_sensitive(new Gtk::Label(_("Please enter the host name or IP.")), $where_net),
		    	1, new Gtk::HBox(0,10),
		    	0, gtkset_sensitive(my $host_name_entry = new Gtk::Entry(), $where_net),
		    ),
	 		0, gtkpack_(new Gtk::HBox(0,10),
	 			0, gtkset_sensitive(new Gtk::Label(_("Please enter the directory (or module) to\n put the backup on this host.")), $where_net),
		     	1, new Gtk::HBox(0,10),
		     	0, gtkset_sensitive(my $host_path_entry = new Gtk::Entry(), $where_net), 
		    ),
	 		0, gtkpack_(new Gtk::HBox(0,10),
		    	0, gtkset_sensitive(new Gtk::Label(_("Please enter your login")), $where_net),
				1, new Gtk::HBox(0,10),
				0, gtkset_sensitive(my $login_user_entry = new Gtk::Entry(), $where_net),
			),
	 		0, gtkpack_(new Gtk::HBox(0,10),
				0, gtkset_sensitive(new Gtk::Label(_("Please enter your password")),  $where_net),
				1, new Gtk::HBox(0,10),
				0, gtkset_sensitive(my $passwd_user_entry = new Gtk::Entry(), $where_net),
			),
	 		0, gtkpack_(new Gtk::HBox(0,10),
				1, new Gtk::HBox(0,10),
				0, gtkset_sensitive(my $check_remember_pass = new Gtk::CheckButton(_("Remember this password")), $where_net),
	 		),
	 	),   
	);
	$entry_net_type->set_popdown_strings(@net_methods);
	$entry_net_type->entry->set_text($net_proto);
	$entry_net_type->entry->editable(0);
	$button_xfer_keys->signal_connect('clicked', sub { 
		if (($passwd_user ne '') && ($login_user ne '') && ($host_name ne '')) {
			do_expect("sendkey", $backup_key);
		} else {
			$in->ask_warn('',_("Need hostname, username and password!"));
		}
	}); 	
    $passwd_user_entry->set_visibility(0);
    $passwd_user_entry->set_text($passwd_user);
    $passwd_user_entry->signal_connect('changed', sub { $passwd_user = $passwd_user_entry->get_text() });
    $host_path_entry->set_text($host_path);
    $host_name_entry->set_text($host_name);
    $login_user_entry->set_text($login_user);
    $host_name_entry->signal_connect('changed', sub { $host_name = $host_name_entry->get_text() });
    $host_path_entry->signal_connect('changed', sub { $host_path = $host_path_entry->get_text() });
    $login_user_entry->signal_connect('changed', sub { $login_user = $login_user_entry->get_text() });
    $entry_net_type->entry->signal_connect('changed', sub { 
		$net_proto = $entry_net_type->entry->get_text();
		my $sensitive = 0;
		$sensitive = 1 if ($net_proto eq 'ssh');
		$check_use_expect->set_sensitive($sensitive);
		$check_xfer_keys->set_sensitive($sensitive);
		$button_xfer_keys->set_sensitive($sensitive);
		$check_user_keys->set_sensitive($sensitive);
	});
    check_list ([$check_remember_pass, \$remember_pass]);
    gtksignal_connect(gtkset_active($check_where_use_net, $where_net), toggled => sub { 
		invbool \$where_net;
 		#- assure other methods disabled
		if ($where_net eq 1) {
			$where_cd = 0;
			$where_tape = 0;
		}
		${$central_widget}->destroy();
 		$current_widget->();
    });
	gtksignal_connect(gtkset_active($check_use_expect, $use_expect), toggled => sub { 
		invbool \$use_expect;
 		#- assure other methods disabled
		if ($use_expect eq 1) {
			$xfer_keys = 0;
			$user_keys = 0;
		}
		${$central_widget}->destroy();
 		$current_widget->();
    });
	gtksignal_connect(gtkset_active($check_xfer_keys, $xfer_keys), toggled => sub { 
		invbool \$xfer_keys;
		#- assure other methods disabled
		if ($xfer_keys eq 1) {
			$use_expect = 0;
			$user_keys = 0;
		}
		${$central_widget}->destroy();
 		$current_widget->();
    });
	gtksignal_connect(gtkset_active($check_user_keys, $user_keys), toggled => sub { 
		invbool \$user_keys;
 		#- assure other methods disabled
		if ($user_keys eq 1) {
			$xfer_keys = 0;
			$use_expect = 0;
		}
		${$central_widget}->destroy();
 		$current_widget->();
    });
    if ($previous_function) { 
		fonction_env (\$box_where_net, \&advanced_where_net_types, \&$previous_function, "net");
    } else { 
		fonction_env (\$box_where_net, \&advanced_where_net_types, \&advanced_where, "net");
	}
    $up_box->show_all();
}

sub advanced_where_cd {
    my ($previous_function) = @_;
    my $box_where_cd;
	
	#- probe installed device capabilities
	#- reworked the GUI a bit appropriately
	get_cd_info();
	
	my $combo_where_cd_device = new Gtk::Combo();
    $combo_where_cd_device->set_popdown_strings (sort keys %cd_devices) if (keys %cd_devices);  
	
    my $combo_where_cd_time = new Gtk::Combo();
    $combo_where_cd_time->set_popdown_strings ("650","700", "750", "800");    
 
	my $combo_where_cdrecord_device = new Gtk::Combo();
	my @dev_codes;
	my $key;
	
	foreach $key (keys %cd_devices) {
		push(@dev_codes, $cd_devices{$key}{rec_dev}); 
	}
	
    $combo_where_cdrecord_device->set_popdown_strings (@dev_codes) if (keys %cd_devices);  	 

    gtkpack($advanced_box,
		$box_where_cd = gtkpack_(new Gtk::VBox(0, 6),
			0, my $check_where_cd = new Gtk::CheckButton(_("Use CD/DVDROM to backup")),
			0, new Gtk::HSeparator,
			0, gtkpack_(new Gtk::HBox(0,10),
			0, gtkset_sensitive(new Gtk::Label(_("Please choose your CD/DVD device\n(Press Enter to propagate settings to other fields.\nThis field isn't necessary, only a tool to fill in the form.)")), $where_cd),
				1, new Gtk::VBox(0, 5),
				0, gtkset_sensitive(gtkset_usize ($combo_where_cd_device, 200, 20), $where_cd),
			),
			0, gtkpack_(new Gtk::HBox(0,10),
			0, gtkset_sensitive(new Gtk::Label(_("Please choose your CD/DVD media size")), $where_cd),
				1, new Gtk::VBox(0, 5),
				0, gtkset_sensitive(gtkset_usize ($combo_where_cd_time, 200, 20), $where_cd),
			),
			0, new Gtk::VBox(0, 5),
			0, gtkpack_(new Gtk::HBox(0,10),
				0, gtkset_sensitive(new Gtk::Label(_("Please check for multisession CD")), $where_cd),
				1, new Gtk::VBox(0, 5),
				0, gtkset_sensitive(my $check_multisession = new Gtk::CheckButton(), $where_cd),
			),
			0, new Gtk::VBox(0, 5),
			0, gtkpack_(new Gtk::HBox(0,10),
				0, gtkset_sensitive(new Gtk::Label(_("Please check if you are using CDRW media")), $where_cd),
				1, new Gtk::VBox(0, 5),
				0, gtkset_sensitive(my $check_cdrw = new Gtk::CheckButton(), $where_cd),
			),
			0, new Gtk::VBox(0, 5),
	 		0, gtkpack_(new Gtk::HBox(0,10),
	 			0, gtkset_sensitive(new Gtk::Label(_("Please check if you want to erase your RW media (1st Session)")), $cdrw && $where_cd),
				0, gtkset_sensitive(my $button_erase_now = new Gtk::Button(_(" Erase Now ")), $cdrw),			
	    		1, new Gtk::VBox(0, 5),
	    		0, gtkset_sensitive(my $check_cdrw_erase = new Gtk::CheckButton(), $cdrw && $where_cd),
			),
			0, new Gtk::VBox(0, 5),
			0, gtkpack_(new Gtk::HBox(0,10),
				0, gtkset_sensitive(new Gtk::Label(_("Please check if you are using a DVDR device")), $where_cd),
				1, new Gtk::VBox(0, 5),
				0, gtkset_sensitive(my $check_dvdr = new Gtk::CheckButton(), $where_cd),
			),
			0, new Gtk::VBox(0, 5),
			0, gtkpack_(new Gtk::HBox(0,10),
				0, gtkset_sensitive(new Gtk::Label(_("Please check if you are using a DVDRAM device")), $where_cd),
				1, new Gtk::VBox(0, 5),
				0, gtkset_sensitive(my $check_dvdram = new Gtk::CheckButton(), $where_cd),
			),
# don't know what this is about - hold off for now (SB)
#			0, new Gtk::VBox(0, 5),
#			0, gtkpack_(new Gtk::HBox(0,10),
#				0, gtkset_sensitive(new Gtk::Label(_("Please check if you want to include\n install boot on your CD.")),  $where_cd),
#				1, new Gtk::VBox(0, 5),
#				0, gtkset_sensitive(my $check_cd_with_install_boot = new Gtk::CheckButton(), $where_cd),
#			),
			0, new Gtk::VBox(0, 5),
			0, gtkpack_(new Gtk::HBox(0,10),
				0, gtkset_sensitive(new Gtk::Label(_("Please enter your CD Writer device name\n ex: 0,1,0")),  $where_cd),
				1, new Gtk::VBox(0, 5),
#				0, gtkset_usize (gtkset_sensitive($cd_device_entry = new Gtk::Entry(), $where_cd), 200, 20),
				0, gtkset_sensitive(gtkset_usize ($combo_where_cdrecord_device, 200, 20), $where_cd),
			),
		),
	);

#    foreach ([$check_cdrw_erase, \$media_erase], [$check_cd_with_install_boot, \$cd_with_install_boot ]) {
    foreach ([$check_cdrw_erase, \$media_erase], [$check_dvdr, \$dvdr], [$check_dvdram, \$dvdram], [$check_multisession, \$multi_session]) {
		my $ref = $_->[1];
		gtksignal_connect(gtkset_active($_->[0], ${$ref}), toggled => sub { ${$ref} = ${$ref} ? 0 : 1 })
	}
    gtksignal_connect(gtkset_active($check_where_cd, $where_cd), toggled => sub { 
		$where_cd = $where_cd ? 0 : 1;
		#- toggle where_net, where_tape off
		if ($where_cd eq 1) {
			$where_net = 0;
			$where_tape = 0;
		}
		${$central_widget}->destroy();
		$current_widget->();
    });
    gtksignal_connect(gtkset_active($check_cdrw, $cdrw), toggled => sub { 
		$cdrw = $cdrw ? 0 : 1;
		$check_cdrw_erase->set_sensitive($cdrw);
		${$central_widget}->destroy();
		$current_widget->();
    });
	$button_erase_now->signal_connect('clicked', sub { 
		if ($cd_device ne '') {
			erase_cdrw();
		} else {
			$in->ask_warn('',_("No CD device defined!"));
		}
	}); 	
    $combo_where_cdrecord_device->entry->set_text($cd_device);
    $combo_where_cdrecord_device->entry->signal_connect('changed', sub { $cd_device = $combo_where_cdrecord_device->entry->get_text() });
    
	$combo_where_cd_time->entry->set_text($cd_time);
    $combo_where_cd_time->entry->signal_connect('changed', sub { $cd_time = $combo_where_cd_time->entry->get_text() });	       

	#- this one drives changes in the other entries
	#- still not getting quite the desired behavior, but combo box signals seem to be limited
	#- tried to trigger from the selection, but it either does nothing or crashes!
	
#-	$combo_where_cd_device->entry->set_text($std_device);
	$combo_where_cd_device->entry->signal_connect('activate', sub {
		$std_device = $combo_where_cd_device->entry->get_text(); 
		$combo_where_cdrecord_device->entry->set_text($cd_devices{$std_device}{rec_dev});
		$check_dvdr->set_active($cd_devices{$std_device}{dvdr});
		$check_dvdram->set_active($cd_devices{$std_device}{dvdram});
		#- do this one last or the widget destory mucks up the others
		$check_cdrw->set_active($cd_devices{$std_device}{cdrw});			
	});
	
    if ($previous_function) { 
		fonction_env(\$box_where_cd, \&advanced_where_cd, \&$previous_function, ""); 
	} else { 
		fonction_env(\$box_where_cd, \&advanced_where_cd, \&advanced_where, ""); 
	}
    $up_box->show_all();
}

sub advanced_where_tape {
    my ($previous_function) = @_,

	#- look for tape devices;
	get_tape_info();
	
	my $combo_where_tape_device = new Gtk::Combo();
    $combo_where_tape_device->set_popdown_strings (@tape_devices) if (@tape_devices);  

    my $box_where_tape;
    my $button;
    my $adj = new Gtk::Adjustment 550.0, 1.0, 10000.0, 1.0, 5.0, 0.0;
    #my ($pix_fs_map, $pix_fs_mask) = gtkcreate_png("filedialog");
    
    gtkpack($advanced_box,
		$box_where_tape = gtkpack_(new Gtk::VBox(0, 6),
			0, new Gtk::HSeparator,
		 	0, my $check_where_tape = new Gtk::CheckButton(_("Use tape to backup") ),
		 	0, new Gtk::HSeparator,
		 	0, gtkpack_(new Gtk::HBox(0,10),
				0, gtkset_sensitive(new Gtk::Label(_("Please enter the device name to use for backup")), $where_tape),
				1, new Gtk::VBox(0, 6),
				0, gtkset_sensitive(gtkset_usize ($combo_where_tape_device, 200, 20), $where_tape),
			),
			0, new Gtk::VBox(0, 5),
	 		0, gtkpack_(new Gtk::HBox(0,10),
	    		0, gtkset_sensitive(new Gtk::Label(_("Please check if you want to use the non-rewinding device.")), $where_tape),
	    		1, new Gtk::VBox(0, 5),
	    		0, gtkset_sensitive(my $check_tape_rewind = new Gtk::CheckButton(), $where_tape),
			),
			0, new Gtk::VBox(0, 5),
	 		0, gtkpack_(new Gtk::HBox(0,10),
	    		0, gtkset_sensitive(new Gtk::Label(_("Please check if you want to erase your tape before the backup.")), $where_tape),
	    		1, new Gtk::VBox(0, 5),
	    		0, gtkset_sensitive(my $check_tape_erase = new Gtk::CheckButton(), $where_tape),
			),
			0, new Gtk::VBox(0, 5),
	 		0, gtkpack_(new Gtk::HBox(0,10),
	    		0, gtkset_sensitive(new Gtk::Label(_("Please check if you want to eject your tape after the backup.")), $where_tape),
	    		1, new Gtk::VBox(0, 5),
	    		0, gtkset_sensitive(my $check_tape_eject = new Gtk::CheckButton(), $where_tape),
			),
			0, new Gtk::VBox(0, 6),
			0, gtkpack_(new Gtk::HBox(0,10),
				0, gtkset_sensitive(new Gtk::Label(_("Please enter the maximum size\n allowed for Drakbackup")), $where_tape),
				1, new Gtk::VBox(0, 6),
				0, gtkset_usize (gtkset_sensitive(my $spinner = new Gtk::SpinButton($adj, 0, 0), $where_tape), 200, 20),
			),
			0, gtkpack_(new Gtk::HBox(0,10),),
		),
	);
    gtksignal_connect(gtkset_active($check_where_tape, $where_tape), toggled => sub { 
		$where_tape = $where_tape ? 0 : 1;
		#- assure other methods are off
		if ($where_tape eq 1) {
			$where_net = 0;
			$where_cd = 0;
		}
		${$central_widget}->destroy();
		$current_widget->();
    });
	gtksignal_connect(gtkset_active($check_tape_rewind, $tape_norewind), toggled => sub { 
		$tape_norewind = $tape_norewind ? 0 : 1;
		$_ = $tape_device;
		if ($tape_norewind) {
			$tape_device =~ s/\/st/\/nst/;
		} else {
			$tape_device =~ s/\/nst/\/st/;
		}
		$combo_where_tape_device->entry->set_text($tape_device);
		${$central_widget}->destroy();
		$current_widget->();

    });
	gtksignal_connect(gtkset_active($check_tape_erase, $media_erase), toggled => sub { 
		$media_erase = $media_erase ? 0 : 1;
		${$central_widget}->destroy();
		$current_widget->();
    });
	gtksignal_connect(gtkset_active($check_tape_eject, $media_eject), toggled => sub { 
		$media_eject = $media_eject ? 0 : 1;
		${$central_widget}->destroy();
		$current_widget->();
    });
    $combo_where_tape_device->entry->set_text($tape_device);
	$combo_where_tape_device->entry->signal_connect('changed', sub {
		$tape_device = $combo_where_tape_device->entry->get_text();
	}); 
    if ($previous_function) { 
		fonction_env(\$box_where_tape, \&advanced_where_tape, \&$previous_function, ""); 
	} else { 
		fonction_env(\$box_where_tape, \&advanced_where_tape, \&advanced_where, ""); 
	}
    $up_box->show_all();
}

sub advanced_where_hd {
    my ($previous_function) = @_,
    my $box_where_hd;
    my $button;
    my $adj = new Gtk::Adjustment 550.0, 1.0, 10000.0, 1.0, 5.0, 0.0;
    my ($pix_fs_map, $pix_fs_mask) = gtkcreate_png("ic82-dossier-32");
    
    gtkpack($advanced_box,
	    $box_where_hd = gtkpack_(new Gtk::VBox(0, 6),
	 0, new Gtk::HSeparator,
#	 0, my $check_where_hd = new Gtk::CheckButton( _("Use Hard Disk to backup") ),
#	 0, new Gtk::HSeparator,
	 0, gtkpack_(new Gtk::HBox(0,10),
		     0, gtkset_sensitive(new Gtk::Label(_("Please enter the directory to save to:")), $where_hd),
		     1, new Gtk::VBox(0, 6),
		     0, gtkset_usize (gtkset_sensitive($save_path_entry = new Gtk::Entry(), $where_hd), 152, 20),
		     0, gtkset_sensitive($button = gtksignal_connect(new Gtk::Button(),  clicked => sub {
			 filedialog_where_hd() }), $where_hd),
		     ),
	 0, new Gtk::VBox(0, 6),
	 0, gtkpack_(new Gtk::HBox(0,10),
	   0, gtkset_sensitive(new Gtk::Label(_("Please enter the maximum size\n allowed for Drakbackup")),  $where_hd),
	   1, new Gtk::VBox(0, 6),
	   0, gtkset_usize (gtkset_sensitive(my $spinner = new Gtk::SpinButton($adj, 0, 0), $where_hd), 200, 20),
		     ),
	 0, gtkpack_(new Gtk::HBox(0,10),
		     1, new Gtk::VBox(0, 6),
	   0, gtkset_sensitive(my $check_where_hd_quota = new Gtk::CheckButton(_("Use quota for backup files.")), $where_hd),
		     0, new Gtk::VBox(0, 6),
		     ),
	 ),
	    );
    foreach ([$check_where_hd_quota, \$hd_quota]) {
	my $ref = $_->[1];
	gtksignal_connect(gtkset_active($_->[0], ${$ref}), toggled => sub { ${$ref} = ${$ref} ? 0 : 1 })
	}
#    gtksignal_connect(gtkset_active($check_where_hd, $where_hd), toggled => sub { 
#	$where_hd = $where_hd ? 0 : 1;
#	$where_hd = 1;
#	${$central_widget}->destroy();
#	$current_widget->();
#    });
    $button->add(gtkpack(new Gtk::HBox(0,10), new Gtk::Pixmap($pix_fs_map, $pix_fs_mask)));
    $save_path_entry->set_text($save_path);
    $save_path_entry->signal_connect('changed', sub { $save_path = $save_path_entry->get_text() });
    if ($previous_function) { 
		fonction_env(\$box_where_hd, \&advanced_where_hd, \&$previous_function, ""); 
	} else { 
		fonction_env(\$box_where_hd, \&advanced_where_hd, \&advanced_where, ""); 
	}
    $up_box->show_all();
}

sub advanced_where{
    my $box_where;
    my ($pix_net_map, $pix_net_mask) = gtkcreate_png("ic82-network-40");
    my ($pix_cd_map, $pix_cd_mask) = gtkcreate_png("ic82-CD-40");
    my ($pix_hd_map, $pix_hd_mask) = gtkcreate_png("ic82-discdurwhat-40");
    my ($pix_tape_map, $pix_tape_mask) = gtkcreate_png("ic82-tape-40");

    gtkpack($advanced_box,
	    $box_where = gtkpack_(new Gtk::HBox(0, 15),
				  1, new Gtk::VBox(0, 5),
				  1, gtkpack_(new Gtk::VBox(0, 15),	
					  1, new Gtk::VBox(0, 5),
					  1, gtksignal_connect(my $button_where_net = new Gtk::Button(), clicked => sub { 
					      ${$central_widget}->destroy();
					      advanced_where_net_types(); 
					  }),
					  1, gtksignal_connect(my $button_where_cd = new Gtk::Button(),  clicked => sub { 
					      ${$central_widget}->destroy(); 
					      if (require_rpm("mkisofs", "cdrecord")) { 
					      	advanced_where_cd();
					      } else { 
						  	${$central_widget}->destroy();
						  	install_rpm(\&advanced_where);
						  }
					  }),
					  1, gtksignal_connect(my $button_where_hd = new Gtk::Button(),  clicked => sub { 
					      ${$central_widget}->destroy(); 
					      advanced_where_hd();
					  }),
					  1, gtksignal_connect(my $button_where_tape = new Gtk::Button(),  clicked => sub { 
					      ${$central_widget}->destroy(); 
						  # message_underdevel();
						  advanced_where_tape() }),
					  1, new Gtk::VBox(0, 5),
					     ),
				  1, new Gtk::VBox(0, 5),	
				  ),
	    );
    $button_where_net->add(gtkpack(new Gtk::HBox(0,10),
				   new Gtk::Pixmap($pix_net_map, $pix_net_mask),
				   new Gtk::Label(_("Network")),
				   new Gtk::HBox(0, 5)
				   ));
    $button_where_cd->add(gtkpack(new Gtk::HBox(0,10),
				  new Gtk::Pixmap($pix_cd_map, $pix_cd_mask),
				  new Gtk::Label(_("CDROM / DVDROM")),
				  new Gtk::HBox(0, 5)
				  ));
    $button_where_hd->add(gtkpack(new Gtk::HBox(0,10),
				  new Gtk::Pixmap($pix_hd_map, $pix_hd_mask),
				  new Gtk::Label(_("HardDrive / NFS")),
				  new Gtk::HBox(0, 5)
				  ));
    $button_where_tape->add(gtkpack(new Gtk::HBox(0,10),
 				  new Gtk::Pixmap($pix_tape_map, $pix_tape_mask),
 				  new Gtk::Label(_("Tape")),
 				  new Gtk::HBox(0, 5)
 				  ));
    fonction_env(\$box_where, \&advanced_where, \&advanced_box, ""); 
    $up_box->show_all();
}

#- 7/7/2002 - S.Benedict reworked when - drop all the checkboxes and use a list
#- chances that we want to do backups via multiple medias in cron are slim
sub advanced_when{
    my $box_when;
#   $daemon_media = '';
    my ($pix_time_map, $pix_time_mask) = gtkcreate_png("ic82-when-40");
    my $combo_when_space = new Gtk::Combo();
    my %trans = (_("hourly") => 'hourly',
		 _("daily") => 'daily',
		 _("weekly") => 'weekly',
		 _("monthly") => 'monthly');
    my %trans2 = ('hourly' => _("hourly"),
		  'daily' => _("daily"),
		  'weekly' => _("weekly"),
		  'monthly' => _("monthly"));
    $combo_when_space->set_popdown_strings (_("hourly"),_("daily"),_("weekly"),_("monthly"));    

	#- drop down list of possible medias - default to config value
    my $entry_media_type = new Gtk::Combo();
    $entry_media_type->set_popdown_strings(@media_types, @net_methods);
#    $entry_media_type->set_value_in_list(1, 0);   
	$entry_media_type->entry->set_text($daemon_media);
	
    gtkpack($advanced_box,
	  $box_when = gtkpack_(new Gtk::VBox(0, 15),
	  0, gtkpack_(new Gtk::HBox(0,10),
		1, new Gtk::HBox(0,10),
		1, new Gtk::Pixmap($pix_time_map, $pix_time_mask),
		0, my $check_when_daemon  = new Gtk::CheckButton(_("Use daemon") ), 
		1, new Gtk::HBox(0,10),
	  ),
	  0, new Gtk::HSeparator,
	  0, gtkpack_(new Gtk::HBox(0,10),
		0, gtkset_sensitive(new Gtk::Label(_("Please choose the time \ninterval between each backup")),  $backup_daemon),
		1, new Gtk::HBox(0,10),
		0, gtkset_sensitive($combo_when_space, $backup_daemon),
	  ),
	  0, new Gtk::HBox(0,10),
	  0, gtkpack_(new Gtk::HBox(0,10),
		0, gtkset_sensitive(new Gtk::Label(_("Please choose the\nmedia for backup.")), $backup_daemon),
		1, new Gtk::HBox(0,10),
		0, gtkpack_(new Gtk::VBox(0,10),
			0, gtkset_sensitive($entry_media_type, $backup_daemon),
		),
	  ),
	  0, new Gtk::HSeparator,
	  1, gtkset_sensitive(new Gtk::Label(_("Please be sure that the cron daemon is included in your services. 
\nNote that currently all 'net' medias also use the hard drive.")),  $backup_daemon),
	  ),
	);

    gtksignal_connect(gtkset_active($check_when_daemon, $backup_daemon), toggled => sub { 
		$backup_daemon = $backup_daemon ? 0 : 1;
		${$central_widget}->destroy();
		advanced_when();
    });
    $combo_when_space->entry->set_text($trans2{$when_space});
    $combo_when_space->entry->signal_connect('changed', sub { $when_space = $trans{$combo_when_space->entry->get_text()} });
	$entry_media_type->entry->signal_connect('changed', sub { 
		$daemon_media = $entry_media_type->entry->get_text();
	});
    fonction_env(\$box_when, \&advanced_when, \&advanced_box, "");
    $up_box->show_all();
}

sub advanced_options{
    my $box_options;
    my ($pix_options_map, $pix_options_mask) = gtkcreate_png("ic82-moreoption-40");
    
    gtkpack($advanced_box,
	    $box_options = gtkpack_(new Gtk::VBox(0, 15),
# 				 0, gtkpack_(new Gtk::HBox(0,10),
# 					     1, new Gtk::VBox(0,10),
# 					     1, new Gtk::Pixmap($pix_options_map, $pix_options_mask),
# 					     1, _("Please choose correct options to backup."),
# 					     1, new Gtk::VBox(0,10),
# 					     ),
# 				 0, new Gtk::HSeparator,
# 				 0, gtkpack_(new Gtk::VBox(0,10),
# 					     0, gtkset_sensitive(my $check_tar_bz2  = new Gtk::CheckButton( _("Use Tar and bzip2 (very slow) [Please be careful if you\n (un)select this option, as all your old backups will be deleted.]") ), 0),
# 			 0, gtkset_sensitive(my $check_backupignore = new Gtk::CheckButton( _("Use .backupignore files")), 0),
				    0, new Gtk::VBox(0,10),
				    0, gtkpack_(new Gtk::HBox(0,10),
						0, my $check_mail = new Gtk::CheckButton(_("Send mail report after each backup to :")),
						1, new Gtk::HBox(0,10),
						0, my $mail_entry = new Gtk::Entry(),
					),
#					     ),
				    0, gtkpack_(new Gtk::HBox(0,10),
						0, my $check_del_hd_files = new Gtk::CheckButton(_("Delete Hard Drive tar files after backup to other media.")),
					),
		),
	);
    check_list([$check_mail, \$send_mail], [$check_del_hd_files, \$del_hd_files]);
#    check_list([$check_mail, \$send_mail], [$check_tar_bz2, \$comp_mode], [$check_backupignore, \$backupignore]);
    $mail_entry->set_text($user_mail);
    $mail_entry->signal_connect('changed', sub { $user_mail = $mail_entry->get_text() });
    fonction_env(\$box_options, \&advanced_options, \&advanced_box, "options");
    $up_box->show_all();
}

sub advanced_box{
    my $box_adv;
    my ($pix_hd_map, $pix_hd_mask) = gtkcreate_png("ic82-discdurwhat-40");
    my ($pix_time_map, $pix_time_mask) = gtkcreate_png("ic82-when-40");
    my ($pix_net_map, $pix_net_mask) = gtkcreate_png("ic82-where-40");
    my ($pix_options_map, $pix_options_mask) = gtkcreate_png("ic82-moreoption-40");

    gtkpack($advanced_box,
		$box_adv = gtkpack_(new Gtk::HBox(0, 15),
			1, new Gtk::VBox(0, 5),	
			1, gtkpack_(new Gtk::VBox(0, 15),	
				1, new Gtk::VBox(0, 5),	
				1, gtksignal_connect(my $button_what = new Gtk::Button(), clicked => sub { 
				    ${$central_widget}->destroy(); advanced_what() }),
				1, gtksignal_connect(my $button_where = new Gtk::Button(), clicked => sub { 
				    ${$central_widget}->destroy();  advanced_where() }),
				1, gtksignal_connect(my $button_when = new Gtk::Button(), clicked => sub { 
				    ${$central_widget}->destroy();  advanced_when() }),
				1, gtksignal_connect(my $button_options = new Gtk::Button(), clicked => sub {
					${$central_widget}->destroy(); advanced_options() }),
				1, new Gtk::VBox(0, 5),	
			),
			1, new Gtk::VBox(0, 5),	
		),
	);
    $button_what->add(gtkpack(new Gtk::HBox(0,10),
		new Gtk::Pixmap($pix_hd_map, $pix_hd_mask),
		new Gtk::Label(_("What")),
		new Gtk::HBox(0, 5)
	));
    $button_where->add(gtkpack(new Gtk::HBox(0,10),
	    new Gtk::Pixmap($pix_net_map, $pix_net_mask),
	    new Gtk::Label(_("Where")),
	    new Gtk::HBox(0, 5)
	));
    $button_when->add(gtkpack(new Gtk::HBox(0,10),
	    new Gtk::Pixmap($pix_time_map, $pix_time_mask),
	    new Gtk::Label(_("When")),
	    new Gtk::HBox(0, 5)
	));
    $button_options->add(gtkpack(new Gtk::HBox(0,10),
	    new Gtk::Pixmap($pix_options_map, $pix_options_mask),
	    new Gtk::Label(_("More Options")),
	    new Gtk::HBox(0, 5)
	));
    fonction_env(\$box_adv, \&advanced_box, \&interactive_mode_box, "");
    $up_box->show_all();
}

################################################  WIZARD  ################################################  

sub wizard_step3 {
    my $box2;    
    my $text = new Gtk::Text(undef, undef);
    system_state();
    gtktext_insert($text, $system_state);
    button_box_restore_main();

    gtkpack($advanced_box,
		$box2 =  gtkpack_(new Gtk::HBox(0, 15),	
			1, gtkpack_(new Gtk::VBox(0,10),
				0, _("Drakbackup Configuration"),
				1, createScrolledWindow($text),
			),
		),
	);
    fonction_env(\$box2, \&wizard_step3, \&wizard_step2, "");
    button_box_wizard_end();
    $up_box->show_all();
}

sub wizard_step2 {
    my $box2;    
    
    gtkpack($advanced_box,
		$box2 =  gtkpack_(new Gtk::HBox(0, 15),	
			1, new Gtk::VBox(0, 5),	
			1, gtkpack_(new Gtk::VBox(0, 15),	
				1, new Gtk::VBox(0, 5),
				0, _("Please choose where you want to backup"),
				0, gtkpack_(new Gtk::HBox(0, 15),	      
					0, my $check_wizard_hd = new Gtk::CheckButton(_("on Hard Drive")),
					1, new Gtk::VBox(0, 5),
					0, gtkset_sensitive(gtksignal_connect(new Gtk::Button(_("Configure")), clicked => sub {
						${$central_widget}->destroy();
						to_ok();
						advanced_where_hd(\&wizard_step2);
						to_normal();
					}), $where_hd),
				),
				0, gtkpack_(new Gtk::HBox(0, 15),	      
					0, my $check_wizard_net = new Gtk::CheckButton(_("across Network")),
					1, new Gtk::VBox(0, 5),
					0, gtkset_sensitive(gtksignal_connect(new Gtk::Button(_("Configure")), clicked => sub {
						${$central_widget}->destroy();
						to_ok();
						advanced_where_net_types(\&wizard_step2);
						to_normal();
					}), $where_net),
				),
 				0, gtkpack_(new Gtk::HBox(0, 15),	      
 					0, my $check_wizard_cd = new Gtk::CheckButton(_("on CDROM")),
 					1, new Gtk::VBox(0, 5),	
 					0, gtkset_sensitive(gtksignal_connect(new Gtk::Button(_("Configure")), clicked => sub {
 						${$central_widget}->destroy();
 						advanced_where_cd(\&wizard_step2);
 					}), $where_cd),
 				),
 				0, gtkpack_(new Gtk::HBox(0, 15),	      
 					0, my $check_wizard_tape = new Gtk::CheckButton(_("on Tape Device")),
 					1, new Gtk::VBox(0, 5),
 					0, gtkset_sensitive(gtksignal_connect(new Gtk::Button(_("Configure")), clicked => sub {
 						${$central_widget}->destroy();
 						advanced_where_tape(\&wizard_step2);
 					}), $where_tape),
 				),
				1, new Gtk::VBox(0, 5),
			),
			1, new Gtk::VBox(0, 5),
		),
	);
    foreach ([$check_wizard_hd, \$where_hd], 
	     [$check_wizard_cd, \$where_cd], 
	     [$check_wizard_tape, \$where_tape],
	     [$check_wizard_net, \$where_net]) {
			my $ref = $_->[1];
			gtksignal_connect(gtkset_active($_->[0], ${$ref}), toggled => sub { 
				${$ref} = ${$ref} ? 0 : 1;
				$where_hd = 1;
				if (!$where_hd && !$where_cd && !$where_net) {  
					$next_widget = \&message_noselect_box
				} else { 
					$next_widget = \&wizard_step3 
				}
				${$central_widget}->destroy();
				wizard_step2();
			})
	}
    if (!$where_hd && !$where_cd && !$where_net) { fonction_env(\$box2, \&wizard_step2, \&wizard, "", \&message_noselect_box) }
    else { fonction_env(\$box2, \&wizard_step2, \&wizard, "", \&wizard_step3) }
    button_box_wizard();
    $up_box->show_all();
}

sub wizard   {
    my $box2;    
    
    gtkpack($advanced_box,
	    $box2 =  gtkpack_(new Gtk::HBox(0, 15),	
			      1, new Gtk::VBox(0, 5),	
			      1, gtkpack_(new Gtk::VBox(0, 15),	
					  1, new Gtk::VBox(0, 5),
					  0, _("Please choose what you want to backup"),
					  0, my $check_wizard_sys = new Gtk::CheckButton(_("Backup system")),
					  0, my $check_wizard_user = new Gtk::CheckButton(_("Backup Users")),
					  0, gtkpack_(new Gtk::HBox(0, 15),
					       1, new Gtk::VBox(0, 5),	
					       0, gtksignal_connect(new Gtk::Button(_("Select user manually")), clicked => sub {
						   ${$central_widget}->destroy();
						   advanced_what_user(\&wizard);
					       }),
						      ),
					  1, new Gtk::VBox(0, 5),	
					  ),
			      1, new Gtk::VBox(0, 5),	
			      ),
	    );
    foreach ([$check_wizard_sys, \$backup_sys], [$check_wizard_user, \$backup_user]) {
	my $ref = $_->[1];
	gtksignal_connect(gtkset_active($_->[0], ${$ref}), toggled => 
			  sub { ${$ref} = ${$ref} ? 0 : 1;
				if ($backup_sys || $backup_user && @user_list) { $next_widget = \&wizard_step2 } 
				else { $next_widget = \&message_noselect_what_box }
			    })}
    if ($backup_sys || $backup_user && @user_list) { fonction_env(\$box2, \&wizard, \&interactive_mode_box, "", \&wizard_step2) } 
    else { fonction_env(\$box2, \&wizard, \&interactive_mode_box, "", \&message_noselect_what_box) } 
    button_box_wizard();
    $up_box->show_all();
}

################################################  RESTORE  ################################################  

sub find_backup_to_restore {
	# fixme: 
	# faire test existance cd
	# faire reponse si non existance de  $path_to_find_restore
    my @list_backup;
    my @list_backup_tmp2;
    my $to_put;
    @sys_backuped = ();
    my @list_backup_tmp;
    my @user_backuped_tmp;

    @user_backuped = ();
    -d $path_to_find_restore and @list_backup_tmp2 = all($path_to_find_restore);
    foreach (@list_backup_tmp2) {
		s/\_base//gi;
		s/\_incr//gi;
		push @list_backup , $_;
    }
    if (grep /^backup_other/, @list_backup) { $other_backuped = 1 }
    if (grep /^backup_sys/, @list_backup) { $sys_backuped = 1 }
    foreach (grep /^backup_sys_/, @list_backup) {
		chomp;
		s/^backup_sys_//gi;
		s/.tar.gz$//gi;
		s/.tar.bz2$//gi;
 		my ($date, $heure) = /^(.*)_([^_]*)$/; 
		my $year = substr($date, 0, 4);
		my $month = substr($date, 4,  2);
		my $day =  substr($date, 6, 2);
		my $hour = substr($heure, 0,  2);
		my $min =  substr($heure, 2, 2);
		$to_put = "$day/$month/$year $hour:$min                   $_";
 		push @sys_backuped , $to_put;
    }
    $restore_step_sys_date  = $to_put;
    foreach (grep /^backup_user_/, @list_backup) {
		chomp;
		s/^backup_user_//gi;
		s/.tar.gz$//gi;
		s/.tar.bz2$//gi;
		my ($nom, $date, $heure) = /^(.*)_([^_]*)_([^_]*)$/;
		my $year = substr($date, 0, 4);
		my $month = substr($date, 4,  2);
		my $day =  substr($date, 6, 2);
		my $hour = substr($heure, 0,  2);
		my $min =  substr($heure, 2, 2);
#	my $to_put = "  $nom,  (date: $date, hour: $heure)";
		$to_put = "$_       user: $nom,   date: $day/$month/$year,   hour: $hour:$min";
		push @user_backuped , $to_put;
		grep (/^$nom$/, @user_list_backuped) or push @user_list_backuped, $nom;
    }
}

sub system_state {
    $system_state = ();

    if ($cfg_file_exist) { 
		$system_state .= _("\nBackup Sources: \n");
        $backup_sys and $system_state .= _("\n- System Files:\n"); 
        $backup_sys and $system_state .= "\t\t$_\n" foreach @sys_files; 
        $backup_user and $system_state .= _("\n- User Files:\n");
        $backup_user and $system_state .= "\t\t$_\n" foreach @user_list;
        @list_other and $system_state .= _("\n- Other Files:\n"); 
        @list_other and $system_state .= "\t\t$_\n" foreach @list_other;
        $where_hd and $system_state .= _("\n- Save on Hard drive on path : %s\n", $save_path);

		if (($del_hd_files) && (($where_cd) || ($where_tape) || ($where_net)) && ($daemon_media ne 'hd'))  {
			$system_state .= _("\n- Delete hard drive tar files after backup.\n");	
		}
		
		#- tape and CDRW share some features
		my $erase_media = 'NO';
		$erase_media = 'YES' if (($media_erase) && ($where_cd || $where_tape)); 
		$where_cd and $system_state .= _("\n- Burn to CD");
		$where_cd and $cdrw and $system_state .= _("RW");
		$where_cd and $system_state .= _(" on device : %s", $cd_device);
		$where_cd and $multi_session and $system_state .= _(" (multi-session)");
		$where_tape and $system_state .= _("\n- Save to Tape on device : %s", $tape_device);
		(($where_cd || $where_tape) && $media_erase) and $system_state .= _("\t\tErase=%s", $erase_media);
		($where_cd || $where_tape) and $system_state .= _("\n");
		
		$where_net and $system_state .= _("\n- Save via %s on host : %s\n", $net_proto, $host_name);
		$where_net and $system_state .= _("\t\t user name: %s\n\t\t on path: %s \n", $login_user, $host_path);
		$system_state .= _("\n- Options:\n");
		$backup_sys or $system_state .= _("\tDo not include System Files\n");
		
		if ($comp_mode) { 
			$system_state .= _("\tBackups use tar and bzip2\n"); 
		} else { 
			$system_state .= _("\tBackups use tar and gzip\n");
		}   

		$daemon_media and $system_state .= _("\n- Daemon (%s) include :\n", $when_space);
		($daemon_media eq 'hd') and $system_state .= _("\t-Hard drive.\n");    
		($daemon_media eq 'cd') and $system_state .= _("\t-CDROM.\n");
		($daemon_media eq 'tape') and $system_state .= _("\t-Tape \n");    
		($daemon_media eq 'ftp') and $system_state .= _("\t-Network by FTP.\n");    
		($daemon_media eq 'ssh') and $system_state .= _("\t-Network by SSH.\n");    
		($daemon_media eq 'rsync') and $system_state .= _("\t-Network by rsync.\n");    
		($daemon_media eq 'webdav') and $system_state .= _("\t-Network by webdav.\n");    
    } else {
    	$system_state = _("No configuration, please click Wizard or Advanced.\n");
    }
}

sub restore_state {
    my @tmp = split(' ', $restore_step_sys_date);
    $restore_state = _("List of data to restore:\n\n");
    if ($restore_sys) { $restore_state .= "- Restore System Files.\n";
			$restore_state .= "   - from date: $tmp[0] $tmp[1]\n";
	}
    if ($restore_user) { 
		$restore_state .= "- Restore User Files: \n" ;
		$restore_state .= "\t\t$_\n" foreach @user_list_to_restore2 ;
		push @user_list_to_restore, (split(',', $_))[0] foreach @user_list_to_restore2 ;
    }
    if ($restore_other) { 
		$restore_state .= "- Restore Other Files: \n";
		-f "$path_to_find_restore/list_other" and $restore_state .= "\t\t$_\n" foreach split("\n", cat_("$path_to_find_restore/list_other"));  
    }
    if ($restore_other_path) {
		$restore_state .= "- Path to Restore: $restore_path \n";
    }
}

sub select_most_recent_selected_of {
    my ($user_name) = @_;
    my @list_tmp2;
    my @tmp = sort @user_list_to_restore2;
    foreach (grep /$user_name\_/, sort @tmp) { push @list_tmp2 , $_ }
    return pop @list_tmp2;
}

sub select_user_data_to_restore {
    my $var_eq = 1;
    my @list_backup;
    my @list_tmp;
    my @list_tmp2;
    @user_list_to_restore = ();

    -d $path_to_find_restore and my @list_backup_tmp2 = grep /^backup/, all($path_to_find_restore);
    @list_tmp2 = @list_backup_tmp2;
    foreach (@list_backup_tmp2) {
		s/\_base//gi;
		s/\_incr//gi;
		push @list_backup , $_;
    }
    foreach my $var_tmp (@user_list_backuped) {
		$var_eq = 1;
		my $more_recent = (split(' ', select_most_recent_selected_of($var_tmp)))[0]; 
		foreach (grep /^backup\_user\_$var_tmp\_/, sort @list_backup) {
	    	s/.tar.gz//gi;
	    	s/.tar.bz2//gi;
	    	if ($more_recent) {
				if (/$more_recent/) {
		    		push @list_tmp , $_;
		    		$var_eq = 0;    
				} else {
					#- only if user asked for it - previously this was restoring everything (SB)
					my $tmp_name = $_;
					s/backup\_user\_//gi;
					foreach my $buff (@user_list_to_restore2) {
						if (index($buff, $_) >= 0) { 
							$var_eq and push @list_tmp , $tmp_name;
						}
					}
				}
	    	}
		}
    }
	foreach my $var_to_restore (@list_tmp) {
		$var_to_restore =~ s/backup_//gi;
		foreach my $var_exist (sort @list_tmp2) {
	    	if ($var_exist =~ /$var_to_restore/) {
				push @user_list_to_restore, $var_exist;
	    	}
		}
    }
    $DEBUG and print "real user list to restore:  $_ \n" foreach (@user_list_to_restore);
}

sub select_sys_data_to_restore {
    my $var_eq = 1;
    my @list_tmp;

    -d $path_to_find_restore and @list_tmp = grep /^backup/, all($path_to_find_restore);
    my @more_recent = split(' ', $restore_step_sys_date); 
    my $more_recent = pop @more_recent;
    foreach my $var_exist (grep /\_sys\_/, sort @list_tmp) {
		if ($var_exist =~ /$more_recent/) {
	    	push @sys_list_to_restore, $var_exist;
	    	$var_eq = 0; 
	    } else {  
	    	$var_eq and push @sys_list_to_restore, $var_exist; 
	    }
    }
    $DEBUG and print "sys list to restore: $_\n " foreach (@sys_list_to_restore);
}

sub show_backup_details {
	my ($function, $mode, $name) = @_;
	my $archive_file_detail;
	my $value;
	my $fixed_font = Gtk::Gdk::Font->load("-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*");
	my $command2;
	my $tarfile;
	
	# FIXME - only tar.gz at the moment	
	my $extension = ".tar.gz";
		    
	if ($mode eq "user") {
		#- we've only got a partial filename in this case
		$tarfile = "$path_to_find_restore/backup_*" . $name . $extension;
	}
	if ($mode eq "sys") {
		#- funky string here we need to use to reconstruct the filename
		my @flist = split(/[ \t,]+/, $name);
		$tarfile = "$path_to_find_restore/backup_*" .  $flist[2] . $extension;
	}
	my $command1 = "stat " . $tarfile;
	$command2 = "tar -tzvf " . $tarfile;
	
	open TMP, "$command1 2>&1 |";
	while ($value = <TMP>) {
		$archive_file_detail .= $value;			
	}
	close TMP;
	$archive_file_detail .= "\n\n";
	open TMP, "$command2 2>&1 |";
	while ($value = <TMP>) {
		#- drop the permissions display for the sake of readability	
		$archive_file_detail .= substr($value, 11);
	}
	close TMP;	

    my $text = new Gtk::Text(undef, undef);
    my $advanced_box_archive;
    $text->insert($fixed_font, undef, undef,$archive_file_detail);
    gtkpack($advanced_box,
	    $advanced_box_archive = gtkpack_(new Gtk::VBox(0,10),
			1, gtkpack_(new Gtk::HBox(0,0),
				1, $text, 
				0, new Gtk::VScrollbar($text->vadj),
			),
			0, gtkadd(gtkset_layout(new Gtk::HButtonBox, -spread),
				gtksignal_connect(new Gtk::Button(_("Done")), clicked => sub { 
					${$central_widget}->destroy(); 
					$function->() }),
			),
		)
	);
    $central_widget = \$advanced_box_archive;
    $up_box->show_all();
}

sub valid_backup_test {
    my (@files_list) = @_;
    @files_corrupted = ();
    my $is_corrupted = 0;
    foreach (@files_list) {
		#- let's quiet this down (SB)
		if (system("gzip -l $path_to_find_restore/$_ > /dev/null 2>&1") > 1) {
	    	push @files_corrupted, $_;
	    	$is_corrupted = -1;
		}
    }
    return $is_corrupted;
}

sub restore_aff_backup_problems {
    my $do_restore;
    my $button_restore;
    my $text = new Gtk::Text(undef, undef);
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');
    my $restore_pbs_state = _("List of data corrupted:\n\n");
    $restore_pbs_state .= "\t\t$_\n" foreach @files_corrupted ;
    $restore_pbs_state .= _("Please uncheck or remove it on next time.");
    gtktext_insert($text, $restore_pbs_state);
    button_box_restore_main();    

    gtkpack($advanced_box,
	    $do_restore = gtkpack_(new Gtk::VBox(0,10),
			0, new Gtk::VBox(0,10),
			1, gtkpack_(new Gtk::HBox(0, 15),	
				1, new Gtk::VBox(0, 5),	
				0, new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
				0, _("Backup files are corrupted"),
				1, new Gtk::VBox(0, 5),	
			),
			0, new Gtk::VBox(0,10),
			1, createScrolledWindow($text),
		),
	);
    button_box_restore_pbs_end();
    fonction_env(\$do_restore, \&restore_aff_backup_problems, "", "restore_pbs");
    $up_box->show_all();
}

sub restore_aff_result {
    my $do_restore;
    my $text = new Gtk::Text(undef, undef);
    gtktext_insert($text, $restore_state);
    button_box_restore_main();
    
    gtkpack($advanced_box,
	    $do_restore = gtkpack_(new Gtk::VBox(0,10),
				   1, new Gtk::VBox(0,10),
				   0, _("          All of your selected data have been          "),
				   0, _("          Successfuly Restored on %s       ", $restore_path),
				   1, new Gtk::VBox(0,10),
				   ),
	    );
    button_box_build_backup_end();
    $central_widget = \$do_restore;
    $up_box->show_all();

}

sub return_path {
    my ($username) = @_;
    my $usr;
    my $home_dir;
    my $passwdfile = "/etc/passwd";
    open (PASSWD, $passwdfile) or exit 1; 
    while (defined(my $line = <PASSWD>)) {
		chomp($line);
		($usr,$home_dir) = (split(/:/, $line))[0,5];
		last if ($usr eq $username); 
    }
    close (PASSWD);
    return $home_dir;
}

sub restore_backend {
    my $untar_cmd;
    my $exist_problem = 0;
    my $user_dir;
	my $tnom;
	my $username;
	my $theure2;
	
    if (grep /tar.gz$/, all($path_to_find_restore)) { 
    	$untar_cmd = 0; 
    } else { 
    	$untar_cmd = 1; 
    }
    
	if ($restore_user)  {
		select_user_data_to_restore();
	    if (valid_backup_test(@user_list_to_restore) == -1) {
			$exist_problem = 1;
			restore_aff_backup_problems();
	    } else { 
	    	foreach (@user_list_to_restore) {
		    	if ($backup_user_versions) {
					($tnom, $username, $theure2) = /^(\w+\_\w+\_user_)(.*)_(\d+\_\d+.*)$/;
				} else {
					($tnom, $username, $theure2) = /^(\w+\_user_)(.*)_(\d+\_\d+.*)$/;
				}

				$user_dir = return_path($username);
				-d $user_dir and rm_rf($user_dir) if ($remove_user_before_restore) ;

		    	$DEBUG and print "user name to restore: $username, user directory: $user_dir\n";		    
		    	$untar_cmd or system(" tar xfz  $path_to_find_restore/$_ -C $restore_path") ;
		    	$untar_cmd and system("/usr/bin/bzip2 -cd $path_to_find_restore/$_ | tar xf -C $restore_path ") ;
			}
			#- flush this out for another cycle (SB)
			@user_list_to_restore2 = ();
	    }
		
    }
    
	if ($restore_sys)   { 
		if ($backup_sys_versions) {
			select_sys_data_to_restore();
	    	if (valid_backup_test(@sys_list_to_restore) == -1) {
				$exist_problem = 1;
				restore_aff_backup_problems();
	    	} else {
				$untar_cmd or system("tar xfz $path_to_find_restore/$_  -C $restore_path ") foreach @sys_list_to_restore;
				$untar_cmd and system("/usr/bin/bzip2 -cd $path_to_find_restore/$_  | tar xf -C $restore_path ") foreach @sys_list_to_restore;
			}
		} else {
			$untar_cmd or system("tar xfz $path_to_find_restore/backup_sys.tar.gz  -C $restore_path ");
			$untar_cmd and system("/usr/bin/bzip2 -cd $path_to_find_restore/backup_sys.tar.bz2  | tar xf -C $restore_path ");
		}	    
    }
    if ($restore_other) { 
		$untar_cmd or system("tar xfz $path_to_find_restore/backup_other.tar.gz  -C $restore_path ");
		$untar_cmd and system("/usr/bin/bzip2 -cd $path_to_find_restore/backup_other.tar.bz2  | tar xf -C $restore_path ");
    }
    $exist_problem or restore_aff_result();
}

sub restore_do {
    if ($backup_bef_restore) {
		if ($restore_sys) { 
			$backup_sys = 1;
		} else { 
			$backup_sys = 0;
		}
		if ($restore_user) { 
	    	$backup_user = 1;
	    	@user_list = @user_list_to_restore;
		} else { 
			$backup_user = 0;
		}
		build_backup_status();
		read_conf_file();
		build_backup_files();
		$table->destroy();
    }
    restore_do2();
}

sub restore_do2 {
    my $do_restore;
    my $button_restore;
    my $text = new Gtk::Text(undef, undef);
    restore_state();
    gtktext_insert($text, $restore_state);
    button_box_restore_main();
    
    gtkpack($advanced_box,
	    $do_restore = gtkpack_(new Gtk::VBox(0,10),
				   0, _("         Restore Configuration       "),
				   1, createScrolledWindow($text),
				   ),
	    );
    button_box_restore_end();
    fonction_env(\$do_restore, \&restore_do2, \&restore_box, "restore");
    $up_box->show_all();
}

sub restore_step_other {
    my $retore_step_other;
    my $text = new Gtk::Text(undef, undef);
    my $other_rest = cat_("$path_to_find_restore/list_other");
    gtktext_insert($text, $other_rest); 
    gtkpack($advanced_box,
	    $retore_step_other = gtkpack_(new Gtk::VBox(0,10),
					  1, new Gtk::VBox(0,10),
					  1, createScrolledWindow($text),
			      0, my $check_restore_other_sure = new Gtk::CheckButton(_("OK to restore the other files.")),
					  1, new Gtk::VBox(0,10),
					  ),
	    );
    check_list([$check_restore_other_sure, \$restore_other]);
    fonction_env(\$retore_step_other, \&restore_step_other, \&restore_step2, "restore", \&restore_do);
    $up_box->show_all();
}

my %check_user_to_restore;
sub restore_step_user {
    my $retore_step_user;
    my @tmp_list = sort @user_backuped;
    @user_backuped = @tmp_list;
    gtkpack($advanced_box,
		$retore_step_user = gtkpack_(new Gtk::VBox(0,10),
			0, new Gtk::VBox(0,10),
			0, _("User list to restore (only the most recent date per user is important)"),
			1, createScrolledWindow(gtkpack__(new Gtk::VBox(0,0),
				map { my $name;
					my $var2;
					my $name_complet = $_;
					$name = (split(' ',$name_complet))[0];
					my @user_list_tmp;
					my $restore_row = new Gtk::HBox(0,5);
					my $b = new Gtk::CheckButton($name_complet);
					my $details = new Gtk::Button(" Details ");
					
					$restore_row->pack_start($b, 1, 1, 0);
					$restore_row->pack_end(new Gtk::VBox(1,5), 0, 0, 0);
					$restore_row->pack_end($details, 0, 0, 0);
					
					if (grep $name_complet, @user_list_to_restore2)  {
						gtkset_active($b, 1);
						$check_user_to_restore{$name_complet}[1] = 1;
					} else {
						gtkset_active($b, 0);
						$check_user_to_restore{$name_complet}[1] = 0;
					}
					$b->signal_connect(toggled => sub { 
						if (!$check_user_to_restore{$name_complet}[1] ) {
							$check_user_to_restore{$name_complet}[1] = 1;
							if (!grep (/$name/, @user_list_to_restore2)) {
								push @user_list_to_restore2, $name_complet }
							} else {
								$check_user_to_restore{$name_complet}[1] = 0;
								foreach (@user_list_to_restore2) {
									$var2 =  (split(' ',$_))[0];
									if ($name ne $var2) {
										push @user_list_tmp, $_;
									}
								}
								@user_list_to_restore2 = @user_list_tmp;
							}
					});
					$details->signal_connect('clicked', sub { 
						#- we're only passing a portion of the filename to
						#- the subroutine so we need to let it know this
						${$central_widget}->destroy();
						show_backup_details(\&restore_step_user, "user", $name);
					}); 	
					$restore_row } (@user_backuped) 
				),
			),
		),
	);
    if ($restore_other) { fonction_env(\$retore_step_user, \&restore_step_user, "", "restore", \&restore_step_other) }
	elsif ($restore_sys) { fonction_env(\$retore_step_user, \&restore_step_user, \&restore_step_sys, "restore", \&restore_step_other) }
    else{ fonction_env(\$retore_step_user, \&restore_step_user, \&restore_step2, "restore", \&restore_do) }
    $up_box->show_all();
}

sub restore_step_sys {
    my $restore_step_sys;
    my $combo_restore_step_sys = new Gtk::Combo();
    $combo_restore_step_sys->set_popdown_strings (@sys_backuped);

    gtkpack($advanced_box,
		$restore_step_sys = gtkpack_(new Gtk::VBox(0,10),
			1, new Gtk::VBox(0,10),
			0, my $check_backup_before = new Gtk::CheckButton(_("Backup the system files before:")),
			0, gtkpack_(new Gtk::HBox(0,10),
				1, _("please choose the date to restore"),
				0, $combo_restore_step_sys,
				0, my $details = new Gtk::Button(" Details "),
				0, new Gtk::HBox(0,10),
			),
			1, new Gtk::VBox(0,10),
			
		),
	);
    $combo_restore_step_sys->entry->signal_connect('changed', sub {
		$restore_step_sys_date = $combo_restore_step_sys->entry->get_text();
	});
	$details->signal_connect('clicked', sub { 
		#- we're only passing a portion of the filename to
		#- the subroutine so we need to let it know this
		my $backup_date = $combo_restore_step_sys->entry->get_text();
		${$central_widget}->destroy();
		show_backup_details(\&restore_step_sys, "sys", $backup_date);
	}); 	
    $combo_restore_step_sys->entry->set_text($restore_step_sys_date);
    fonction_env(\$restore_step_sys, \&restore_step_sys,  \&restore_step2, "restore");
    if ($restore_user) { fonction_env(\$restore_step_sys, \&restore_step_sys,  \&restore_step2, "restore", \&restore_step_user) }
    elsif ($restore_other){ fonction_env(\$restore_step_sys, \&restore_step_sys,  \&restore_step2, "restore", \&restore_step_other) }
    else{ fonction_env(\$restore_step_sys, \&restore_step_sys,  \&restore_step2, "restore", \&restore_do) }
    $up_box->show_all();
}

sub restore_other_media_hd {
    my ($previous_function) = @_,
    my $box_where_hd;
    my $button;
    my $adj = new Gtk::Adjustment 550.0, 1.0, 10000.0, 1.0, 5.0, 0.0;
    my ($pix_fs_map, $pix_fs_mask) = gtkcreate_png("ic82-dossier-32");
    
    gtkpack($advanced_box,
	    $box_where_hd = gtkpack_(new Gtk::VBox(0, 6),
			0, new Gtk::HSeparator,
			0, my $check_where_hd = new Gtk::CheckButton(_("Use Hard Disk to backup") ),
			0, new Gtk::HSeparator,
			0, gtkpack_(new Gtk::HBox(0,10),
		    	0, gtkset_sensitive(new Gtk::Label(_("Please enter the directory to save:")), $where_hd),
		    	1, new Gtk::VBox(0, 6),
		    	0, gtkset_usize (gtkset_sensitive($save_path_entry = new Gtk::Entry(), $where_hd), 152, 20),
		    	0, gtkset_sensitive($button = gtksignal_connect(new Gtk::Button(),  clicked => sub {
				filedialog_where_hd() }), $where_hd),
			),
	 		0, new Gtk::VBox(0, 6),
	 		0, gtkpack_(new Gtk::HBox(0,10),
	    		0, gtkset_sensitive(new Gtk::Label(_("Please enter the maximum size\n allowed for Drakbackup")),  $where_hd),
	    		1, new Gtk::VBox(0, 6),
	    		0, gtkset_usize (gtkset_sensitive(my $spinner = new Gtk::SpinButton($adj, 0, 0), $where_hd), 200, 20),
			),
	 		0, gtkpack_(new Gtk::HBox(0,10),
	    		1, new Gtk::VBox(0, 6),
	    		0, gtkset_sensitive(my $check_where_hd_quota = new Gtk::CheckButton(_("Use quota for backup files.")), $where_hd),
	    		0, new Gtk::VBox(0, 6),
			),
	 	),
	);
    check_list([$check_where_hd_quota, \$hd_quota]);
    gtksignal_connect(gtkset_active($check_where_hd, $where_hd), toggled => sub { 
	$where_hd = $where_hd ? 0 : 1;
	${$central_widget}->destroy();
	$current_widget->();
    });
    $button->add(gtkpack(new Gtk::HBox(0,10), new Gtk::Pixmap($pix_fs_map, $pix_fs_mask)));
    $save_path_entry->set_text($save_path);
    $save_path_entry->signal_connect('changed', sub { $save_path = $save_path_entry->get_text() });
    if ($previous_function) { fonction_env(\$box_where_hd, \&advanced_where_hd, \&$previous_function, "") }
    else { fonction_env(\$box_where_hd, \&advanced_where_hd, \&advanced_where, "") }
    $up_box->show_all();
}

sub restore_find_net {
    my ($previous_function) = @_,
    my $box_where_net;
    
    gtkpack($advanced_box,
	    $box_where_net = gtkpack_(new Gtk::HBox(0, 15),
			1, new Gtk::VBox(0, 5),
			1, gtkpack_(new Gtk::VBox(0, 15),	
				1, new Gtk::VBox(0, 5),
				1, new Gtk::VBox(0,10),
				1, gtksignal_connect(new Gtk::Button(_("FTP Connection")), clicked => sub { 
					$box_where_net->destroy(); 
					if ($previous_function) {
						message_underdevel();
					} else {
					}
				}),
				1, gtksignal_connect(new Gtk::Button(_("Secure Connection")),  clicked => sub {
					$box_where_net->destroy(); 
					if ($previous_function) {
					} else {
					}
				}),
				1, new Gtk::VBox(0, 5),
				1, new Gtk::VBox(0,10),
			),
			1, new Gtk::VBox(0, 5),	
		),
	);
    if ($previous_function) { fonction_env(\$box_where_net, \&advanced_where_net, \&$previous_function, "") }
    else { fonction_env(\$box_where_net, \&advanced_where_net, \&advanced_where, "") }
    $up_box->show_all();
}

sub restore_other_media {
    my $box_find_restore;
    my $button;
    my $adj = new Gtk::Adjustment 550.0, 1.0, 10000.0, 1.0, 5.0, 0.0;
    my ($pix_fs_map, $pix_fs_mask) = gtkcreate_png("ic82-dossier-32");
    
    gtkpack($advanced_box,
	    $box_find_restore = gtkpack_(new Gtk::VBox(0, 6),
	 0, new Gtk::HSeparator,
	 0, my $check_other_media_hd = new Gtk::CheckButton(_("Restore from Hard Disk.") ),
				 0, gtkpack_(new Gtk::HBox(0,10),
				 0, gtkset_sensitive(new Gtk::Label(_("Please enter the directory where backups are stored")), $other_media_hd),
				 1, new Gtk::VBox(0, 6),
				 0, gtkset_usize (gtkset_sensitive($restore_find_path_entry = new Gtk::Entry(), $other_media_hd), 152, 20),
				 0, gtkset_sensitive($button = gtksignal_connect(new Gtk::Button(),  clicked => sub {
				     filedialog_restore_find_path() }), $other_media_hd),
					     ),
					 1, new Gtk::VBox(0, 6),
#					 0, new Gtk::HSeparator,
# 					 0, my $check_other_media_net = new Gtk::CheckButton( _("Restore from Network") ),
# 					 0, new Gtk::VBox(0, 6),
# 					 1, gtkpack(new Gtk::HBox(0,10),
# 						    new Gtk::VBox(0, 6),
# 						    gtkset_sensitive(gtksignal_connect(new Gtk::Button("Network"),  clicked => sub {
# 							${$central_widget}->destroy();
# 							restore_find_net(\&restore_other_media);}), !$other_media_hd ),
# 						    new Gtk::VBox(0, 6),
# 						    ),
# 					 1, new Gtk::VBox(0, 6),
# 					 0, new Gtk::HSeparator,
					 0, new Gtk::VBox(0, 6),
					 ),
	    );
    gtksignal_connect(gtkset_active($check_other_media_hd, $other_media_hd), toggled => sub { 
	$other_media_hd = $other_media_hd ? 0 : 1;
	${$central_widget}->destroy();
	$current_widget->();
    });
#     gtksignal_connect(gtkset_active($check_other_media_net, !$other_media_hd), toggled => sub { 
# 	$other_media_hd = $other_media_hd ? 0 : 1;
# 	${$central_widget}->destroy();
# 	$current_widget->();
#    });
    $button->add(gtkpack(new Gtk::HBox(0,10), new Gtk::Pixmap($pix_fs_map, $pix_fs_mask)));
    $restore_find_path_entry->set_text($path_to_find_restore);
    $restore_find_path_entry->signal_connect('changed', sub { $path_to_find_restore = $restore_find_path_entry->get_text() });
#- not sure if this was the original intent - address the crash at "Next"
    fonction_env(\$box_find_restore, \&restore_other_media, \&restore_step2, "other_media", \&restore_do);
    $up_box->show_all();
}

sub restore_step2 {
    my $retore_step2;
    my $other_exist;
    my $sys_exist;
    my $user_exist;

    if (-f "$save_path/backup_other*") { $other_exist = 1 } 
    else { my $other_exist = 0; $restore_other = 0 }
    if (grep /\_sys\_/, grep /^backup/, all("$save_path/")) { $sys_exist = 1 } 
    else { my $sys_exist = 0; $restore_sys = 0 }
    if (grep /\_user\_/, grep /^backup/, all("$save_path/")) { $user_exist = 1 } 
    else { my $user_exist = 0; $restore_user = 0 }

# disabling this (sb) - very nicely wipes out your backup media if the user isn't very careful
# cycling through the GUI turns it back on for you!!!
#    $backup_sys_versions || $backup_user_versions and $backup_bef_restore = 1;

    gtkpack($advanced_box,
		$retore_step2 = gtkpack_(new Gtk::VBox(0,10),
			1, new Gtk::VBox(0,10),
			1, new Gtk::VBox(0,10),
			0, gtkpack_(new Gtk::HBox(0,10),
				0, my $check_restore_other_src = new Gtk::CheckButton(_("Select another media to restore from")),
				1, new Gtk::HBox(0,10),
				0, gtkset_sensitive(gtksignal_connect(new Gtk::Button(_("Other Media")), clicked => sub {
					${$central_widget}->destroy();
					restore_other_media();
				}), $restore_other_src),
			),
	 		0, gtkset_sensitive(my $check_restore_sys = new Gtk::CheckButton(_("Restore system")), $sys_exist),
	 		0, gtkset_sensitive(my $check_restore_user = new Gtk::CheckButton(_("Restore Users")), $user_exist),
	 		0, gtkset_sensitive(my $check_restore_other = new Gtk::CheckButton(_("Restore Other")), $other_exist),
	 		0, gtkpack_(new Gtk::HBox(0,10),
		     	0, my $check_restore_other_path = new Gtk::CheckButton(_("select path to restore (instead of /)")),
		     	1, new Gtk::HBox(0,10),
		    	0, gtkset_sensitive(my $restore_path_entry = new Gtk::Entry(), $restore_other_path),
			),
	 		0, gtkset_sensitive(my $check_backup_bef_restore = new Gtk::CheckButton(_("Do new backup before restore (only for incremental backups.)")), 
				$backup_sys_versions || $backup_user_versions),
	 		0, gtkset_sensitive(my $check_remove_user_dir = new Gtk::CheckButton(_("Remove user directories before restore.")), $user_exist),
	 		1, new Gtk::VBox(0,10),
	 	),
	);
	
	foreach  ([$check_restore_sys, \$restore_sys], 
	      [$check_backup_bef_restore, \$backup_bef_restore],
	      [$check_restore_user, \$restore_user],
	      [$check_remove_user_dir, \$remove_user_before_restore ],
	      [$check_restore_other, \$restore_other]) {
			my $ref = $_->[1];
			gtksignal_connect(gtkset_active($_->[0], ${$ref}), toggled => sub { 
	    		${$ref} = ${$ref} ? 0 : 1;
	    		if (!$restore_sys && !$restore_user && !$restore_other) { $next_widget = \&message_norestore_box }
	    		elsif ($restore_sys && $backup_sys_versions) { $next_widget = \&restore_step_sys }
	    		elsif ($restore_user) { $next_widget = \&restore_step_user }
	    		elsif ($restore_other){ $next_widget = \&restore_step_other }
	    		else{ $next_widget = \&restore_do }
			})
	}
    gtksignal_connect(gtkset_active($check_restore_other_path, $restore_other_path), toggled => sub {
		$restore_other_path = $restore_other_path ? 0 : 1;
		${$central_widget}->destroy();
		$current_widget->();
    });
    gtksignal_connect(gtkset_active($check_restore_other_src, $restore_other_src), toggled => sub {
		$restore_other_src = $restore_other_src ? 0 : 1;
		${$central_widget}->destroy();
		$current_widget->();
    });
    fonction_env(\$retore_step2, \&restore_step2, \&restore_box, "restore");
    if (!$restore_sys && !$restore_user && !$restore_other) { $next_widget = \&message_norestore_box }
    elsif ($restore_sys && $backup_sys_versions) { $next_widget = \&restore_step_sys }
    elsif ($restore_user) { $next_widget = \&restore_step_user }
    elsif ($restore_other){ $next_widget = \&restore_step_other }
    else{ $next_widget = \&restore_do }
    $restore_path_entry->set_text($restore_path); 
    $restore_path_entry->signal_connect('changed', sub { $restore_path = $restore_path_entry->get_text() });
    $up_box->show_all();
}

sub restore_box {
    my $retore_box;
    my $retore_box3;
    my $check_restore_sys;
    my $check_restore_user;
    my $check_restore_other;
    $path_to_find_restore = $save_path;
    find_backup_to_restore();
    button_box_restore_main();

    if ($other_backuped || $sys_backuped || @user_backuped) {
		gtkpack($advanced_box,
			$retore_box = gtkpack_(new Gtk::HBox(0,1),
				1, new Gtk::VBox(0,10),
				1, gtkpack_(new Gtk::VBox(0,10),
					1, new Gtk::VBox(0,10),
					1, new Gtk::VBox(0,10),
					1, gtksignal_connect(new Gtk::Button(_("Restore all backups")), clicked => sub { 
						$retore_box->destroy();
						button_box_restore();
						@user_list_to_restore2 = sort @user_backuped; 
						$restore_sys = 1;
						$restore_other = 1;
						$restore_user = 1;
						restore_do() 
					}),
					1, gtksignal_connect(new Gtk::Button(_("Custom Restore")), clicked => sub { 
						$retore_box->destroy();
						button_box_restore(); 
						restore_step2();
					}),
					1, new Gtk::VBox(0,10),
					1, new Gtk::VBox(0,10),
				),
				1, new Gtk::HBox(0,10),
			),
		);
    } else {
		gtkpack($advanced_box,
			$retore_box = gtkpack_(new Gtk::HBox(0,1),
				message_norestorefile_box(),
			),
		),
	}
    fonction_env(\$retore_box, \&restore_box, \&interactive_mode_box, "restore");
    $up_box->show_all();
}

################################################  BUTTON_BOX  ################################################  

# sub generic_button_box {
# # 1-n -  [button name, fonctions associated]
#     $button_box_tmp->destroy();
#     gtkpack($button_box,
# 	    $button_box_tmp = gtkpack_(new Gtk::HButtonBox,				         
# 				       0, gtksignal_connect(new Gtk::Button($_->[0]), clicked => sub {$_->[1]}) foreach (@_), 
# 				       } ), );    
# }

sub button_box_adv {
    $button_box_tmp->destroy();
    gtkpack($button_box,
		$button_box_tmp = gtkpack_(new Gtk::HButtonBox,
			0, gtksignal_connect(new Gtk::Button(_("Cancel")), clicked => sub { 
				${$central_widget}->destroy();
				interactive_mode_box();
			}),
			0, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub { 
				${$central_widget}->destroy();
				adv_help(\&$current_widget,$custom_help);
			}),
			1, new Gtk::HBox(0, 1),	
			0, gtksignal_connect(new Gtk::Button(_("Previous")), clicked => sub { 
				${$central_widget}->destroy();
				$previous_widget->();
			}),
			0, gtksignal_connect(new Gtk::Button(_("Save")), clicked => sub { 
				${$central_widget}->destroy();
				if (!check_pkg_needs()) {
					save_conf_file();
					$previous_widget->();
				}
			}),
		),
	);
}

# sub button_box_adv {
#     generic_button_box(["cancel", ${$central_widget}->destroy() ]);
# }

sub button_box_restore_main {
    $button_box_tmp->destroy();

    gtkpack($button_box,
	    $button_box_tmp = gtkpack_(gtkpack_(new Gtk::HButtonBox, 
			0, gtksignal_connect(new Gtk::Button(_("Cancel")), clicked => sub { 
				${$central_widget}->destroy(); 
				interactive_mode_box() 
			}),
			0, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub {
				${$central_widget}->destroy(); 
				adv_help(\&$current_widget, $custom_help);
			}),
			1, new Gtk::HBox(0, 1),	
			0, gtksignal_connect(new Gtk::Button(_("Previous")), clicked => sub { 
				${$central_widget}->destroy(); 
				interactive_mode_box() 
			}),
			0, gtksignal_connect(new Gtk::Button(_("Ok")), clicked => sub { 
				${$central_widget}->destroy(); 
				interactive_mode_box() }),
			),
		),
	);
}

sub button_box_backup_end {
    $button_box_tmp->destroy();

    gtkpack($button_box,
	    $button_box_tmp = gtkpack_(new Gtk::HButtonBox,
			0, gtksignal_connect(new Gtk::Button(_("Cancel")), clicked => sub { 
				${$central_widget}->destroy(); 
				interactive_mode_box() 
			}),
			0, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub { 
				${$central_widget}->destroy(); 
				adv_help(\&$current_widget,$custom_help) 
			}),
			1, new Gtk::HBox(0, 1),	
			0, gtksignal_connect(new Gtk::Button(_("Previous")), clicked => sub { 
				${$central_widget}->destroy(); 
				$previous_widget->() 
			}),
			0, gtksignal_connect(new Gtk::Button(_("Build Backup")), clicked => sub { 
				${$central_widget}->destroy();
				build_backup_status();
				build_backup_files(); 
			}),
		),
	);
}

sub button_box_wizard_end {
    $button_box_tmp->destroy();

    gtkpack($button_box,
		$button_box_tmp = gtkpack_(new Gtk::HButtonBox,
			0, gtksignal_connect(new Gtk::Button(_("Cancel")), clicked => sub { 
				${$central_widget}->destroy();
				interactive_mode_box();
			}),
			0, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub { 
				${$central_widget}->destroy();
				adv_help(\&$current_widget,$custom_help);
			}),
			1, new Gtk::HBox(0, 1),	
			0, gtksignal_connect(new Gtk::Button(_("Previous")), clicked => sub { 
				${$central_widget}->destroy(); 
				$previous_widget->();
			}),
			0, gtksignal_connect(new Gtk::Button(_("Save")), clicked => sub { 
				${$central_widget}->destroy();
				save_conf_file();
				interactive_mode_box();
			}),
		),
	);
}

sub button_box_restore_end {
    $button_box_tmp->destroy();

    gtkpack($button_box,
	    $button_box_tmp = gtkpack_(new Gtk::HButtonBox,
			0, gtksignal_connect(new Gtk::Button(_("Cancel")), clicked => sub { 
				${$central_widget}->destroy();
				interactive_mode_box();
			}),
			0, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub { 
				${$central_widget}->destroy();
				adv_help(\&$current_widget,$custom_help);
			}),
			1, new Gtk::HBox(0, 1),	
			0, gtksignal_connect(new Gtk::Button(_("Previous")), clicked => sub { 
				${$central_widget}->destroy();
				$previous_widget->();
			}),
			0, gtksignal_connect(new Gtk::Button(_("Restore")), clicked => sub { 
 				${$central_widget}->destroy();
				restore_backend(); 
			}),
		),
	);
}

sub button_box_build_backup_end {
    $button_box_tmp->destroy();

    gtkpack($button_box,
	    $button_box_tmp = gtkpack_(new Gtk::HButtonBox, 
			1, new Gtk::HBox(0, 5),	
			1, new Gtk::HBox(0, 5),	
			0, gtksignal_connect(new Gtk::Button(_("Ok")), clicked => sub { 
				${$central_widget}->destroy();
				interactive_mode_box();  
			}),
		),
	);
}

sub button_box_restore_pbs_end {
    $button_box_tmp->destroy();

    gtkpack($button_box,
		$button_box_tmp = gtkpack_(new Gtk::HButtonBox, 
			1, new Gtk::HBox(0, 5),	
			1, new Gtk::HBox(0, 5),	
			1, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub {
				${$central_widget}->destroy();
				adv_help(\&$current_widget,$custom_help);
			}),
			0, gtksignal_connect(new Gtk::Button(_("Ok")), clicked => sub { 
				${$central_widget}->destroy();
				interactive_mode_box();
			}),
		),
	);
}

sub button_box_build_backup {
    $button_box_tmp->destroy();

	gtkpack($button_box,
		$button_box_tmp = gtkpack_(new Gtk::HButtonBox,
			1, gtksignal_connect(new Gtk::Button(_("Cancel")), clicked => sub { 
				${$central_widget}->destroy(); 
				interactive_mode_box();
			}),
			1, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub {
				${$central_widget}->destroy();
				adv_help(\&$current_widget,$custom_help); 
			}),
			1, new Gtk::HBox(0, 0),
			0, gtksignal_connect(new Gtk::Button(_("Previous")), clicked => sub { 
				${$central_widget}->destroy();
				$previous_widget->();
			}),
			1, gtksignal_connect(new Gtk::Button(_("Next")), clicked => sub {
				${$central_widget}->destroy();
				$next_widget->();
			}),
		),
	);
}

sub button_box_restore {

    $button_box_tmp->destroy();

    gtkpack($button_box,
	    $button_box_tmp = gtkpack_(new Gtk::HButtonBox,
			1, gtksignal_connect(new Gtk::Button(_("Cancel")), clicked => sub { 
				${$central_widget}->destroy(); 
				interactive_mode_box();  
			}),
			1, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub {
				${$central_widget}->destroy(); 
				adv_help(\&$current_widget,$custom_help);
			}),
			1, new Gtk::HBox(0, 0),
			0, gtksignal_connect(new Gtk::Button(_("Previous")), clicked => sub { 
				${$central_widget}->destroy(); 
				$previous_widget->(); 
			}),
			1, gtksignal_connect(new Gtk::Button(_("Next")), clicked => sub {
				${$central_widget}->destroy(); 
				$next_widget->();
			}),
		),
	);
}

sub button_box_wizard {
    $button_box_tmp->destroy();

    gtkpack($button_box,
	    $button_box_tmp = gtkpack_(new Gtk::HButtonBox,
			1, gtksignal_connect(new Gtk::Button(_("Cancel")), clicked => sub { 
				${$central_widget}->destroy(); 
				interactive_mode_box() 
			}),
			1, gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub {
				${$central_widget}->destroy(); 
				adv_help(\&$current_widget,$custom_help) 
			}),
			1, new Gtk::HBox(0, 0),
			0, gtksignal_connect(new Gtk::Button($next_widget ? _("Previous") : _("OK")), clicked => sub { 
				${$central_widget}->destroy();
				$previous_widget ? $previous_widget->() : $next_widget->();
			}),
			if_($next_widget, 1, gtksignal_connect(new Gtk::Button(_("Next")), clicked => sub {
				${$central_widget}->destroy();
				$next_widget ? $next_widget->() : $previous_widget->();
			})),
		),
	);
}

sub button_box_main {
    $button_box_tmp->destroy();

    gtkpack($button_box,
	    $button_box_tmp = gtkpack(gtkset_layout(new Gtk::HButtonBox, -start),
			gtksignal_connect(new Gtk::Button(_("Close")), clicked => sub {  
				Gtk->main_quit() 
			}),
			gtksignal_connect(new Gtk::Button(_("Help")), clicked => sub { 
				${$central_widget}->destroy(); 
				adv_help(\&interactive_mode_box,$custom_help) 
			}),
		),
	);
}

################################################  MESSAGES  ################################################  

sub message_norestorefile_box {
    $box2->destroy();
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');
    
    gtkadd($advanced_box,
	   $box2 = gtkpack_(new Gtk::HBox(0, 15),	
			    1, new Gtk::VBox(0, 5),	
			    1, gtkpack(new Gtk::HBox(0, 15),	
				       new Gtk::VBox(0, 5),	
				       new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
			     _("Please Build backup before to restore it...\n or verify that your path to save is correct."),
				       new Gtk::VBox(0, 5),	
				       ),
			    1, new Gtk::VBox(0, 5),	
			    ),
	   );
    button_box_restore_main();
    $central_widget = \$box2;
    $up_box->show_all();    
}

sub send_mail_pb {
    $table->destroy();
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');
    
    gtkadd($advanced_box,
	   $box2 = gtkpack_(new Gtk::HBox(0, 15),	
			    1, new Gtk::VBox(0, 5),	
			    0, gtkpack_(new Gtk::HBox(0, 15),	
					0, new Gtk::VBox(0, 5),	
					0, new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
					0, _("Error duringq sendmail
  your report mail was not sent
  Please configure sendmail"),
					),
			    0, new Gtk::VBox(0, 5),	
			    1, new Gtk::VBox(0, 5),	
			    ),
	   );
    button_box_restore_main();
    $custom_help = "mail_pb";
    $central_widget = \$box2;
    $up_box->show_all();    
}

sub install_rpm {
    my ($previous_function) = @_;
	#- catch a crash when calling help
	#- this GUI control technique is kind of funky
	if ($previous_function eq '') {
		$previous_function = \&advanced_where;
	}
    my $box_what_user;
    gtkpack($advanced_box,
	    $box_what_user = gtkpack_(new Gtk::VBox(0, 15),
			0, _("The following packages need to be installed:\n @list_of_rpm_to_install"),
				0, new Gtk::HSeparator,
				0, gtksignal_connect(new Gtk::Button(_("Install")), clicked => sub {  
					system("urpmi --X @list_of_rpm_to_install"); 
					${$central_widget}->destroy();
					$previous_widget->();		  
				}),
		),
	);
    fonction_env(\$box_what_user, \&install_rpm, \&$previous_function, "what");
    $up_box->show_all();
}

sub client_ftp_pb {
    $table->destroy();
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');
    
    gtkadd($advanced_box,
	   $box2 = gtkpack_(new Gtk::HBox(0, 15),	
			    1, new Gtk::VBox(0, 5),	
			    0, gtkpack_(new Gtk::HBox(0, 15),	
					0, new Gtk::VBox(0, 5),	
					0, new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
					0, _("Error during sending file via FTP.
 Please correct your FTP configuration."),
					),
			    0, new Gtk::VBox(0, 5),	
			    1, new Gtk::VBox(0, 5),	
			    ),
	   );
    button_box_restore_main();
    $custom_help = "mail_pb";
    $central_widget = \$box2;
    $up_box->show_all();    
}

sub message_norestore_box {
    $box2->destroy();
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');
    
    gtkadd($advanced_box,
	   $box2 = gtkpack_(new Gtk::HBox(0, 15),	
			    1, new Gtk::VBox(0, 5),	
			    1, gtkpack(new Gtk::HBox(0, 15),	
				       new Gtk::VBox(0, 5),	
				       new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
				       _("Please select data to restore..."),
				       new Gtk::VBox(0, 5),	
				       ),
			    1, new Gtk::VBox(0, 5),	
			    ),
	   );
    button_box_restore_main();
    $central_widget = \$box2;
    $up_box->show_all();    
}

sub message_noselect_box {
    $box2->destroy();
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');
    
    gtkadd($advanced_box,
	   $box2 = gtkpack_(new Gtk::HBox(0, 15),	
			    1, new Gtk::VBox(0, 5),	
			    1, gtkpack(new Gtk::HBox(0, 15),	
				       new Gtk::VBox(0, 5),	
				       new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
				       _("Please select media for backup..."),
				       new Gtk::VBox(0, 5),	
				       ),
			    1, new Gtk::VBox(0, 5),	
			    ),
	   );
    $previous_widget = \&wizard_step2;
    $next_widget = \&wizard_step2;
    $central_widget = \$box2;
    $up_box->show_all();    
}

sub message_noselect_what_box {
    $box2->destroy();
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');
    
    gtkadd($advanced_box,
	   $box2 = gtkpack_(new Gtk::HBox(0, 15),	
			    1, new Gtk::VBox(0, 5),	
			    1, gtkpack(new Gtk::HBox(0, 15),	
				       new Gtk::VBox(0, 5),	
				       new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
				       _("Please select data to backup..."),
				       new Gtk::VBox(0, 5),	
				       ),
			    1, new Gtk::VBox(0, 5),	
			    ),
	   );
    $previous_widget = \&wizard;
    $next_widget = \&wizard;
    $central_widget = \$box2;
    $up_box->show_all();    
}

sub message_noconf_box {
    $box2->destroy();
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');

    gtkadd($advanced_box,
	   $box2 = gtkpack_(new Gtk::HBox(0, 15),	
			    1, new Gtk::VBox(0, 5),	
			    1, gtkpack(new Gtk::HBox(0, 15),	
				       new Gtk::VBox(0, 5),	
				       new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
				       _("No configuration file found \nplease click Wizard or Advanced."),
				       new Gtk::VBox(0, 5),	
				       ),
			    1, new Gtk::VBox(0, 5),	
			    ),
	   );
    button_box_restore_main();
    $central_widget = \$box2;
    $up_box->show_all();    
}

sub message_underdevel {
    $box2->destroy();
    my ($pix_warn_map, $pix_warn_mask) = gtkcreate_png('warning');

    gtkadd($advanced_box,
	   $box2 = gtkpack_(new Gtk::HBox(0, 15),	
			    1, new Gtk::VBox(0, 5),	
			    1, gtkpack(new Gtk::HBox(0, 15),	
				       new Gtk::VBox(0, 5),	
				       new Gtk::Pixmap($pix_warn_map, $pix_warn_mask),
				       _("Under Devel ... please wait."),
				       new Gtk::VBox(0, 5),	
				       ),
			    1, new Gtk::VBox(0, 5),	
			    ),
	   );
    $central_widget = \$box2;
    $up_box->show_all();    
}

################################################  BUILD_BACKUP  ################################################  

sub progress {
    my ($progressbar, $incr, $label_text) = @_;
    my($new_val) = $progressbar->get_current_percentage;
    $new_val += $incr;
    if ($new_val > 1) { $new_val = 1 }
    $progressbar->update($new_val);
    $progressbar->{label}->set($label_text);
    Gtk->main_iteration while Gtk->events_pending;
}

sub find_backup_to_put_on_cd {
    my @list_backup_tmp;
    my @data_backuped_tmp;
    @data_backuped = ();
    -d $save_path and my @list_backup = all($save_path);
    foreach (grep /^backup_other/, @list_backup) {
	$other_backuped = 1;
	chomp;
	my $tail  = (split(' ',`du $save_path/$_`))[0] ;
	s/^backup_other//gi;
	s/.tar.gz$//gi;
	s/.tar.bz2$//gi;
	my @user_date = split(/\_20/,$_);
	my @user_date2 = split(/\_/,$user_date[1]);
	my $to_put = "  other_data,          (tail: $tail ko, date: 20$user_date2[0], hour: $user_date2[1])";
	push @data_backuped , $to_put;
    }
    foreach (grep /_sys_/, @list_backup) {
	$sys_backuped = 1;
	chomp;
	my $tail  = (split(' ',`du $save_path/$_`))[0] ;
	s/^backup_other//gi;
	s/.tar.gz$//gi;
	s/.tar.bz2$//gi;
	my @user_date = split(/\_20/,$_);
	my @user_date2 = split(/\_/,$user_date[1]);
	my $to_put = "  system,          (tail: $tail ko, date: 20$user_date2[0], hour: $user_date2[1])";
	push @data_backuped , $to_put;
    }
    foreach (grep /user_/, @list_backup) {
	chomp;
	my $tail  = (split(' ',`du $save_path/$_`))[0] ;
	s/^backup_user_//gi;
	s/.tar.gz$//gi;
	s/.tar.bz2$//gi;
	my @user_date = split(/\_20/,$_);
	my @user_date2 = split(/\_/,$user_date[1]);
	my $to_put = "  $user_date[0],          (tail: $tail ko, date: 20$user_date2[0], hour: $user_date2[1])";
	push @data_backuped , $to_put;
    }
}

sub build_backup_status {
    $pbar =   new Gtk::ProgressBar;
    $pbar1 =  new Gtk::ProgressBar;
    $pbar2 =  new Gtk::ProgressBar;
    $pbar3 =  new Gtk::ProgressBar;
    $stext = new Gtk::Label("");
	button_box_build_backup_end();
    gtkpack($advanced_box,
		$table = gtkpack(new Gtk::VBox(0, 5),
	    	create_packtable({ col_spacings => 10, row_spacings => 5 },
				[""], 
				[""], 
				[""], 
				[""], 
				[""], 
				[""], 
				[""], 
				[_("Backup system files")],
				[ $pbar, $pbar->{label} = new Gtk::Label(' ') ],
				[_("Backup user files") ],
				[$pbar1,$pbar1->{label} = new Gtk::Label(' ') ],
				[_("Backup other files")],
				[ $pbar2, $pbar2->{label} = new Gtk::Label(' ') ],
				[_("Total Progress")],
				[$pbar3,$pbar3->{label} = new Gtk::Label(' ') ],
			),
			$stext,
		),
	);
    $custom_help = "options";
    $central_widget = \$table;
    $up_box->show_all();
    Gtk->main_iteration while Gtk->events_pending;
}


sub build_backup_ftp_status {
    $pbar =   new Gtk::ProgressBar;
    $pbar3 =  new Gtk::ProgressBar;
    $table->destroy();
    button_box_build_backup_end();
    $pbar->set_value(0);
    $pbar3->set_value(0);


    gtkpack($advanced_box,
		$table =  gtkpack_(new Gtk::VBox(0, 15),
			1, _("files sending by FTP"),
			1, new Gtk::VBox(0, 15),
			1, create_packtable ({ col_spacings => 10, row_spacings => 5 },
#						    [ $pbar->set_show_text( $show_text );
				[_("Sending files...")],
				[""], 
				[ $pbar->{label} = new Gtk::Label(' ') ],
				[ $pbar],
				[""], 
				[_("Total Progress")],
				[ $pbar3->{label} = new Gtk::Label(' ') ],
				[$pbar3],
			),
			1, new Gtk::VBox(0, 15),
		),
	);
    $custom_help = "options";
    $central_widget = \$table;
    $up_box->show_all();
    Gtk->main_iteration while Gtk->events_pending;
}

sub build_backup_box_see_conf {
    my $box2;    
    my $text = new Gtk::Text(undef, undef);
    system_state();
    gtktext_insert($text, $system_state);
    button_box_restore_main();

    gtkpack($advanced_box,
	    $box2 =  gtkpack_(new Gtk::HBox(0, 15),	
			1, gtkpack_(new Gtk::VBox(0,10),
				0, _("Drakbackup Configuration"),
				1, createScrolledWindow($text),
			),
		),
	);
    button_box_backup_end();
    $custom_help = "";
    $central_widget = \$box2;
    $current_widget = \&build_backup_box_see_conf;
    $previous_widget =\&build_backup_box;
    $up_box->show_all();
}

sub build_backup_box_progress {
#    build_backup_files(); 
}

sub aff_total_tail {
    my @toto ;
    my $total = 0;
    push @toto, (split (",", $_))[1]  foreach @list_to_build_on_cd;
    foreach (@toto) {
	s/\s+\(tail://gi;
	s/\s+//gi;
	s/ko//gi;
	$total += $_; 
	}
    $label_tail->set("total tail: $total ko");
}

sub build_backup_box {
    $box2->destroy();
    my ($pix_cd_map, $pix_cd_mask) = gtkcreate_png("ic82-CD-40");
    my ($pix_hd_map, $pix_hd_mask) = gtkcreate_png("ic82-discdurwhat-40");
    my ($pix_options_map, $pix_options_mask) = gtkcreate_png("ic82-moreoption-40");

    gtkadd($advanced_box,
		$box2 = gtkpack_(new Gtk::HBox(0, 15),	
			1, new Gtk::VBox(0, 5),	
			1, gtkpack_(new Gtk::VBox(0, 15),	
				1, new Gtk::VBox(0, 5),	
				1, gtksignal_connect(my $button_from_conf_file = new Gtk::Button(), clicked => sub { 
					${$central_widget}->destroy();
					build_backup_box_see_conf();
				}),
 				0, new Gtk::VBox(0, 5),	
				1, gtksignal_connect(my $button_see_conf = new Gtk::Button(), clicked => sub { 
					${$central_widget}->destroy();
					build_backup_box_see_conf();
				}),
				1, new Gtk::VBox(0, 5),	
			),
			1, new Gtk::VBox(0, 5),	
		),
	 );

    $button_from_conf_file->add(gtkpack(new Gtk::HBox(0,10),
		new Gtk::Pixmap($pix_hd_map, $pix_hd_mask),
		new Gtk::Label(_("Backup Now from configuration file")),
		new Gtk::HBox(0, 5)
	));
    $button_see_conf->add(gtkpack(new Gtk::HBox(0,10),
		new Gtk::Pixmap($pix_options_map, $pix_options_mask),
		new Gtk::Label(_("View Backup Configuration.")),
		new Gtk::HBox(0, 5)
	));

    button_box_restore_main();
    fonction_env(\$box2, \&build_backup_box, \&interactive_mode_box, "options");
    $up_box->show_all();    
}

################################################  INTERACTIVE  ################################################  

sub interactive_mode_box {
    $box2->destroy();

    read_conf_file();
    gtkadd($advanced_box,
		$box2 = gtkpack_(new Gtk::HBox(0, 15),	
			1, new Gtk::VBox(0, 5),	
			1, gtkpack_(new Gtk::VBox(0, 15),	
				1, new Gtk::VBox(0, 5),	
				1, gtksignal_connect(new Gtk::Button(_("Wizard Configuration")), clicked => sub { 
					${$central_widget}->destroy();
					read_conf_file();
					wizard(); 
				}),
				1, gtksignal_connect(new Gtk::Button(_("Advanced Configuration")), clicked => sub { 
					button_box_adv();
					${$central_widget}->destroy();
					advanced_box(); 
				}),
				1, gtksignal_connect(new Gtk::Button(_("Backup Now")), clicked => sub { 
					${$central_widget}->destroy();
					if ($cfg_file_exist) { 
						build_backup_box();
					} else { 
						message_noconf_box();
					}
				}),
				1, gtksignal_connect(new Gtk::Button(_("Restore")), clicked => sub {
					${$central_widget}->destroy(); 
					restore_box();
				}),
				1, new Gtk::VBox(0, 5),	
			),
			1, new Gtk::VBox(0, 5),	
		),
	);
    button_box_main();
    $custom_help = "main";
    $central_widget = \$box2;
    $up_box->show_all();    
}

sub interactive_mode {
    $interactive = 1;
    my $box;
    $window1 = $::isEmbedded ? new Gtk::Plug ($::XID) : new Gtk::Window -toplevel;
    init Gtk;
    $window1->signal_connect (delete_event => sub { Gtk->exit(0) });
    $window1->set_position(1);
    $window1->set_title(_("Drakbackup"));
    my ($pix_u_map, $pix_u_mask) = gtkcreate_png("drakbackup.540x57");
    read_conf_file();     

    gtkadd($window1,
		gtkpack(new Gtk::VBox(0,0),
			gtkpack(gtkset_usize ($up_box = new Gtk::VBox(0, 5), 540, 400),
				$box = gtkpack_(new Gtk::VBox(0, 3),
					0,  new Gtk::Pixmap($pix_u_map, $pix_u_mask),
					1, gtkpack_(new Gtk::HBox(0, 3),
				  		1, gtkpack_(new Gtk::HBox(0, 15),	
							0, new Gtk::HBox(0, 5),	
					    	1, $advanced_box = gtkpack_(new Gtk::HBox(0, 15),	
								1, $box2 = gtkpack_(new Gtk::VBox(0, 15),),
							),
					    	0, new Gtk::HBox(0, 5),	
						),
					),
					0, new Gtk::HSeparator,
					0, $button_box = gtkpack(new Gtk::VBox(0, 15),	
						$button_box_tmp = gtkpack(new Gtk::VBox(0, 0),),
					),
				),
			),
		),
	);
    interactive_mode_box();
    $custom_help = "main";
    button_box_main();
    $central_widget = \$box2;
    $window1->show_all;
    $window1->realize;
    $window1->show_all();    
    Gtk->main;
    Gtk->exit(0);
}

################################################  HELP & ABOUT  ################################################  


sub adv_help {
    my ($function, $custom_help) = @_,
    my $text = new Gtk::Text(undef, undef);
    my $advanced_box_help;

################################################  help definition ##############################################

    my %custom_helps = (
			"options" => 
			_("options description:

 In this step Drakbackup allow you to change:

 - The compression mode:
    
      If you check bzip2 compression, you will compress
      your data better than gzip (about 2-10 %).
      This option is not checked by default because
      this compression mode needs more time (about 1000% more).
 
 - The update mode:

      This option will update your backup, but this
      option is not really useful because you need to
      decompress your backup before you can update it.
      
 - the .backupignore mode:

      Like with cvs, Drakbackup will ignore all references
      included in .backupignore files in each directories.
      ex: 
         #> cat .backupignore
         *.o
         *~
         ...
      

"), 
			"mail_pb" =>
			_("
 Some errors during sendmail are caused by 
 a bad configuration of postfix. To solve it you have to
 set myhostname or mydomain in /etc/postfix/main.cf

"),

			"what" =>
			_("options description:

 - Backup system files:
       
	This option allows you to backup your /etc directory,
	which contains all configuration files. Please be
	careful during the restore step to not overwrite:
		/etc/passwd 
		/etc/group 
		/etc/fstab

 - Backup User files: 

	This option allows you select all users that you want 
	to backup.
	To preserve disk space, it is recommended that you 
	do not include web browser's cache.

 - Backup Other files: 

	This option allows you to add more data to save.
	With the other backup it's not possible at the 
	moment to select incremental backup.		
 
 - Incremental Backups:

	The incremental backup is the most powerful 
	option for backup. This option allows you 
	to backup all your data the first time, and 
	only the changed afterward.
	Then you will be able, during the restore
	step, to restore your data from a specified
	date.
	If you have not selected this option all
	old backups are deleted before each backup.    


"), 
			"restore" =>
			_("restore description:
 
Only the most recent date will be used ,because with incremental 
backups it is necesarry to restore one by one each older backups.

So if you don't like to restore a user please unselect all his
check box.

Otherwise, you are able to select only one of this

 - Incremental Backups:

	The incremental backup is the most powerful
	option to use backup, this option allow you 
	to backup all your data the first time, and 
	only the changed after.
	So you will be able during the restore
	step, to restore your data from a specified
	date.
	If you have not selected this options all
	old backups are deleted before each backup.    



"),  
			"main" =>
			_(" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\@epita.fr>") .
"\n" .
_(" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\@mandrakesoft.com>") .
"\n\n" .
_(" This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2, or (at your option)
 any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.") .
"\n\n                                            _____________________\n" .
_("Description:

  Drakbackup is used to backup your system.
  During the configuration you can select: 
	- System files, 
	- Users files, 
	- Other files.
	or All your system ...  and Other (like Windows Partitions)

  Drakbackup allows you to backup your system on:
	- Harddrive.
	- NFS.
	- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).
	- FTP.
	- Rsync.
	- Webdav.
	- Tape.

  Drakbackup allows you to restore your system to
  a user selected directory.

  Per default all backup will be stored on your
  /var/lib/drakbackup directory

  Configuration file:
	/etc/drakconf/drakbackup/drakbakup.conf


Restore Step:
  
  During the restore step, DrakBackup will remove 
  your original directory and verify that all 
  backup files are not corrupted. It is recommended 
  you do a last backup before restoring.


"),
			"ftp" =>
			_("options description:

Please be careful when you are using ftp backup, because only 
backups that are already built are sent to the server.
So at the moment, you need to build the backup on your hard 
drive before sending it to the server.

"),
			"restore_pbs" =>
			_("
Restore Backup Problems:

During the restore step, Drakbackup will verify all your
backup files before restoring them.
Before the restore, Drakbackup will remove 
your original directory, and you will loose all your 
data. It is important to be careful and not modify the 
backup data files by hand.
")
);

    my $default_help = _(" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\@epita.fr>") .
"\n" . 
_(" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\@mandrakesoft.com>") .
"\n\n" .
_(" This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2, or (at your option)
 any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.") .
"\n\n                                            _____________________\n" .
_("Description:

  Drakbackup is used to backup your system.
  During the configuration you can select 
	- System files, 
	- Users files, 
	- Other files.
	or All your system ...  and Other (like Windows Partitions)

  Drakbackup allows you to backup your system on:
	- Harddrive.
	- NFS.
	- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).
	- FTP.
	- Rsync.
	- Webdav.
	- Tape.

  Drakbackup allows you to restore your system to
  a user selected directory.

  Per default all backup will be stored on your
  /var/lib/drakbackup directory

  Configuration file:
	/etc/drakconf/drakbackup/drakbakup.conf

Restore Step:
  
  During the restore step, Drakbackup will remove
  your original directory and verify that all
  backup files are not corrupted. It is recommended
  you do a last backup before restoring.
 

");

################################################  help function ##############################################

    gtktext_insert($text, $custom_helps{$custom_help} || $default_help);
    gtkpack($advanced_box,
	    $advanced_box_help = gtkpack_(new Gtk::VBox(0,10),
					  1, gtkpack_(new Gtk::HBox(0,0),
						      1, $text, 
						      0, new Gtk::VScrollbar($text->vadj),
						      ),
					  0, gtkadd(gtkset_layout(new Gtk::HButtonBox, -spread),
						    gtksignal_connect(new Gtk::Button(_("OK")), clicked => sub { 
							${$central_widget}->destroy(); $function->() }),
						    ),
					  )
	    );
    $central_widget = \$advanced_box_help;
    $up_box->show_all();
}

sub to_ok {
    $sav_next_widget = $next_widget;
    $next_widget = undef;
    button_box_wizard();
}

sub to_normal {
    $next_widget = $sav_next_widget;
}
ref='#n8836'>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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1999 MandrakeSoft.
# Alexander Bokovoy <ab@avilink.net>, 2000
# Maryia Davidouskaia <maryia@scientist.com>, 2000
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
"POT-Creation-Date: 2003-09-09 17:07+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Scanning partitions to find mount points"
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
"0/1 for Local Config...\n"
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "\t\tErase=%s"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Differential backups only save files that have changed or are new since the "
"original 'base' backup."
msgstr ""

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "network printer port"
msgstr "Сеткавы прынтэр (TCP/Socket)"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Please insert floppy disk:"
msgstr "Устаўце дыскету ў дыскавод %s"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "DrakTermServ"
msgstr ""

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Таблiца размяшчэння рэзервовага дыску мае iншы памер\n"
"Працягваць далей?"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Which username"
msgstr "Iмя карыстальнiку:"

#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Якi тып пункта жадаеце дадаць?"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Restore partition table"
msgstr "Дадатковая таблiца раздзелаў"

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Configure hostname..."
msgstr "Настройка мышы"

#: ../../printer/cups.pm:1
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP сервера SMB"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Post-install configuration"
msgstr "Настройка пасля ўсталявання"

#: ../../standalone/drakperm:1
#, c-format
msgid ""
"The current security level is %s\n"
"Select permissions to see/edit"
msgstr ""

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``%s'' instead"
msgstr "Выкарыстоўвайце ``%s'' замест"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Type"
msgstr "Тып"

#: ../../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 ""

#: ../../lang.pm:1
#, c-format
msgid "Sri Lanka"
msgstr "Шры Ланка"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"

#: ../../lang.pm:1
#, c-format
msgid "Central African Republic"
msgstr "Цэнтральная Афрыканская Рэспубліка"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
msgstr "Прылада-шлюз"

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Advanced preferences"
msgstr "Заканчэнне настройкi"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Net Method:"
msgstr ""

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Ethernetcard"
msgstr "цiкава"

#: ../../security/l10n.pm:1
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr ""

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "no"
msgstr "Iнфармацыя"

#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Auto-detect"
msgstr "Аддалены прынтэр"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Interface:"
msgstr ""

#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
msgstr "Клас усталявання"

#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
"\n"
"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."

#: ../../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 ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Belarus"
msgstr "Беларускі"

#: ../../partition_table.pm:1
#, c-format
msgid "Error writing to file %s"
msgstr "Памылка запiсу ў файл %s"

#: ../../security/l10n.pm:1
#, c-format
msgid "Report check result to syslog"
msgstr ""

#: ../../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 ""
"ampd выкарыстоўваецца для адслежвання статусу батарэi i вядзення "
"статыстыкi.\n"
"Яго можна выкарыстоўваць для выключэння машыны пры нiзкiм зарадзе батарэi."

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use tape to backup"
msgstr "Дрэнны файл рэзервовай копii"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be installed"
msgstr "Наступныя пакеты будуць даданы да сiстэмы"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "CUPS configuration"
msgstr "Настройка"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Total progress"
msgstr "Праверка партоў"

#: ../../lang.pm:1
#, c-format
msgid "Hong Kong"
msgstr "Сян Ган"

#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving"
msgstr "Пераносім"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "yes"
msgstr "Так"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "("
msgstr ""

#: ../../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 ""

#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
msgid ")"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Lebanon"
msgstr "Лібанон"

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

#: ../../services.pm:1
#, fuzzy, c-format
msgid "Stop"
msgstr "Сектар"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Edit selected host"
msgstr "Выдалiць чаргу друку"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "No CD device defined!"
msgstr "Абярыце файл"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "\tUse .backupignore files\n"
msgstr "Дрэнны файл рэзервовай копii"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bulgarian (phonetic)"
msgstr "Армянскi (фанетычны)"

#: ../../standalone/drakpxe:1
#, c-format
msgid "The DHCP start ip"
msgstr ""

#: ../../Xconfig/card.pm:1
#, c-format
msgid "256 kB"
msgstr "256 Кб"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Don't rewind tape after backup"
msgstr "Дрэнны файл рэзервовай копii"

#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
msgstr "Галоўныя опцыi пачатковага загрузчыку"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""

#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Tape"
msgstr "Тып: "

#: ../../lang.pm:1
#, c-format
msgid "Malaysia"
msgstr "Малазыя"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Scanning network..."
msgstr "Якi тып вашага ISDN злучэння?"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""

#: ../../standalone/drakedm:1
#, fuzzy, c-format
msgid "The change is done, do you want to restart the dm service ?"
msgstr "Выбар пакетаў для ўсталявання"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (French layout)"
msgstr "Швейцарскi (Французская раскладка)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "August"
msgstr "Жнівень"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid не працаздольны (можа raid прылады адсутнiчаюць?)"

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

#: ../../standalone/harddrake2:1
#, c-format
msgid "size of the (second level) cpu cache"
msgstr ""

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Soundcard"
msgstr "Стандартны"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Month"
msgstr "Месяц"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Search for files to restore"
msgstr "калi ласка, пазначце тып вашай мышы."

#: ../../lang.pm:1
#, c-format
msgid "Luxembourg"
msgstr "Люксембург"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Level %s\n"
msgstr "Узровень %s\n"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Syriac (phonetic)"
msgstr "Армянскi (фанетычны)"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Iran"
msgstr "Iранскi"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Bus"
msgstr "Прац."

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

#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Патэнцыйны адрас ЛВС канфлiктуе з бягучай канфiгурацыяй %s!\n"

#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Configuring..."
msgstr "Настройка IDE"

#: ../../standalone/drakgw:1
#, c-format
msgid "The setup has already been done, and it's currently enabled."
msgstr ""

#: ../../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 ""

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Password (again)"
msgstr "Паўтарыце пароль"

#: ../../standalone/drakfont:1
#, c-format
msgid "Search installed fonts"
msgstr ""

#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Default desktop"
msgstr "Па дамаўленню"

#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
msgstr "Венэсуэла"

#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "IP address"
msgstr "IP адрас"

#: ../../install_interactive.pm:1
#, c-format
msgid "Choose the sizes"
msgstr "Выбар памераў"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""

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

#: ../../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 ""

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Choose another partition"
msgstr "Стварэнне новага раздзелу"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Current user"
msgstr "Прыняць карыстальнiка"

#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Username"
msgstr "Iмя карыстальнiку:"

#: ../../keyboard.pm:1
#, c-format
msgid "Left \"Windows\" key"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Guyana"
msgstr "Гайяна"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "dhcpd Server Configuration"
msgstr "Заканчэнне настройкi"

#: ../../standalone/drakperm:1
#, c-format
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""

#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""

#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Printer Name"
msgstr "Iмя чаргi друку"

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Remove a module"
msgstr "Адваротны парадак старонак"

#: ../../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 "Пароль"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Advanced Configuration"
msgstr "Заканчэнне настройкi"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning on your HP multi-function device"
msgstr ""

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Абярыце iснуючы RAID для дадання"

#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (modern \"Q\" model)"
msgstr "Турэцкi (сучасная \"Q\" мадэль)"

#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo message not found"
msgstr ""

#: ../../services.pm:1
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""

#: ../../standalone/drakfloppy:1
#, c-format
msgid "if needed"
msgstr ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Failed..."
msgstr "Аднаўленне з файлу"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _jazz drives"
msgstr "Аддалены прынтэр"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Store the password for this system in drakbackup configuration."
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 ""

#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Default user"
msgstr "Лакальны прынтэр"

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"the progress bar x coordinate\n"
"of its upper left corner"
msgstr ""

#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Current interface configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"

#: ../../printer/data.pm:1
#, c-format
msgid "LPD - Line Printer Daemon"
msgstr ""

#: ../../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"
"Калi вы маеце ISA карту, велiчынi на наступным экране павiнны быць "
"сапраўднымi.\n"
"\n"
"Калi вы маеце PCMCIA карту, вы павiнны ведаць irq i io вашай карты.\n"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do not print any test page"
msgstr "Друк тэставых старонак"

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

#: ../../standalone/drakTermServ:1
#, c-format
msgid "%s already in use\n"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Force No APIC"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"

#: ../../standalone.pm:1
#, fuzzy, c-format
msgid "[keyboard]"
msgstr "Клавiятура"

#: ../../network/network.pm:1
#, c-format
msgid "FTP proxy"
msgstr "FTP proxy"

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Install List"
msgstr "Усталяванне сiстэмы"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Change\n"
"Restore Path"
msgstr "Аднаўленне з файлу"

#: ../../standalone/logdrake:1
#, c-format
msgid "Show only for the selected day"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "\tLimit disk usage to %s MB\n"
msgstr ""

#: ../../Xconfig/card.pm:1
#, c-format
msgid "512 kB"
msgstr "512 Кб"

#: ../../standalone/net_monitor:1
#, c-format
msgid "Logs"
msgstr ""

#: ../../standalone/scannerdrake:1
#, c-format
msgid "(Note: Parallel ports cannot be auto-detected)"
msgstr ""

#: ../../standalone/logdrake:1
#, c-format
msgid "<control>N"
msgstr ""

#: ../../network/isdn.pm:1
#, c-format
msgid "What kind of card do you have?"
msgstr "Якi тып карты вы маеце?"

#: ../../standalone/logdrake:1
#, c-format
msgid "<control>O"
msgstr ""

#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, fuzzy, c-format
msgid "Security"
msgstr "кучаравы"

#: ../../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 ""

#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#: ../../standalone/printerdrake:1
#, c-format
msgid "<control>Q"
msgstr "<control>Q"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Unable to find backups to restore...\n"
msgstr "Калi ласка, абярыце мову для карыстання."

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Unknown"
msgstr "Агульны"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This server is already in the list, it cannot be added again.\n"
msgstr ""

#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
msgstr "Канфiгурацыя сеткi"

#: ../../standalone/logdrake:1
#, c-format
msgid "<control>S"
msgstr ""

#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
"Падключэнне \n"
" не праз D-канал (вылучаныя каналы)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
msgstr ""

#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Notice"
msgstr "гальштук"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""

#: ../../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 ""

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "What type of partitioning?"
msgstr "Якi тып друкаркi вы маеце?"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Interface"
msgstr "Сеткавы iнтэрфейс"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Multisession CD"
msgstr "Мультымедыя - гук"

#: ../../modules/parameters.pm:1
#, fuzzy, c-format
msgid "comma separated strings"
msgstr "Фарматаванне раздзелаў"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "These are the machines from which the scanners should be used:"
msgstr ""

#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Messages"
msgstr "Праверка партоў"

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

#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "POP and IMAP Server"
msgstr "сервер"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Mexico"
msgstr "Порт мышы"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model stepping"
msgstr "фарматаванне"

#: ../../lang.pm:1
#, c-format
msgid "Rwanda"
msgstr "Руанда"

#: ../../lang.pm:1
#, c-format
msgid "Switzerland"
msgstr "Щвэйцарыя"

#: ../../lang.pm:1
#, c-format
msgid "Brunei Darussalam"
msgstr "Брунэі Дурасалям"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Цi ёсць у вас %s iнтэрфейс?"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "You must be root to read configuration file. \n"
msgstr "Канфiгурацыя сеткi"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
msgstr "Опцыi аддаленага прынтэру lpd"

#: ../../help.pm:1
#, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user may 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\", who 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"
"configurations, protecting the system from unintentional or malicious\n"
"changes that impact on the system as a whole. You will have to create at\n"
"least one regular user for yourself -- this is the account which you should\n"
"use for routine, day-to-day use. Although it is very easy to log in as\n"
"\"root\" to do anything and everything, it may also be very dangerous! A\n"
"very simple mistake could mean that your system will not work any more. If\n"
"you make a serious mistake as a regular user, the worst that will happen is\n"
"that you will lose 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 this field and copy it to the \"%s\" field, which is the name\n"
"this user will enter to log onto the system. If you like, you may override\n"
"the default and change the username. The next step is to enter a password.\n"
"From a security point of view, a non-privileged (regular) user password is\n"
"not as crucial as the \"root\" password, but that is no reason to neglect\n"
"it by making it blank or too simple: after all, your files could be the\n"
"ones at risk.\n"
"\n"
"Once you click on \"%s\", you can add other users. Add a user for each one\n"
"of your friends: your father or your sister, for example. Click \"%s\" when\n"
"you have finished adding users.\n"
"\n"
"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
"that user (bash by default).\n"
"\n"
"When you have finished adding 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 \"%s\".\n"
"If you are not interested in this feature, uncheck the \"%s\" box."
msgstr ""

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Configure Internet Access..."
msgstr "Настройка службаў"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please choose the time interval between each backup"
msgstr "Выбар пакетаў для ўсталявання"

#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Norway"
msgstr "Нарвежскi"

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Delete profile"
msgstr "Абярыце файл"

#: ../../keyboard.pm:1
#, c-format
msgid "Danish"
msgstr "Дацкi"

#: ../../services.pm:1
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and XFree at boot."
msgstr ""

#: ../../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 ""
"Калi ласка, увядзiце IP канфiгурацыю для вашай машыны.\n"
"Кожны пункт павiнен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
"натацыi (напрыклад, 1.2.3.4)."

#: ../../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 ""

#: ../../standalone/drakperm:1
#, c-format
msgid "When checked, owner and group won't be changed"
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Bulgaria"
msgstr "Мадьярскi"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Tuesday"
msgstr "Аўторак"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Processors"
msgstr ""

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

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "No NIC selected!"
msgstr "Размеркаванне"

#: ../../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 ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "partition %s is now known as %s"
msgstr ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup Other files..."
msgstr "Дрэнны файл рэзервовай копii"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server IP"
msgstr "IP сервера SMB"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Таблiца размяшчэння прылады %s будзе запiсана на дыск!"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing HPOJ package..."
msgstr "Усталяванне пакету %s"

#: ../../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 ""
"З дапамогай загрузачнага дыску вы зможаце загружаць Linux таксама як i \n"
"стандартным загрузчыкам. Гэта можа быць якасна, калi вы не жадаеце \n"
"ўсталёўваць LILO (цi Grub), калi iншая аперацыйная сiстэма выдаляе LILO,\n"
"цi LILO не можа працаваць у вашай канфiгурацыi. Загрузачны дыск таксама "
"можа\n"
"быць выкарыстаны сумесна з рамонтнай дыскетай Mandrake Linux, якая вельмi \n"
"палегчыць выратаванне сiстэмы пасля збою.\n"
"\n"
"Жадаеце стварыць загрузачны дыск зараз?\n"
"%s"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"                      DrakBackup Daemon Report\n"
msgstr ""

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Latvian"
msgstr "Размеркаванне"

#: ../../standalone/drakbackup:1
#, c-format
msgid "monthly"
msgstr ""

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Module name"
msgstr "Опцыi модулю:"

#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Start at boot"
msgstr "Стварыць загр. дыск"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Use Incremental Backups"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Першы сектар прылады (MBR)"

#: ../../lang.pm:1
#, c-format
msgid "El Salvador"
msgstr "Эль Сальвадор"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Joystick"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "DVD"
msgstr ""

#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Use Unicode by default"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
msgstr "Паспрабуем выратаваць таблiцу раздзелаў"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""

#: ../../security/l10n.pm:1
#, c-format
msgid "Use password to authenticate users"
msgstr ""

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"For backups to other media, files are still created on the hard drive, then "
"moved to the other media.  Enabling this option will remove the hard drive "
"tar files after the backup."
msgstr ""

#: ../../standalone/livedrake:1
#, c-format
msgid "Unable to start live upgrade !!!\n"
msgstr "Немагчыма запусціць live upgrade !!!\n"

#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Name: "
msgstr "Iмя: "

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
msgstr "16 мiльёнаў колераў (24 бiты)"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Дадаць карыстальнiка"

#: ../../share/advertising/08-store.pl:1
#, c-format
msgid "The official MandrakeSoft Store"
msgstr ""

#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
msgstr "Змяненне памераў"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Enter the maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Cable connection"
msgstr "Злучэнне прынтэру"

#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "User"
msgstr "Iмя карыстальнiку:"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Iмя: "

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed"
msgstr "mkraid не працаздольны"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 3 Emulation"
msgstr ""

#: ../../security/l10n.pm:1
#, c-format
msgid "Check additions/removals of sgid files"
msgstr ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Sending files..."
msgstr "Захаванне ў файл"

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli (Phonetic)"
msgstr "Iўрыт (фанетычны)"

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "You must choose/enter a printer/device!"
msgstr "URI прынтэру"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Permission problem accessing CD."
msgstr ""

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Phone number"
msgstr "Нумар тэлефону"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer name, description, location"
msgstr "Злучэнне прынтэру"

#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (broadcast)"
msgstr ""

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
msgstr "Вiртуальная файлавая сiстэма (loopback)"

#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "West Europe"
msgstr "Еўропа"

#: ../../standalone/drakbackup:1
#, c-format
msgid "On CD-R"
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 ""

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Harddrake2 version %s"
msgstr "Вызначэнне жорсткага дыску"

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Preferences"
msgstr "Параметры: "

#: ../../lang.pm:1
#, c-format
msgid "Swaziland"
msgstr "Швазіланд"

#: ../../lang.pm:1
#, c-format
msgid "Dominican Republic"
msgstr "Дамініканская Рэспубліка"

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

#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Choose color"
msgstr "Абярыце манiтор"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Syriac"
msgstr "паслядоўная"

#: ../../standalone/drakperm:1
#, c-format
msgid "Set-UID"
msgstr ""

#: ../../help.pm:1
#, fuzzy, 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 this partition\n"
"will be lost and will not be recoverable!"
msgstr ""
"Абярыце жорскі дыск які жадаеце ачысціць для ўсталявання\n"
"новага раздзелу Mandrake Linux. Будзце ўважлівыя, усе дадзеныя на дыску "
"будуць\n"
" знішчаны і іх немагчыма будзе аднавіць."

#. -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 "Use the %c and %c keys for selecting which entry is highlighted."

#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to execute the file"
msgstr ""

#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Звычайная мыш з 2 кнопкамі"

#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
msgstr ""

#. -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 "The highlighted entry will be booted automatically in %d seconds."

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid "Internet access"
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid ""
"y coordinate of text box\n"
"in number of characters"
msgstr ""

#: ../../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 ""

#: ../../standalone/drakgw:1
#, c-format
msgid "Enabling servers..."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing test page(s)..."
msgstr "Друк тэставых старонак"

#: ../../fsedit.pm:1
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ужо ёсць раздзел з пунктам манцiравання %s\n"

#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable msec hourly security check."
msgstr ""

#: ../../help.pm:1
#, fuzzy, 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"
" * \"%s\": this option will perform an automatic partitioning of your blank\n"
"drive(s). If you use this option there will be no further prompts.\n"
"\n"
" * \"%s\": the wizard has detected one or more existing Linux partitions on\n"
"your hard drive. If you want to use them, choose this option. You will then\n"
"be asked to choose the mount points associated with each of the partitions.\n"
"The legacy mount points are selected by default, and for the most part it's\n"
"a good idea to keep them.\n"
"\n"
" * \"%s\": if Microsoft Windows is installed on your hard drive and takes\n"
"all the space available on it, you will have to create free space for\n"
"Linux. To do so, you can delete your Microsoft Windows partition and data\n"
"(see ``Erase entire disk'' solution) or resize your Microsoft Windows FAT\n"
"partition. Resizing can be performed without the loss of any data, provided\n"
"you have previously defragmented the Windows partition and that it uses the\n"
"FAT format. Backing up your data is strongly recommended.. Using this\n"
"option is recommended if you want to use both Mandrake Linux and Microsoft\n"
"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"
" * \"%s\": if you want to delete all data and all partitions present on\n"
"your hard drive and replace them with your new Mandrake Linux system,\n"
"choose this option. Be careful, because you will not be able to undo your\n"
"choice after you confirm.\n"
"\n"
"   !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"%s\": this will simply erase everything on the drive and begin fresh,\n"
"partitioning everything from scratch. All data on your disk will be lost.\n"
"\n"
"   !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"%s\": choose this option if you want to manually partition your hard\n"
"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
"easily lose all your data. That's why this option is really only\n"
"recommended if you have done something like this before and have some\n"
"experience. For more instructions on how to use the DiskDrake utility,\n"
"refer to the ``Managing Your Partitions '' section in the ``Starter\n"
"Guide''."
msgstr ""
"У гэтым пункце, вы павінны абраць дзе на вашым жорскім \n"
"дыску усталяваць аперацыйную сістэму Mandrake Linux. Калі дыск пусты\n"
"альбо ўсталываная аперацыйная аперацыйная сістэма выкарыстоўвае ўсю\n"
"дыскавую прастору, вы павінны разьбіць яго на раздзелы. У асноўным,\n"
"разбіццё раздзелаў жорскага дыску складаецца з лагічнага дзялення яго\n"
"дыскавай прасторы дзеля ўсталявання вашай новай сістэмы Mandrake Linux.\n"
"\n"
"Таму як вынікі разбіцця раздзелаў звычайна незваротныя, гэты працэс \n"
"можа быць пужаючым і напружаным, калі вы невопытны карыстальнік. Гэты\n"
"майстар спрашчае гэты працэс. Перад тым як пачаць звярніцеся, калі\n"
"ласка, да даведкі.\n"
"\n"
"Вам патрэбна, сама мала, два раздзелы. Першы непасрэдна для аперацыйнай\n"
"сістэмы, і другі для віртуальнай памяці (Swap - раздзел).\n"
"\n"
"Калі раздзелы ўжо вызначаны (у папярэдняе ўсталяванне ці іншым \n"
"інструмантам вызначэння раздзелаў), вы павінны абраць тыя, якія жадаеце\n"
"выкарыстоўваць для ўсталявання сістэмы.\n"
"\n"
"\n"
"Калі раздзелы не былі вызначаны, вы павінны іх стварыць. Каб зрабіць \n"
"гэта, скарыстайце майстра, даступнага вышэй. У залежнасці ад \n"
"канфігурацыі жорсткага дыску, могжа быць зроблена наступнае:\n"
"\n"
"* Выкарыстанне існуючага раздзелу: майстар знайшоў адзін ці некалькі.\n"
"існуючых раздзелаў на вашым жорскім дыску. Калі вы жадаеце іх захаваць,\n"
"абярыце гетую опцыю.\n"
"\n"
"\n"
"* Поўная ачыстка дыску: абярыце гэта, калі вы жадаеце выдаліць уседадзеныя і "
"раздзелы якія існуюць\n"
" на вашым дыску і замяніць на Mandrake Linux. Будзце уважлівы з гэтайопцыяй, "
"бо гэты працэс незваротны.\n"
"\n"
"\n"
"* Выкарыстанне вольнай прасторы на раздзеле Windows: калі MicrosoftWindows "
"усталявана на вашым жорскім\n"
" дыску і выкарыстоўвае ўсю даступную прастору, вы павінны стварыцьвольную "
"прастору для дадзеных Linux\n"
"Каб зрабіць гэта, вы можаце выдаляць ваш раздзел Windows і дадзеныя(гл."
"\"Ачыстка усяго дыску\" альбо\n"
" \"Рэжым эксперту\") альбо змяніць памеры вашага раздзелу WindowsЗмяненне "
"памераў можа быць выканана\n"
" без страты дадзеных. Гэтая опцыя рэкамендуецца, калі вы "
"жадаецевыкарыстоўваць Mandrake Linux і\n"
" Microsoft Windows на адным і тым жа  камп'ютэры.\n"
"\n"
" Перад выбарам гэтага, калі ласка, зьвярніце ўвагу, на тое, штоколькасьць "
"даступнай вольнай\n"
" прасторы пад Microsoft Windows зменшыцца.\n"
"\n"
"\n"
"* Рэжым эксперту: вы можаце абраць гэтую опцыю, калі вы жадаецеразбіць "
"раздзелы уласна рукамі.\n"
" Будзце ўважлівыя абіраючы гэта. Гэтая опцыя магутная але даволінебяспечная, "
"вы можаце\n"
" лёгка згубіць свае дадзеныя. Таму не абірайце гэтую опцыю калі выне ведаеце "
"што робіце."

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Ukraine"
msgstr "Украiнскi"

#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Application:"
msgstr "Размеркаванне"

#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "External ISDN modem"
msgstr "Унутраная ISDN карта"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result by mail."
msgstr ""

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ваш выбар? (змоўчанне %s) "

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, 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 ""
"Тэставыя старонкi адпраўлены дэману друку.\n"
"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
"Статус друку:\n"
"%s\n"
"\n"
"Ён працуе нармальна?"

#: ../../standalone/drakbackup:1
#, c-format
msgid "daily"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "and one unknown printer"
msgstr "Iмя друкаркi"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Ireland"
msgstr "Iсландскi"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "         Restore Configuration       "
msgstr "Канфiгурацыя сеткi"

#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Is this the correct setting?"
msgstr "Гэта дакладна?"

#: ../../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 \"%s\".\n"
"Mandrake Linux will attempt to autodetect network devices and modems. If\n"
"this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
"configure the network, or to do it later, in which case clicking the \"%s\"\n"
"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 ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Wizard Configuration"
msgstr "Настройка"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Autoprobe"
msgstr "Аўтапошук"

#: ../../security/help.pm:1
#, c-format
msgid ""
"if set to yes, check for :\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system files..."
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Can't use broadcast with no NIS domain"
msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"

#: ../../security/l10n.pm:1
#, c-format
msgid "Shell history size"
msgstr ""

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "drakfloppy"
msgstr "Аднаўленне з дыскеты"

#: ../../standalone/drakpxe:1
#, c-format
msgid ""
"Please indicate where the auto_install.cfg file is located.\n"
"\n"
"Leave it blank if you do not want to set up automatic installation mode.\n"
"\n"
msgstr ""

#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Configured on other machines"
msgstr "Настройка службаў"

#: ../../standalone/harddrake2:1
#, c-format
msgid "information level that can be obtained through the cpuid instruction"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Peru"
msgstr "Перу"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Мыш: %s\n"

#: ../../install_interactive.pm:1
#, c-format
msgid "Remove Windows(TM)"
msgstr "Выдалiць Windows(TM)"

#: ../../services.pm:1
#, fuzzy, c-format
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr "Запускае i прыпыняе X Font Server пры загрузцы i выключэннi."

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"Most of these values were extracted\n"
"from your running system.\n"
"You can modify as needed."
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "Select the font file or directory and click on 'Add'"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Madagascar"
msgstr "Мадагаскар"

#: ../../standalone/drakbug:1
#, c-format
msgid "Urpmi"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Cron not available yet as non-root"
msgstr ""

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

#: ../../any.pm:1 ../../help.pm:1
#, fuzzy, c-format
msgid "Do you want to use this feature?"
msgstr "Вы жадаеце выкарыстоўваць aboot?"

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

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"\n"
"- Options:\n"
msgstr "Опцыi"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Password required"
msgstr "Пароль"

#: ../../common.pm:1
#, c-format
msgid "%d minutes"
msgstr "%d хвiлiн"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
msgstr "Вiдэакарта: %s"

#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV transfer failed!"
msgstr ""

#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree configuration"
msgstr "Настройка XFree"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Choose action"
msgstr "Абярыце дзеянне"

#: ../../lang.pm:1
#, c-format
msgid "French Polynesia"
msgstr "Француская Палінэзыя"

#: ../../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 list provided.\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 \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
"the mouse wheel to ensure that it is activated correctly. Once you see the\n"
"on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
"buttons and check that the mouse pointer moves on-screen as you move your\n"
"mouse."
msgstr ""

#: ../../services.pm:1
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Files or wildcards listed in a .backupignore file at the top of a directory "
"tree will not be backed up."
msgstr ""

#: ../../services.pm:1
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""

#. -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 "Усталяванне драйверу для %s карты %s"

#: ../../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 ""

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Enable Server"
msgstr "Сервер друку"

#: ../../keyboard.pm:1
#, c-format
msgid "Ukrainian"
msgstr "Украiнскi"

#: ../../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 ""

#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to write the file"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local network(s)"
msgstr "сеткавая карта не знойдзена"

#: ../../help.pm:1
#, fuzzy, c-format
msgid "Remove Windows"
msgstr "Выдалiць Windows(TM)"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"Your %s has been configured.\n"
"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
"applications menu."
msgstr ""

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

#: ../../help.pm:1
#, fuzzy, 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 \"%s\" to create a new entry; selecting an entry and\n"
"clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
"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 ""
"LILO (ад LInux LOader) i Grub - гэта загрузчыкi. Яны могуць загрузiць "
"другую\n"
"GNU/Linux цi любую iншую аперацыйную сiстэму, усталяваную на кампутары.\n"
"Звычайна, гэтыя iншыя аперацыйныя сiстэмы карэктна вызначаюцца i\n"
"ўсталёўваюцца. Калi гэта не атрымалася, то вы можаце дадаць любы запiс\n"
"самастойна. Будзьце ўпэўнены, што вы задалi карэктныя параметры.\n"
"\n"
"\n"
"Таксама вы можаце пажадаць i не дабаўляць iншыя аперацыйныя сiстэмы.\n"
"У такiм выпадку патрэбна выдалiць адпаведныя запiсы. Але ж тады вам \n"
"патрэбна будзе загрузачная дыскета, каб загрузiцца!"

#: ../../standalone/drakboot:1
#, c-format
msgid "System mode"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, 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 ""
"Для друку на прынтэры NetWare неабходна пазначыць iмя серверу друку NetWare "
"(не заўсёды супадае з iменем у сетцы TCP/IP) i iмя чаргi друку, якая "
"адпавядае абранаму прынтэру, а таксама iмя карыстальнiку i пароль."

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Netmask:"
msgstr "Маска сеткi"

#: ../../network/adsl.pm:1
#, c-format
msgid "Do it later"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Append"
msgstr "Далучыць"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""

#: ../../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 ""

#: ../../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 ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Сеткавы прынтэр (TCP/Socket)"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Калi ласка, абярыце сеткавы адаптар, які будзе выкарыстаны для далучэння да "
"вашай лакальнай сеткi."

#: ../../standalone/drakbackup:1
#, c-format
msgid "OK to restore the other files."
msgstr ""

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please choose your keyboard layout."
msgstr "Калi ласка, абярыце тып клавiятуры."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
msgstr "URI прынтэру"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Not erasable media!"
msgstr ""

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Terminal-based"
msgstr "на аснове тэрмiналу"

#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable IP spoofing protection."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""

#: ../../any.pm:1
#, fuzzy, c-format
msgid "The user name is too long"
msgstr "Гэта iмя карыстальнiку ўжо дададзена"

#: ../../any.pm:1
#, c-format
msgid "Other OS (windows...)"
msgstr "Iншая АС (windows...)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV remote site already in sync!"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Reading printer database..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Generate auto install floppy"
msgstr "Стварэнне дыскеты для ўсталявання"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Somalia"
msgstr "NIS Domain"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No open source driver"
msgstr ""

#: ../../standalone/printerdrake:1
#, c-format
msgid "Def."
msgstr ""

#: ../../security/level.pm:1
#, fuzzy, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"Прымаюцца ўласцiвасцi 4 узроўня, але зараз сiстэма поўнасцю зачынена.\n"
"Параметры бяспекi ўстаноўлены на максiмум."

#: ../../lang.pm:1
#, c-format
msgid "Nicaragua"
msgstr "Нікарагуа"

#: ../../lang.pm:1
#, c-format
msgid "New Caledonia"
msgstr "Новая Калядонія"

#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "European protocol (EDSS1)"
msgstr "Еўропа (EDSS1)"

#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Delete"
msgstr "/_Выдаліць"

#: ../../any.pm:1
#, c-format
msgid "Video mode"
msgstr "Вiдэа-рэжым"

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

#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Please enter your email address below "
msgstr "Паспрабуйце яшчэ раз"

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Network Monitoring"
msgstr "Канфiгурацыя сеткi"

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

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "New size in MB: "
msgstr "Памер у Мб:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тып таблiцы раздзелаў: %s\n"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "Authentication Windows Domain"
msgstr "Аўтэнтыфiкацыя"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard"
msgstr "US клавiятура"

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

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Sending Speed:"
msgstr "Захаванне ў файл"

#: ../../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 uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "Halt bug"
msgstr ""

#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Mail alert configuration"
msgstr "Настройка ADSL"

#: ../../lang.pm:1
#, c-format
msgid "Tokelau"
msgstr "Такелаў"

#: ../../standalone/logdrake:1
#, c-format
msgid "Matching"
msgstr ""

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bosnian"
msgstr "Эстонскi"

#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Release: "
msgstr "Калi ласка, пачакайце"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Connection speed"
msgstr "Iмя злучэння"

#: ../../lang.pm:1
#, c-format
msgid "Namibia"
msgstr "Намібія"

#: ../../services.pm:1
#, fuzzy, c-format
msgid "Database Server"
msgstr "Сервер друку"

#: ../../standalone/harddrake2:1
#, c-format
msgid "special capacities of the driver (burning ability and or DVD support)"
msgstr ""

#: ../../raid.pm:1
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Не атрымлiваецца дадаць раздзел на _адфармацiраваны_ RAID md%d"

#: ../../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 ""
"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s.\n"
"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ. Ваша вiдэакарта падтрымлiваецца XFree %s, якi\n"
"лепей падтрымлiвае карты з 2D-паскарэннем."

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Please wait, setting security options..."
msgstr "Падрыхтоўка ўсталяваньня"

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

#: ../../standalone/drakboot:1
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "hourly"
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Right Shift key"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "          Successfuly Restored on %s       "
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Making printer port available for CUPS..."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Antigua and Barbuda"
msgstr "Анцігуа і Барбуда"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"!!! Indicates the password in the system database is different than\n"
" the one in the Terminal Server database.\n"
"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""

#: ../../keyboard.pm:1
#, c-format
msgid "Spanish"
msgstr "Iспанскi"

#: ../../services.pm:1
#, fuzzy, c-format
msgid "Start"
msgstr "Стартавае меню"

#: ../../security/l10n.pm:1
#, c-format
msgid "Direct root login"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuring applications..."
msgstr "Настройка прынтэру"

#: ../../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"
"Please plug in and turn on all printers connected to this machine so that it/"
"they can be auto-detected. Also your network printer(s) and your Windows "
"machines must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network and/or Windows-hosted printers when you 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 ""

#: ../../network/netconnect.pm:1
#, c-format
msgid "Normal modem connection"
msgstr ""

#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "File Selection"
msgstr "Выбар групы пакетаў"

#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
#, c-format
msgid "CUPS"
msgstr ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Erase tape before backup"
msgstr "Дрэнны файл рэзервовай копii"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Run config tool"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Bootloader installation"
msgstr "Усталяванне загрузчыку"

#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
msgstr "Каранёвы раздзел ў Mб: "

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "This is a mandatory package, it can't be unselected"
msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмянiць"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""

#: ../../services.pm:1
#, fuzzy, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"named (BIND) - гэта сервер даменных iмёнаў, якi выкарыстоўваецца для\n"
"перакладання iмён вузлоў у IP адрасы."

#: ../../lang.pm:1
#, c-format
msgid "Saint Lucia"
msgstr "Санта Лючыя"

#: ../../standalone/drakbackup:1
#, c-format
msgid "November"
msgstr "Лістапад"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Disconnect..."
msgstr ""

#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Report"
msgstr "Порт"

#: ../../lang.pm:1
#, c-format
msgid "Palau"
msgstr "Палаў"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "level"
msgstr "узровень"

#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
msgstr "Выбар групы пакетаў"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid ""
"Allow local hardware\n"
"configuration."
msgstr "Настройка мадэму"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""

#: ../../modules/interactive.pm:1
#, c-format
msgid "You can configure each parameter of the module here."
msgstr ""

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Выбар памераў экрану i глыбiнi колеру"

#: ../../standalone/mousedrake:1
#, c-format
msgid "Emulate third button?"
msgstr "Эмуляваць трэцюю кнопку?"

#: ../../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 ""

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount"
msgstr "Манцiраванне"

#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Creating auto install floppy"
msgstr "Стварэнне дыскеты для ўсталявання"

#: ../../steps.pm:1
#, fuzzy, c-format
msgid "Install updates"
msgstr "Усталяванне сiстэмы"

#: ../../standalone/draksplash:1
#, c-format
msgid "text box height"
msgstr ""

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "State"
msgstr "Стартавае меню"

#: ../../standalone/drakfloppy:1
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Enable multiple profiles"
msgstr "Даступна шмат профiляў"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""

#: ../../printer/main.pm:1
#, c-format
msgid "Local printer"
msgstr "Лакальны прынтэр"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Files Restored..."
msgstr ""

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Package selection"
msgstr "Выбар групы пакетаў"

#: ../../lang.pm:1
#, c-format
msgid "Mauritania"
msgstr "Маўрытанія"

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the Network that you use "
"for your local network; I will not reconfigure it and I will not touch your "
"DHCP server configuration.\n"
"\n"
"The default DNS entry is the Caching Nameserver configured on the firewall. "
"You can replace that with your ISP DNS IP, for example.\n"
"\t\t      \n"
"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
"for you.\n"
"\n"
msgstr ""

#: ../../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 ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
msgstr "Усе першасныя раздзелы выкарыстаны"

#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "LPD server \"%s\", printer \"%s\""
msgstr "Адлучэнне ад сеткi"

#: ../../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 ""

#: ../../services.pm:1
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr ""

#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Installation Server Configuration"
msgstr "Заканчэнне настройкi"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring IDE"
msgstr "Настройка IDE"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Network functionality not configured"
msgstr "Манiтор пакуль не настроены"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Configure module"
msgstr "Настройка мышы"

#: ../../lang.pm:1
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Какосавыя выспы"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Каб змяненнi ўступiлi ў дзеянне, необходна перазагрузiцца"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider phone number"
msgstr "Нумар тэлефону правайдара"

#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Host %s"
msgstr "Iмя машыны"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Fiji"
msgstr "Фiнскi"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Armenia"
msgstr "Армянскi (стары)"

#: ../../any.pm:1
#, c-format
msgid "Second floppy drive"
msgstr "Другi дыскавод"

#: ../../standalone/harddrake2:1
#, c-format
msgid "About Harddrake"
msgstr ""

#: ../../security/l10n.pm:1
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr ""

#: ../../standalone/harddrake2:1
#, c-format
msgid "Drive capacity"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Устаўце дыскету ў дыскавод\n"
"Усе дадзеныя на гэтай дыскеце будуць страчаны"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s"
msgstr "Памер: %s"

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

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "secondary"
msgstr "%d секундаў"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "View Backup Configuration."
msgstr "Канфiгурацыя сеткi"

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr ""

#. -PO: keep this short or else the buttons will not fit in the window
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
msgstr "Няма паролю"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Nigeria"
msgstr "паслядоўная"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "%s: %s requires hostname...\n"
msgstr ""

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
msgstr "Няма iснуючых раздзелаў, якiя можна выкарыстаць"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid ""
"The following scanners\n"
"\n"
"%s\n"
"are available on your system.\n"
msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"

#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Multi-function device on parallel port #%s"
msgstr "Iмя прынтэру"

#: ../../printer/printerdrake.pm:1
#, fuzzy, 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 ""
"Каб друкаваць праз сокет друкаркi, вам неабходна забяспечыць\n"
"iмя прынтэру i магчыма яго нумар порту."

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Hard drive information"
msgstr "Iнфармацыя"

#: ../../keyboard.pm:1
#, c-format
msgid "Russian"
msgstr "Рускi"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Jordan"
msgstr "Iранскi"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Hide files"
msgstr "mkraid не працаздольны"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Auto-detect printers connected to this machine"
msgstr "Аддалены прынтэр"

#: ../../standalone/drakxtv:1
#, c-format
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
"If you do have a TV card but DrakX has neither detected it (no bttv nor "
"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
"\n"
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
msgstr "Выбачайце, але дыскавод недаступны"

#: ../../lang.pm:1
#, c-format
msgid "Bolivia"
msgstr "Балівія"

#: ../../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 ""

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Bad package"
msgstr "Дрэнны пакет"

#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
"Transform your computer into a powerful Linux server: Web server, mail, "
"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""

#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "DrakSec Basic Options"
msgstr "Опцыi"

#: ../../standalone/draksound:1
#, c-format
msgid ""
"\n"
"\n"
"\n"
"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
"program.  Just type \"sndconfig\" in a console."
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Romania"
msgstr "NIS Domain"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Group"
msgstr "Працоўная група"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Canada"
msgstr "Канадскi (Квебэк)"

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "choose device"
msgstr "Загрузачная прылада"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
msgstr "Выдалiць з LVM"

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

#: ../../keyboard.pm:1
#, c-format
msgid "German"
msgstr "Нямецкi"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Next ->"
msgstr "Далей ->"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Turning on this allows to print plain text files in japanese language. Only "
"use this function if you really want to print text in japanese, if it is "
"activated you cannot print accentuated characters in latin fonts any more "
"and you will not be able to adjust the margins, the character size, etc. "
"This setting only affects printers defined on this machine. If you want to "
"print japanese text on a printer set up on a remote machine, you have to "
"activate this function on that remote machine."
msgstr ""

#: ../../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 ""

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

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Horizontal refresh rate"
msgstr "Часціня гарызантальный разгорткi"

#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Edit"
msgstr "Ext2"

#: ../../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 ""
"Нельга ўсталяваць пункт манцiравання, таму што раздел выкарыстоўваецца для\n"
"вiртуальнай файлавай сiстэмы.\n"
"Спачатку выдалiце вiртуальную сiстэму"

#: ../../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 ""

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

#: ../../Xconfig/various.pm:1
#, fuzzy, c-format
msgid "What norm is your TV using?"
msgstr "Якi тып вашага ISDN злучэння?"

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Type:"
msgstr "Тып: "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Share name"
msgstr "Iмя для размеркаванага рэсурсу"

#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "enable"
msgstr "Таблiца"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr "Цi жадаеце пратэсцiраваць настройкi?"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Remove the loopback file?"
msgstr "Фарматаванне вiртуальнага раздзелу %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Selected size is larger than available space"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP server name missing!"
msgstr ""

#: ../../any.pm:1
#, fuzzy, c-format
msgid "Please choose your country."
msgstr "калi ласка, пазначце тып вашай мышы."

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Hard Disk Backup files..."
msgstr "Дрэнны файл рэзервовай копii"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Laotian"
msgstr "Размеркаванне"

#: ../../lang.pm:1
#, c-format
msgid "Samoa"
msgstr "Самоа"

#: ../../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 ""
"Пратакол rstat дазваляе карыстальнiкам сеткi атрымлiваць\n"
"памеры нагрузкi для кожнай машыны сеткi."

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Re-generating list of configured scanners ..."
msgstr ""

#: ../../modules/interactive.pm:1
#, fuzzy, c-format
msgid "Module configuration"
msgstr "Настройка"

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Scanner"
msgstr "Абярыце вiдэакарту"

#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Папярэджанне: тэсцiраванне на гэтай вiдэакарце небяспечна"

#: ../../any.pm:1
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Iмя карыстальнiку павiнна змяшчаць лiтары толькi на нiжнiм рэгiстры, \n"
"лiчбы, `-' i `_'"

#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Menudrake"
msgstr "абавязкова"

#: ../../security/level.pm:1
#, c-format
msgid "Welcome To Crackers"
msgstr "Сардэчна запрашаем у Crackers"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Module options:"
msgstr "Опцыi модулю:"

#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid "Secure your networks with the Multi Network Firewall"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Go on without configuring the network"
msgstr "Настройка сеткi"

#: ../../network/isdn.pm:1
#, c-format
msgid "Abort"
msgstr "Адмянiць"

#: ../../standalone/drakbackup:1
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""

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

#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Usage of remote scanners"
msgstr "Выкарыстоўваць незанятую прастору"

#: ../../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 ""
"Ваш раздзел з Windows занадта фрагментаваны. \n"
"Рэкамендуем спачатку запусцiць праграму ``defrag''"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Нарвежскi)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Hard Disk Backup Progress..."
msgstr ""

#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Зрабiць неактыўным сеткавае злучэнне"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Type: "
msgstr "Тып: "

#: ../../standalone/drakTermServ:1
#, c-format
msgid "<-- Edit Client"
msgstr ""

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "no fonts found"
msgstr "Не знайшлi %s"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Mouse"
msgstr "Порт мышы"

#: ../../bootloader.pm:1
#, c-format
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"

#: ../../lang.pm:1
#, c-format
msgid "Liechtenstein"
msgstr "Ліхтэнштайн"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Host name"
msgstr "Iмя машыны"

#: ../../standalone/draksplash:1
#, c-format
msgid "the color of the progress bar"
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Fonts Files"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to RAID"
msgstr "Дадаць да RAID"

#: ../../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 is the name of the kernel to boot. Typically, vmlinux or a\n"
"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 ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "No floppy drive available!"
msgstr "Дыскавод недаступны"

#: ../../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%s\n"
"\n"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Saudi Arabia"
msgstr "Савудаўская Арабія"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Continue anyway?"
msgstr "Сапраўды працягваць?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer"
msgstr "Прынтэр"

#: ../../services.pm:1
#, fuzzy, c-format
msgid "Internet"
msgstr "цiкава"

#: ../../standalone/service_harddrake:1
#, c-format
msgid "Some devices were added:\n"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геаметрыя: %s цылiндраў, %s галовак, %s сектараў\n"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Адлучэнне ад сеткi"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore From Tape"
msgstr "Дадатковая таблiца раздзелаў"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Choose the profile to configure"
msgstr "Абярыце асноўнага карыстальнiка:"

#: ../../security/l10n.pm:1
#, c-format
msgid "Password minimum length and number of digits and upcase letters"
msgstr ""

#: ../../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 ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup Now from configuration file"
msgstr "Канфiгурацыя сеткi"

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

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Restarting printing system..."
msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "See hardware info"
msgstr "Гл. апiсанне абсталявання"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Day"
msgstr "Дзень"

#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
msgstr "Першы сектар загрузачнага раздзелу"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model"
msgstr ""

#: ../../printer/data.pm:1
#, c-format
msgid "PDQ - Print, Don't Queue"
msgstr ""

#: ../../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/drakTermServ:1
#, c-format
msgid "Subnet Mask:"
msgstr ""

#: ../../security/l10n.pm:1
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr ""

#: ../../standalone/logdrake:1
#, c-format
msgid ""
"_: load here is a noun, the load of the system\n"
"Load"
msgstr ""

#: ../../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 ""
"Два крытычных параметры - гэта часціня вертыкальнай разгорткi, цi\n"
"часціня аднаўлення ўсяго экрану, а таксама болей важны параметр -\n"
"часціня гарызантальнай сiнхранiзацыi разгорткi, цi часціня вываду\n"
"радкоў экрану.\n"
"\n"
"ВЕЛЬМI ВАЖНА, каб абраны вамi манiтор меў часціню сiнхранiзацыi, якая\n"
"не перавышае фактычныя магчымасцi вашага манiтору: у процiлеглым выпадку\n"
"вы можаце сапсаваць манiтор.\n"
"Калi вы сумняваецеся, абярыце кансерватыўныя настройкi."

#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, fuzzy, c-format
msgid "Modify"
msgstr "Змянiць RAID"

#: ../../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 ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Need hostname, username and password!"
msgstr ""

#: ../../network/adsl.pm:1
#, fuzzy, c-format
msgid "Insert floppy"
msgstr "Устаўце дыскету ў дыскавод %s"

#: ../../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 ""

#: ../../standalone/drakbug:1
#, c-format
msgid "HardDrake"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "new"
msgstr "новы"

#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable syslog reports to console 12"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Would you like to try again?"
msgstr "Жадаеце настроiць прынтэр?"

#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Wizard"
msgstr "Майстар стварэння"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Edit selected server"
msgstr "Выдалiць чаргу друку"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please choose where you want to backup"
msgstr "Выбар пакетаў для ўсталявання"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Каб мадыфiкацыя таблiцы раздзелаў здейснiлася, патрэбна перазагрузка."

#: ../../standalone/drakbackup:1
#, c-format
msgid "Do not include the browser cache"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""

#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Калi ласка, абярыце тып клавiятуры."

#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
msgid "Standard"
msgstr "Стандартны"

#: ../../standalone/mousedrake:1
#, c-format
msgid "Please choose your mouse type."
msgstr "калi ласка, пазначце тып вашай мышы."

#: ../../standalone/drakconnect:1
#, c-format
msgid "Connect..."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Failed to configure printer \"%s\"!"
msgstr "Настройка прынтэру"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "not configured"
msgstr "Настройка X Window"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "About"
msgstr "Адмянiць"

#: ../../network/network.pm:1
#, c-format
msgid "Proxies configuration"
msgstr "Настройка proxy кэшуючых сервераў"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start: sector %s\n"
msgstr "Пачатак: сектар %s\n"

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "No Mask"
msgstr "Дрэнны пакет"

#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Network interface already configured"
msgstr "Манiтор пакуль не настроены"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Couldn't access the floppy!"
msgstr ""

#: ../../standalone/drakbug:1
#, c-format
msgid "connecting to Bugzilla wizard ..."
msgstr ""

#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Mail Server"
msgstr "Сервер друку"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
msgstr "Націсніце на раздзел"

#: ../../printer/main.pm:1
#, c-format
msgid "Multi-function device on HP JetDirect"
msgstr ""

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

#: ../../standalone/drakxtv:1
#, c-format
msgid "Have a nice day!"
msgstr ""

#: ../../help.pm:1
#, c-format
msgid "/dev/fd0"
msgstr "/dev/fd0"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Раздзел %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Connection"
msgstr "Выбар тыпу злучэння прынтэру"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Scanning for TV channels in progress ..."
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range Start:"
msgstr ""

#: ../../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 ""
"Iнтэрнэт суперсервер-дэман (завецца inetd) запускае пры старце \n"
"колькасць розных iнтэрнэт службаў, якiя неабходны. Яго можна выкарыстоўваць "
"для пуску\n"
"шматлікіх службаў, уключаючы telnet, ftp, rsh i rlogin. Блакуючы inetd, "
"блакуем\n"
"усе службы, за якiя ён адказвае."

#: ../../standalone/draksplash:1
#, c-format
msgid "the height of the progress bar"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Argentina"
msgstr "Аргенціна"

#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Domain Name Server"
msgstr "Iмя дамену"

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Security Level:"
msgstr "Настройкi ўзроўня бяспекi"

#: ../../fsedit.pm:1
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Пункт манцiравання павiнен пачынацца з /"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Choose your CD/DVD device"
msgstr "Калi ласка, абярыце тып клавiятуры."

#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Postfix Mail Server"
msgstr "Сервер друку"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without saving"
msgstr "Выйсцi без захавання"

#: ../../lang.pm:1
#, c-format
msgid "Yemen"
msgstr "Йемен"

#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid "This product is available on the MandrakeStore Web site."
msgstr ""

#: ../../interactive/stdio.pm:1
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""

#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
msgstr "Вызначэнне жорсткага дыску"

#: ../../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 ""

#: ../../network/adsl.pm:1
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
"You can provide it now via a floppy or your windows partition,\n"
"or skip and do it later."
msgstr ""

#: ../../diskdrake/dav.pm:1
#, fuzzy, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."

#: ../../lang.pm:1
#, c-format
msgid "Tajikistan"
msgstr "Такжыкістан"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
msgstr "Прыняць"

#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#: ../../standalone/printerdrake:1
#, c-format
msgid "Description"
msgstr "Апiсанне"

#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Памылка адкрыцця %s для запiсу: %s"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse type: %s\n"
msgstr "Тып мышы: %s\n"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s."

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Choose a monitor"
msgstr "Абярыце манiтор"

#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"

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

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "I can't add any more partition"
msgstr "Дадаць раздзел немагчыма"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size in MB: "
msgstr "Памер у Мб:"

#: ../../printer/main.pm:1
#, c-format
msgid "Remote printer"
msgstr "Аддалены прынтэр"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "Please choose a language to use."
msgstr "Калi ласка, абярыце мову для карыстання."

#: ../../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 ""

#: ../../any.pm:1
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Floppy format"
msgstr "Фарматаванне"

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Generic Printers"
msgstr "Прынтэр"

#: ../../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 ""

#: ../../standalone/scannerdrake:1
#, c-format
msgid "The scanners on this machine are available to other computers"
msgstr ""

#: ../../any.pm:1
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Першы сектар загрузачнага раздзелу"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Alternative drivers"
msgstr "Друк тэставых старонак"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""

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

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Cape Verde"
msgstr "Згарнуць дрэва"

#: ../../standalone/harddrake2:1
#, c-format
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""

#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Loading printer configuration... Please wait"
msgstr "Настройка злучэння з Iнтэрнэтам"

#: ../../standalone/harddrake2:1
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guam"
msgstr "Забавы"

#: ../../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 ""

#: ../../standalone/logdrake:1
#, c-format
msgid "/Options/Test"
msgstr ""

#: ../../security/level.pm:1
#, c-format
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive. It must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"Гэты узровень неабходна выкарыстоўваць з асцярогай. Сiстэма будзе прасцей\n"
"у карыстаннi, але i больш чутнай: гэты узровень бяспекi нельга "
"выкарыстоўваць\n"
"на машынах, якiя далучаны да сеткi цi да Internet. Уваход не абаронены "
"паролем."

#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Mounting partition %s"
msgstr "Фарматаванне раздзелу %s"

#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "User name"
msgstr "Iмя карыстальнiку:"

#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Userdrake"
msgstr "Выкарыстоўваць DiskDrake"

#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Памеры якога раздзела вы жадаеце змянiць?"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Test pages"
msgstr "Праверка партоў"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "Лакальны прынтэр"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""

#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Checking %s"
msgstr "Памеры экрану: %s\n"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "TCP/Socket Printer Options"
msgstr "Опцыi сокету прынтэру"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card mem (DMA)"
msgstr "Адрасы памяці карты (DMA)"

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Disconnecting from Internet "
msgstr "Далучэнне да Iнтэрнэту"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "France"
msgstr "Францыя"

#: ../../standalone/drakperm:1
#, c-format
msgid "browse"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking installed software..."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote printer name missing!"
msgstr "Аддалены вузел"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
msgstr "Жадаеце пратэсцiраваць друк?"

#: ../../lang.pm:1
#, c-format
msgid "Turkey"
msgstr "Турцыя"

#: ../../network/adsl.pm:1
#, c-format
msgid "Alcatel speedtouch usb"
msgstr ""

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 кнопкi"

#: ../../keyboard.pm:1
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Вьетнамскi \"нумар радка\" QWERTY"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Module"
msgstr "Порт мышы"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""

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

#: ../../keyboard.pm:1
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr ""

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United States"
msgstr "Злучаныя Штаты"

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "User umask"
msgstr "Iмя карыстальнiку:"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "Default OS?"
msgstr "Па дамаўленню"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (German layout)"
msgstr "Швейцарскi (Нямецкая раскладка)"

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

#: ../../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 ""

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS сервер:"

#: ../../security/l10n.pm:1
#, c-format
msgid "Sulogin(8) in single user level"
msgstr ""

#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Load/Save on floppy"
msgstr "Захаванне на дыскету"

#: ../../standalone/draksplash:1
#, c-format
msgid "This theme does not yet have a bootsplash in %s !"
msgstr ""

#: ../../pkgs.pm:1
#, c-format
msgid "nice"
msgstr "добра"

#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Leaving in %d seconds"
msgstr "%d секундаў"

#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "Да якога паслядоўнага порту далучаны мадэм?"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Property"
msgstr "Порт"

#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript"
msgstr ""

#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "LAN Configuration"
msgstr "Настройка"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Path or Module required"
msgstr ""

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Advanced Options"
msgstr "Заканчэнне настройкi"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "View Configuration"
msgstr "Настройка"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Coma bug"
msgstr ""

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

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

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
msgstr "Атрымалася памылка ўпарадкавання пакетаў:"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Lexmark inkjet configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Undo"
msgstr "Адкат"

#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Save partition table"
msgstr "Запiс таблiцы раздзелаў"

#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
msgstr "Фiнскi"

#: ../../lang.pm:1
#, c-format
msgid "Macedonia"
msgstr "Македонія"

#: ../../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 ""

#: ../../keyboard.pm:1
#, c-format
msgid "Slovenian"
msgstr "Славенскi"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"LOCAL\"\n"
"\n"
"- none if set to \"NONE\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Libya"
msgstr "Лібэрыя"

#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Канфігурацыя сцэнараў, усталяванне ПЗ, запуск службаў..."

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer on parallel port #%s"
msgstr "Iмя прынтэру"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Burn to CD"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Table"
msgstr "Таблiца"

#: ../../fs.pm:1
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Не ведаю як адфарматаваць %s з тыпам %s"

#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Model"
msgstr "Порт мышы"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "USB printer #%s"
msgstr "Iмя друкаркi"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Stop Server"
msgstr "NIS сервер:"

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"\n"
"Select the theme for\n"
"lilo and bootsplash,\n"
"you can choose\n"
"them separately"
msgstr ""

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Modem"
msgstr "Порт мышы"

#: ../../lang.pm:1
#, c-format
msgid "Tuvalu"
msgstr "Тувалю"

#: ../../help.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Use auto detection"
msgstr ""

#: ../../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 ""
"GPM дадае падтрымку мышы да праграмаў, якiя працуюць у тэкставым рэжыме,\n"
"такiх як Midnight Commander. Гэта дазваляе выкарыстоўваць мыш пры "
"капiраваннi i ўстаўцы,\n"
"i ўключае падтрымку ўсплываючых (pop-up) меню ў тэкставым рэжыме."

#: ../../standalone/drakconnect:1
#, c-format
msgid "Started on boot"
msgstr ""

#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""

#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "No password aging for"
msgstr "Няма паролю"

#: ../../standalone/draksec:1
#, c-format
msgid ""
"The following options can be set to customize your\n"
"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "East Timor"
msgstr "Усходні Тымор"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "On Tape Device"
msgstr "Порт прынтэру"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Login name"
msgstr "Iмя дамену"

#: ../../security/l10n.pm:1
#, c-format
msgid "Report unowned files"
msgstr ""

#: ../../standalone/drakconnect:1
#, c-format
msgid "Del profile..."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing Foomatic..."
msgstr "Усталяванне пакету %s"

#: ../../standalone/XFdrake:1
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "detected"
msgstr "Аддалены прынтэр"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr "Выбар пакетаў для ўсталявання"

#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Package: "
msgstr "Пакет"

#: ../../standalone/drakboot:1
#, c-format
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SECURITY WARNING!"
msgstr ""

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "StarOffice"
msgstr "добра"

#: ../../standalone/drakboot:1
#, c-format
msgid "No, I don't want autologin"
msgstr ""

#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Windows Migration tool"
msgstr "Навуковыя прыкладанні"

#: ../../any.pm:1 ../../help.pm:1
#, fuzzy, c-format
msgid "All languages"
msgstr "Выбар мовы"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Памеры экрану: %s\n"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "%s not found...\n"
msgstr "Не знайшлi %s"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Testing your connection..."
msgstr "Якi тып вашага ISDN злучэння?"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Cache size"
msgstr "памер блоку"

#: ../../security/level.pm:1
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Пароль зараз уключаны, але выкарыстанне камп'ютэру ў якасцi сеткавага\n"
"таксама не рэкамендавана."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start sector: "
msgstr "Пачатковы сектар:"

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

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Read"
msgstr "Перазагрузiць"

#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Выбар пакетаў для ўсталявання"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Seychelles"
msgstr "Абалонка:"

#: ../../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 ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Няма паролю"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Right Control key"
msgstr "Аддалены прынтэр"

#: ../../network/adsl.pm:1
#, fuzzy, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
"press %s"
msgstr "Устаўце дыскету ў дыскавод %s"

#: ../../lang.pm:1
#, c-format
msgid "Zambia"
msgstr "Замбія"

#: ../../security/level.pm:1
#, c-format
msgid "Security Administrator (login or email)"
msgstr ""

#: ../../standalone/drakgw:1
#, c-format
msgid "Sorry, we support only 2.4 kernels."
msgstr ""

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Romanian (qwerty)"
msgstr "Рускi (Я-В-Е-Р-Т-И)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Under Devel ... please wait."
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Egypt"
msgstr "Пуста"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Czech Republic"
msgstr "Чэская Рэспубліка"

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Sound card"
msgstr "Стандартны"

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Import Fonts"
msgstr "Фарматаванне раздзелаў"

#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, 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 ""
"Зараз вы маеце толькi адзiн вялiкi раздзел FAT\n"
"(які звычайна выкарыстоўвае MS Dos/Windows).\n"
"Прапаную, па-першае, змянiць памеры раздзела\n"
"(клiкнiце на яго, а потым на \"змяненне памераў\")"

#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Temporary Files"
msgstr ""

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"\n"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Change partition type"
msgstr "Змянiць тып раздзелу"

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

#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Network Options"
msgstr "Опцыi модулю:"

#: ../../security/l10n.pm:1
#, c-format
msgid "Enable msec hourly security check"
msgstr ""

#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""

#: ../../standalone/net_monitor:1
#, c-format
msgid "Statistics"
msgstr ""

#: ../../printer/cups.pm:1
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(модуль %s)"

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

#: ../../security/level.pm:1
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""

#: ../../standalone/net_monitor:1
#, c-format
msgid "average"
msgstr ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "New printer name"
msgstr "Iмя друкаркi"

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

#: ../../lang.pm:1
#, c-format
msgid "Equatorial Guinea"
msgstr "Экватарыяльная Гвінэя"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup System"
msgstr "Настр. файлавых сiстэмаў"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Build Backup"
msgstr "Дрэнны файл рэзервовай копii"

#: ../../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 ""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Currently, no alternative possibility is available"
msgstr ""

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Romanian (qwertz)"
msgstr "Рускi (Я-В-Е-Р-Т-И)"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Write Config"
msgstr "Настройка X Window"

#: ../../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 ""
"Дэман маршрутызацыi дазваляе дынамiчным таблiцам IP маршрутызацыi\n"
"аднаўляцца праз RIP пратакол. RIP выкарыстоўваецца ў малых сетках, больш\n"
"складаныя пратаколы маршрутызацыi - у вялiкiх сетках."

#: ../../lang.pm:1
#, c-format
msgid "Kiribati"
msgstr "Кірыбаці"

#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
msgstr "Logitech Mouse (паслядоўная, стары тып C7)"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Other (not drakbackup) keys in place already"
msgstr ""

#: ../../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 with a list of different parameters to change to get\n"
"an optimal graphical display: Graphic Card\n"
"\n"
"   The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
"   In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then asked to choose the server that best\n"
"suits your needs.\n"
"\n"
"\n"
"\n"
"Monitor\n"
"\n"
"   The installer will normally automatically detect and configure the\n"
"monitor connected to your machine. If it is incorrect, you can choose from\n"
"this list the monitor you actually have connected to your computer.\n"
"\n"
"\n"
"\n"
"Resolution\n"
"\n"
"   Here you can choose the resolutions and color depths available for your\n"
"hardware. Choose the one that best suits your needs (you will be able to\n"
"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 \"%s\",\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"
"   Here you can choose whether you want to have your machine automatically\n"
"switch to a graphical interface at boot. Obviously, you want to check\n"
"\"%s\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""

#: ../../standalone/draksplash:1
#, c-format
msgid "Browse"
msgstr "Прагляд"

#: ../../harddrake/data.pm:1
#, c-format
msgid "CDROM"
msgstr ""

#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Цi жадаеце зараз паспрабаваць далучыцца да Iнтэрнэту?"

#: ../../keyboard.pm:1
#, c-format
msgid "Belgian"
msgstr "Бельгiйскi"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Do you have an ISA sound card?"
msgstr "Цi ёсць у вас iншы?"

#: ../../network/ethernet.pm:1
#, fuzzy, c-format
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
"скарыстайце канфiгурацыйны iнструмэнт."

#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Windows"
msgstr "Навуковыя прыкладанні"

#: ../../common.pm:1
#, fuzzy, c-format
msgid "Can't make screenshots before partitioning"
msgstr "Дадаць раздзел немагчыма"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Host Name"
msgstr "Iмя машыны"

#: ../../standalone/logdrake:1
#, c-format
msgid "/File/Save _As"
msgstr ""

#: ../../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 ""

#: ../../standalone/scannerdrake:1
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
msgstr ""

#: ../../any.pm:1
#, c-format
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"

#: ../../any.pm:1
#, c-format
msgid "Restrict command line options"
msgstr "Абмежаванне опцыяў каманднага радка"

#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "East Europe"
msgstr "Еўропа"

#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
msgid "Use free space"
msgstr "Выкарыстоўваць незанятую прастору"

#: ../../network/adsl.pm:1
#, c-format
msgid "use dhcp"
msgstr ""

#: ../../standalone/logdrake:1
#, c-format
msgid "Mail alert"
msgstr ""

#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"

#: ../../lang.pm:1
#, c-format
msgid "Uzbekistan"
msgstr "Узбэкістан"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Дубляванне пункту манцiравання %s"

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _printers"
msgstr "Аддалены прынтэр"

#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#, fuzzy, c-format
msgid "Finish"
msgstr "Фiнскi"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Show automatically selected packages"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Togo"
msgstr "Тога"

#: ../../standalone/harddrake2:1
#, c-format
msgid "CPU flags reported by the kernel"
msgstr ""

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""

#: ../../Xconfig/card.pm:1
#, c-format
msgid "16 MB"
msgstr "16 Мб"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "The model is correct"
msgstr "Гэта дакладна?"

#: ../../install_interactive.pm:1
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"

#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
msgstr "Асабiсты выбар пакетаў"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "This partition is not resizeable"
msgstr "Памеры якога раздзела вы жадаеце змянiць?"

#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Location"
msgstr "Размеркаванне"

#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable-hrc)"
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guatemala"
msgstr "Шлюз"

#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Journalised FS"
msgstr "памылка манцiравання"

#: ../../security/l10n.pm:1
#, c-format
msgid "Ethernet cards promiscuity check"
msgstr ""

#: ../../standalone/scannerdrake:1
#, c-format
msgid "This machine"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Лiтара для DOS-дыску: %s (наўгад)\n"

#: ../../lang.pm:1
#, c-format
msgid "Bahrain"
msgstr "Бахрэйн"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Select the files or directories and click on 'OK'"
msgstr ""

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "omit scsi modules"
msgstr "Рэжым злучэння"

#: ../../standalone/harddrake2:1
#, c-format
msgid "family of the cpu (eg: 6 for i686 class)"
msgstr ""

#: ../../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 ""

#: ../../security/l10n.pm:1
#, c-format
msgid "Run the daily security checks"
msgstr ""

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Тып клавiятуры: %s\n"

#: ../../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 ""

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

#: ../../standalone/drakfloppy:1
#, c-format
msgid "The creation of the boot floppy has been successfully completed \n"
msgstr ""

#: ../../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 ""
"Манцiраваць i разманцiраваць усе сеткавыя файлавыя сiстэмы (NFS),\n"
" SMB (Lan Manager/Windows) i NCP (Netware) пункты манцiравання."

#: ../../standalone/drakconnect:1
#, c-format
msgid "Launch the wizard"
msgstr ""

#: ../../harddrake/data.pm:1
#, c-format
msgid "Tvcard"
msgstr ""

#: ../../help.pm:1
#, fuzzy, c-format
msgid "Toggle between normal/expert mode"
msgstr "Звычайны рэжым"

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Size"
msgstr "Памер: %s"

#: ../../help.pm:1
#, c-format
msgid "GRUB"
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Greenland"
msgstr "Iсландскi"

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

#: ../../standalone/drakbackup:1
#, c-format
msgid "Thursday"
msgstr "Чацьвер"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""

#: ../../standalone/drakgw:1
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Delete All NBIs"
msgstr "Абярыце файл"

#: ../../help.pm:1
#, c-format
msgid ""
"This dialog allows you to fine tune your bootloader:\n"
"\n"
" * \"%s\": there are three choices for your bootloader:\n"
"\n"
"    * \"%s\": if you prefer grub (text menu).\n"
"\n"
"    * \"%s\": if you prefer LILO with its text menu interface.\n"
"\n"
"    * \"%s\": if you prefer LILO with its graphical interface.\n"
"\n"
" * \"%s\": in most cases, you will not change the default (\"%s\"), but if\n"
"you prefer, the bootloader can be installed on the second hard drive\n"
"(\"%s\"), or even on a floppy disk (\"%s\");\n"
"\n"
" * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
"given to the user at the console to select a boot entry other than the\n"
"default.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
"\"%s\"), you must ensure that you have a way to boot your Mandrake Linux\n"
"system! Be sure you know what you are doing before changing any of the\n"
"options. !!\n"
"\n"
"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
"are normally reserved for the expert user."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"

#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "More"
msgstr "Перанос"

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
"scanbus' would also show you the device number."
msgstr ""

#: ../../security/level.pm:1
#, fuzzy, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
"На гэтам узроўне бяспекi магчыма выкарыстанне сiстэмы ў якасцi\n"
"серверу. Узровень бяспекi дастаткова высокi для работы\n"
"серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."

#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Server Name"
msgstr "сервер"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
msgstr "Пароль для ўваходу"

#: ../../standalone/drakhelp:1
#, c-format
msgid ""
"%s cannot be displayed \n"
". No Help entry of this type\n"
msgstr ""

#: ../../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 ""

#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful: this\n"
"operation is dangerous. If you have not already done so, you\n"
"first need to exit the installation, run \"chkdsk c:\" from a\n"
"Command Prompt under Windows (beware, running graphical program\n"
"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
"Command Prompt!), optionally run defrag, then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"УВАГА!\n"
"\n"
"DrakX зараз павiнен змянiць памер вашага раздзела Windows.\n"
"Будзьце ўважлiвы: гэтая аперацыя небяспечна. Калi вы  яшчэ не зрабiлi \n"
"рэзервовую копiю дадзеных, то спачатку пакiньце праграму ўсталявання,"
"выканайце scandisk i defrag на гэтым разделе, зрабiце рэзервовую копiю\n"
"дадзеных i толькi потым зноў вярнiцеся да праграмы ўсталявання.\n"
"Калi падрыхтавалiся, нацiснiце Ok."

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Tajik keyboard"
msgstr "Тайская клавiятура"

#: ../../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 ""

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Font List"
msgstr "Кропка манцiравання"

#: ../../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 ""

#: ../../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 ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Select file"
msgstr "Абярыце файл"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
msgstr ""

#: ../../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 ""

#: ../../lang.pm:1
#, c-format
msgid "Japan"
msgstr "Японія"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Print option list"
msgstr "Опцыi прынтэру"

#: ../../standalone/localedrake:1
#, c-format
msgid "The change is done, but to be effective you must logout"
msgstr ""

#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Country / Region"
msgstr "Памеры экрану"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Search servers"
msgstr "DNS сервер"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP queue name missing!"
msgstr ""

#: ../../standalone/net_monitor:1
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom пазначаны \"%s\""

#: ../../standalone/drakbackup:1
#, c-format
msgid "CDRW media"
msgstr ""

#: ../../services.pm:1
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Захаваць i аднавiць сiстэмны энтрапiйны пул для высокай якасцi\n"
"генерацыі выпадковых лікаў."

#: ../../share/advertising/07-server.pl:1
#, c-format
msgid "Turn your computer into a reliable server"
msgstr ""

#: ../../security/l10n.pm:1
#, c-format
msgid "Check empty password in /etc/shadow"
msgstr ""

#: ../../network/network.pm:1
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Сервер XFree86: %s\n"

#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr "Файл(ы) вiртуальнай файлавай сiстэмы: %s\n"

#: ../../network/isdn.pm:1
#, c-format
msgid "I don't know"
msgstr "Не вядома"

#: ../../services.pm:1
#, c-format
msgid "Start when requested"
msgstr ""

#: ../../printer/main.pm:1
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""

#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
"\n"
"With that feature, you will be able to replay the installation you've "
"performed on this computer, being interactively prompted for some steps, in "
"order to change their values.\n"
"\n"
"For maximum safety, the partitioning and formatting will never be performed "
"automatically, whatever you chose during the install of this computer.\n"
"\n"
"Do you want to continue?"
msgstr ""

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Telugu"
msgstr "Бельгiйскi"

#: ../../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 ""

#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Post Uninstall"
msgstr "Заканчэнне ўсталявання"

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connecting to Internet "
msgstr "Далучэнне да Iнтэрнэту"

#: ../../standalone/scannerdrake:1
#, c-format
msgid " ("
msgstr ""

#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Cpuid level"
msgstr "Настройкi ўзроўня бяспекi"

#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Novell server \"%s\", printer \"%s\""
msgstr "Сеткавы прынтэр (TCP/Socket)"

#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Mongolian (cyrillic)"
msgstr "Азербайджанскі (кірыліца)"

#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Add a module"
msgstr "Дадаць карыстальнiка"

#: ../../standalone/drakconnect:1
#, c-format
msgid "Profile to delete:"
msgstr ""

#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Local measure"
msgstr "Лакальны прынтэр"

#: ../../network/network.pm:1
#, c-format
msgid "Warning : IP address %s is usually reserved !"
msgstr ""

#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "busmouse"
msgstr "Няма мышы"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
msgstr "Iмя для ўваходу (iмя карыстальнiку)"

#: ../../standalone/harddrake2:1
#, c-format
msgid "Fdiv bug"
msgstr ""

#: ../../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 ""

#: ../../security/l10n.pm:1
#, c-format
msgid "Accept broadcasted icmp echo"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Uruguay"
msgstr "Уругвай"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Benin"
msgstr "Бельгiйскi"

#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "SMB/Windows server \"%s\", share \"%s\""
msgstr "SMB/Windows 95/98/NT"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Path selection"
msgstr "Асабiсты выбар пакетаў"

#: ../../standalone/scannerdrake:1
#, c-format
msgid "Name/IP address of host:"
msgstr ""

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor: %s\n"
msgstr "Манiтор: %s\n"

#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Custom & system settings"
msgstr "Выкарыстоўваць iснуючы раздзел"

#: ../../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 ""

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer host name or IP missing!"
msgstr "Iмя прынтэру"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check all users that you want to include in your backup."
msgstr "Выбар пакетаў для ўсталявання"

#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"The %s must be configured by printerdrake.\n"
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Bangladesh"
msgstr "Бангладэш"

#: ../../standalone/drakxtv:1
#, c-format
msgid "Japan (cable)"
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "Initial tests"
msgstr ""

#: ../../network/isdn.pm:1
#, c-format
msgid "Continue"
msgstr "Працягнуць"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Custom Restore"
msgstr "Па выбару"

#: ../../standalone/drakbackup:1
#, c-format
msgid "Saturday"
msgstr "Субота"

#: ../../help.pm:1
#, c-format
msgid ""
"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
"If you notice the sound card displayed is not the one that is actually\n"
"present on your system, you can click on the button and choose another\n"
"driver."
msgstr ""

#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Set the root umask."
msgstr "Пароль для root"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Script-based"
msgstr "на аснове скрыпту"

#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
msgid "Error reading file %s"
msgstr "Памылка чытання файлу %s"

#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "PLL setting:"
msgstr "фарматаванне"

#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, fuzzy, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Вы павiнны мець раздзел swap"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid " on "
msgstr ""

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr ""

#: ../../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 ""

#: ../../any.pm:1
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Iншая АС (SunOS,...)"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Install/Upgrade"
msgstr "Усталёўка"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "%d packages"
msgstr "%d пакетаў"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Costa Rica"
msgstr "Коста-Рыка"

#: ../../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 ""

#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Domain Authentication Required"
msgstr "Аўтэнтыфiкацыя"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"\n"
"\n"
" Thanks:\n"
"\t- LTSP Project http://www.ltsp.org\n"
"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
msgstr ""

#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Use libsafe for servers"
msgstr "Абярыце дадатковыя настройкi для сервера"

#: ../../keyboard.pm:1
#, c-format
msgid "Icelandic"
msgstr "Iсландскi"

#: ../../standalone.pm:1
#, c-format
msgid ""
"\n"
"Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""

#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "Манцiраванне дыску %s\n"

#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Lilo/grub mode"
msgstr "Рэжым злучэння"

#: ../../lang.pm:1
#, c-format
msgid "Martinique"
msgstr "Марцінік"

#: ../../standalone/drakbackup:1
#, c-format
msgid "HardDrive / NFS"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Old user list:\n"
msgstr ""

#: ../../standalone/drakbackup:1
#, c-format
msgid "Search Backups"
msgstr ""

#: ../../modules/parameters.pm:1
#, fuzzy, c-format
msgid "a number"
msgstr "Нумар тэлефону"

#: ../../keyboard.pm:1
#, c-format
msgid "Swedish"
msgstr "Швецкi"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../modules/interactive.pm:1
#, c-format
msgid "Which %s driver should I try?"
msgstr "Якi драйвер %s паспрабаваць?"

#: ../../standalone/logdrake:1
#, c-format
msgid ""
"You will receive an alert if one of the selected services is no longer "
"running"
msgstr ""

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Weekday"
msgstr "Серада"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
msgstr "Тыпы файлавых сiстэмаў:"

#: ../../lang.pm:1
#, c-format
msgid "Northern Mariana Islands"
msgstr "Выспы Паўночнае Мар'яны"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on HP JetDirect"
msgstr ""

#: ../../mouse.pm:1
#, c-format
msgid "none"
msgstr "няма"

#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""

#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Floppy"
msgstr "Захаванне на дыскету"

#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"        - Maintain /etc/exports:\n"
"        \t\tClusternfs allows export of the root filesystem to diskless "
"clients. drakTermServ\n"
"        \t\tsets up the correct entry to allow anonymous access to the root "
"filesystem from\n"
"        \t\tdiskless clients.\n"
"\n"
"        \t\tA typical exports entry for clusternfs is:\n"
"        \t\t\n"
"        \t\t/                  (ro,all_squash)\n"
"        \t\t/home              SUBNET/MASK(rw,root_squash)\n"
"\t\t\t\n"
"\t\t\tWith SUBNET/MASK being defined for your network."
msgstr ""

#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
msgstr ""

#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Галоўныя опцыi пачатковага загрузчыку"

#: ../../security/l10n.pm:1
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr ""

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move"
msgstr "Перанос"

#: ../../any.pm:1 ../../help.pm:1
#, fuzzy, c-format
msgid "Bootloader to use"
msgstr "Галоўныя опцыi пачатковага загрузчыку"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server host"
msgstr "Iмя серверу SMB"

#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Name Servers:"
msgstr "NIS сервер:"

#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Minute"
msgstr "Хвіліны"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"